diff --git a/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.cs b/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.cs index e9a74f866de0..fd21df1bec5b 100644 --- a/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.cs +++ b/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.cs @@ -140,6 +140,13 @@ public void RaGetByScope() TestRunner.RunTestScript("Test-RaGetByScope"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void RaGetWithAtScope() + { + TestRunner.RunTestScript("Test-RaGetWithAtScope"); + } + [Fact] [Trait(Category.AcceptanceType, Category.LiveOnly)] public void RaGetOnlyByRoleDefinitionName() diff --git a/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 index 0349b4f0d02a..0f96dbb0ee56 100644 --- a/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 @@ -551,6 +551,31 @@ function Test-RaGetByScope VerifyRoleAssignmentDeleted $newAssignment1 } +<# +.SYNOPSIS +Tests verifies get of RoleAssignment With AtScope +#> +function Test-RaGetWithAtScope +{ + # Setup + $subscription = $(Get-AzContext).Subscription + $resourceGroups = Get-AzResourceGroup | Select-Object -Last 9 -Wait + $scope1 = '/subscriptions/'+ $subscription[0].Id + $scope2 = '/subscriptions/'+ $subscription[0].Id +'/resourceGroups/' + $resourceGroups[0].ResourceGroupName + + $ras_scope_list = @() + $ras_atscope_list = @() + + $ras_scope = Get-AzRoleAssignment -Scope $scope1 + $ras_scope | Select-Object -ExpandProperty Scope -Unique | ForEach-Object { $ras_scope_list += $_ } + + $ras_atscope = Get-AzRoleAssignment -Scope $scope1 -AtScope + $ras_atscope | Select-Object -ExpandProperty Scope -Unique | ForEach-Object { $ras_atscope_list += $_ } + + Assert-True { $ras_scope_list -contains $scope2 } + Assert-False { $ras_Atscope_list -contains $scope2 } +} + <# .SYNOPSIS Tests verifies get of RoleAssignment using only the role definition name diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaGetWithAtScope.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaGetWithAtScope.json new file mode 100644 index 000000000000..cec52d3aec5c --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaGetWithAtScope.json @@ -0,0 +1,484 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjEtMDQtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00a2dbec-d2b2-470d-9356-15bcae83d72a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.3624.51421", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "a4b47bd2-e1c8-4387-bf03-da35e2008819" + ], + "x-ms-correlation-request-id": [ + "a4b47bd2-e1c8-4387-bf03-da35e2008819" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250213T114727Z:a4b47bd2-e1c8-4387-bf03-da35e2008819" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2820E0CCA1247F68A400284ADAD0E00 Ref B: MAA201060515009 Ref C: 2025-02-13T11:47:27Z" + ], + "Date": [ + "Thu, 13 Feb 2025 11:47:27 GMT" + ], + "Content-Length": [ + "3396" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/SIGTestGroupoDoNotDelete\",\r\n \"name\": \"SIGTestGroupoDoNotDelete\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/AzSecPackAutoConfigRG\",\r\n \"name\": \"AzSecPackAutoConfigRG\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azure-cli-tools-security\",\r\n \"name\": \"azure-cli-tools-security\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai\",\r\n \"name\": \"openai\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot\",\r\n \"name\": \"wyunchi-copilot\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot-application-insights\",\r\n \"name\": \"wyunchi-copilot-application-insights\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ljin-test-group\",\r\n \"name\": \"ljin-test-group\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/myResourceGroup\",\r\n \"name\": \"myResourceGroup\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/AzAccountsTest\",\r\n \"name\": \"AzAccountsTest\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest\",\r\n \"name\": \"lnxtest\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ResourceMoverRG-eastus-westus2-eus2\",\r\n \"name\": \"ResourceMoverRG-eastus-westus2-eus2\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/mrppowershelleastus2euap\",\r\n \"name\": \"mrppowershelleastus2euap\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments?api-version=2020-08-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzllMjIzZGJlLTMzOTktNGUxOS04OGViLTA5NzVmMDJhYzg3Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzP2FwaS12ZXJzaW9uPTIwMjAtMDgtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d0a2e7e-d047-4589-894d-0ace083fcb4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.3624.51421", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/7.8.1" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44ee0609-80b0-4ec3-9afa-5b24bb376e28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "4205191c-3525-47a2-bb2d-9a1cdd60fc44" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250213T114728Z:4205191c-3525-47a2-bb2d-9a1cdd60fc44" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CFB8D00A2A59426E89E629F1D6E7B54F Ref B: MAA201060514029 Ref C: 2025-02-13T11:47:28Z" + ], + "Date": [ + "Thu, 13 Feb 2025 11:47:28 GMT" + ], + "Content-Length": [ + "178836" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"f76e2cfd-0948-4cd7-bc92-937a6fd5f280\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-09-30T15:35:35.1709516Z\",\r\n \"updatedOn\": \"2022-09-30T15:35:35.1709516Z\",\r\n \"createdBy\": \"bd7d80cf-6249-4555-acbd-278793ea12b2\",\r\n \"updatedBy\": \"bd7d80cf-6249-4555-acbd-278793ea12b2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/c154411a-7461-4e59-a72b-981068cf00fb\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c154411a-7461-4e59-a72b-981068cf00fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"65c24161-dc3c-4cc4-bf70-b9b13e8d6ec6\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-05-09T16:01:03.0818958Z\",\r\n \"updatedOn\": \"2022-05-09T16:01:03.0818958Z\",\r\n \"createdBy\": \"bd7d80cf-6249-4555-acbd-278793ea12b2\",\r\n \"updatedBy\": \"bd7d80cf-6249-4555-acbd-278793ea12b2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/0bebc094-9bc3-4b56-af84-587372b5ed75\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0bebc094-9bc3-4b56-af84-587372b5ed75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\r\n \"principalId\": \"8d9606ff-585b-421a-afee-188d2497c7c7\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-03-08T15:24:55.8564636Z\",\r\n \"updatedOn\": \"2023-03-08T15:24:55.8564636Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/2883e010-3052-41d2-858d-71421574f3e7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2883e010-3052-41d2-858d-71421574f3e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\r\n \"principalId\": \"e393dddc-7d32-4c92-8619-23578f8de85d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-03-08T15:25:02.6761267Z\",\r\n \"updatedOn\": \"2023-03-08T15:25:02.6761267Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/cc914de1-874d-4be8-a280-cf5a50e83d69\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"cc914de1-874d-4be8-a280-cf5a50e83d69\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"469e05b3-323f-4d8b-ad7c-325f402cc8db\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-03-19T12:43:50.5688437Z\",\r\n \"updatedOn\": \"2023-03-19T12:43:50.5688437Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/2460b2f9-7616-48af-a14f-5ec13aaeb518\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2460b2f9-7616-48af-a14f-5ec13aaeb518\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"ca51e4e8-ad32-4516-a35b-7dccde700f0b\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-05-04T03:46:46.4115279Z\",\r\n \"updatedOn\": \"2023-05-04T03:46:46.4115279Z\",\r\n \"createdBy\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"updatedBy\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/f84f8587-ad19-49bc-a962-4c5f508a1123\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f84f8587-ad19-49bc-a962-4c5f508a1123\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"ca51e4e8-ad32-4516-a35b-7dccde700f0b\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-05-04T03:46:46.4447668Z\",\r\n \"updatedOn\": \"2023-05-04T03:46:46.4447668Z\",\r\n \"createdBy\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"updatedBy\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/e02604a9-2520-4c9a-a4f1-22b7f0ce742f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e02604a9-2520-4c9a-a4f1-22b7f0ce742f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d\",\r\n \"principalId\": \"b4ff8c37-5a63-4287-8748-1a3778d65c91\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.ContainerRegistry/registries/wyunchicopilotregistry\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-06-29T02:14:20.0009918Z\",\r\n \"updatedOn\": \"2023-06-29T02:14:20.0009918Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.ContainerRegistry/registries/wyunchicopilotregistry/providers/Microsoft.Authorization/roleAssignments/d588ee70-8d7c-4fcc-ba00-2926d37e033c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d588ee70-8d7c-4fcc-ba00-2926d37e033c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"principalId\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-08-04T09:59:57.0593709Z\",\r\n \"updatedOn\": \"2023-08-04T09:59:57.0593709Z\",\r\n \"createdBy\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"updatedBy\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"Add logic app contibutor for SI testing\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/8fecc97b-a20f-4751-b334-52dde5e614ba\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8fecc97b-a20f-4751-b334-52dde5e614ba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6\",\r\n \"principalId\": \"6c8fb59d-dd39-408b-beee-847047eff143\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:19.7392814Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:19.7392814Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/a140f056-ff22-49fe-a301-3a0ba577558a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a140f056-ff22-49fe-a301-3a0ba577558a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"principalId\": \"2266bac4-0256-4765-8abe-772627da6e27\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.5777628Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.5777628Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/bc473adc-1cf5-4ffd-ce27-045bf6ec55e8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bc473adc-1cf5-4ffd-ce27-045bf6ec55e8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"principalId\": \"f357b4f8-09af-4f35-a7d6-706d3e7dc5ca\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.6706479Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.6706479Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/ca52252f-387d-4be9-3dcf-dd4270d0940b\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ca52252f-387d-4be9-3dcf-dd4270d0940b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"principalId\": \"f357b4f8-09af-4f35-a7d6-706d3e7dc5ca\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.6968051Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.6968051Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/9dae9ca3-0628-4064-a8f2-44d460607e5d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9dae9ca3-0628-4064-a8f2-44d460607e5d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"principalId\": \"3e1e4fbc-9e47-4dc0-a2df-b5649c777328\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.7416508Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.7416508Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/333dabdb-cd07-44e3-18ef-47d0fac41398\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"333dabdb-cd07-44e3-18ef-47d0fac41398\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"principalId\": \"0a6d9c2c-fe57-44bd-9d52-6eb585b25e93\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.745739Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.745739Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/5a83293f-5b53-4829-cf58-bd8a02da23c3\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5a83293f-5b53-4829-cf58-bd8a02da23c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\",\r\n \"principalId\": \"2266bac4-0256-4765-8abe-772627da6e27\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.6247613Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.6247613Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/bfa3d9f4-1bfd-4718-d1e4-cdc4106bff01\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bfa3d9f4-1bfd-4718-d1e4-cdc4106bff01\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"2266bac4-0256-4765-8abe-772627da6e27\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.7542206Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.7542206Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/065720ea-1468-4664-b149-086cd30558b4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"065720ea-1468-4664-b149-086cd30558b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"principalId\": \"3e1e4fbc-9e47-4dc0-a2df-b5649c777328\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.7554524Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.7554524Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/394d19ce-de19-4d28-b677-e6bd0951df82\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"394d19ce-de19-4d28-b677-e6bd0951df82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\",\r\n \"principalId\": \"0a6d9c2c-fe57-44bd-9d52-6eb585b25e93\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.7657395Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.7657395Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/2aef1ad7-5a5c-426c-963a-e35cceb35869\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2aef1ad7-5a5c-426c-963a-e35cceb35869\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"3e1e4fbc-9e47-4dc0-a2df-b5649c777328\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.772667Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.772667Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/a98fbf61-e02e-4e21-d650-1c7aa72492be\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a98fbf61-e02e-4e21-d650-1c7aa72492be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"f357b4f8-09af-4f35-a7d6-706d3e7dc5ca\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.8110943Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.8110943Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/d8625688-2d27-4b06-8c27-6fda1502a4d6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d8625688-2d27-4b06-8c27-6fda1502a4d6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\",\r\n \"principalId\": \"f357b4f8-09af-4f35-a7d6-706d3e7dc5ca\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.9620487Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.9620487Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/dbbbbad7-b2d1-4583-1914-e781573190bd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"dbbbbad7-b2d1-4583-1914-e781573190bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"principalId\": \"2266bac4-0256-4765-8abe-772627da6e27\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.6261084Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.6261084Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/f50a33bf-f783-445d-6fae-eb7d6ce16237\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f50a33bf-f783-445d-6fae-eb7d6ce16237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\",\r\n \"principalId\": \"3e1e4fbc-9e47-4dc0-a2df-b5649c777328\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:49.0100538Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:49.0100538Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/026cd031-2250-4d58-3f1b-bfb767944586\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"026cd031-2250-4d58-3f1b-bfb767944586\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"principalId\": \"0a6d9c2c-fe57-44bd-9d52-6eb585b25e93\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:49.0020476Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:49.0020476Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/db8f8da9-c96b-44a4-03aa-37e3c98de873\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"db8f8da9-c96b-44a4-03aa-37e3c98de873\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"0a6d9c2c-fe57-44bd-9d52-6eb585b25e93\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:49.1130541Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:49.1130541Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/477a1ecc-e21f-4067-15c1-4718bf3935ab\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"477a1ecc-e21f-4067-15c1-4718bf3935ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae\",\r\n \"principalId\": \"96def109-c4fe-4d53-8b93-cc257c9716d1\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-11-03T00:21:21.0454846Z\",\r\n \"updatedOn\": \"2021-11-03T00:21:21.0454846Z\",\r\n \"createdBy\": \"\",\r\n \"updatedBy\": \"\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/3510f409-0f7d-4eae-99c8-d11e376780f0\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3510f409-0f7d-4eae-99c8-d11e376780f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-01-31T15:35:57.6967238Z\",\r\n \"updatedOn\": \"2024-01-31T15:35:57.6967238Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"To establish a network peering when you don't intend to separate the duty of managing the network belonging to each tenant, add the user from tenant A as a guest in the opposite tenant. Then, assign them the Network Contributor role to initiate and connect the network peering from each subscription. With these permissions, the user is able to establish the network peering from each subscription.\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/8c7d436a-1b3f-4ab7-a3c2-877ef299054a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8c7d436a-1b3f-4ab7-a3c2-877ef299054a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"principalId\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-02-20T03:15:47.5260439Z\",\r\n \"updatedOn\": \"2024-02-20T03:15:47.5260439Z\",\r\n \"createdBy\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"updatedBy\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/0ebd3c22-aae7-447a-8664-8a9de0f6e96c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0ebd3c22-aae7-447a-8664-8a9de0f6e96c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"0f3dde26-1e34-4a3a-949c-7ae6d03643c0\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot-application-insights\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-02-26T05:50:48.6055062Z\",\r\n \"updatedOn\": \"2024-02-26T05:50:48.6055062Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot-application-insights/providers/Microsoft.Authorization/roleAssignments/cf330da1-34b5-4543-a417-5851242e30a5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"cf330da1-34b5-4543-a417-5851242e30a5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"principalId\": \"4a3ec5fb-ba6f-4a7f-98e2-2918cd728500\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-03-07T06:39:02.5033199Z\",\r\n \"updatedOn\": \"2024-03-07T06:39:02.5033199Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/3601d210-e939-4c42-b634-28bd90d7ba42\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3601d210-e939-4c42-b634-28bd90d7ba42\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"4a3ec5fb-ba6f-4a7f-98e2-2918cd728500\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-03-07T06:39:08.524249Z\",\r\n \"updatedOn\": \"2024-03-07T06:39:08.524249Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/f6e6894e-3f94-4fec-b740-3c18b1dfd278\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f6e6894e-3f94-4fec-b740-3c18b1dfd278\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"principalId\": \"39a51fdc-6193-45d2-a938-ddcb56a3592d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-03-07T16:15:21.4428586Z\",\r\n \"updatedOn\": \"2024-03-07T16:15:21.4428586Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/c2822010-e285-45a9-a4d9-2ca07b969a43\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c2822010-e285-45a9-a4d9-2ca07b969a43\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"39a51fdc-6193-45d2-a938-ddcb56a3592d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-03-07T16:15:27.8534668Z\",\r\n \"updatedOn\": \"2024-03-07T16:15:27.8534668Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/a5385af2-8910-4c53-bc14-636bce49f608\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a5385af2-8910-4c53-bc14-636bce49f608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"principalId\": \"60becb53-9d5b-4f5c-874c-135b162ce7d4\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-03-12T07:07:07.288771Z\",\r\n \"updatedOn\": \"2024-03-12T07:07:07.288771Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config/providers/Microsoft.Authorization/roleAssignments/548c6ad2-f020-4182-8553-38a2c6540356\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"548c6ad2-f020-4182-8553-38a2c6540356\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/150f5e0c-0603-4f03-8c7f-cf70034c4e90\",\r\n \"principalId\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-03-19T07:11:39.3887493Z\",\r\n \"updatedOn\": \"2024-03-19T07:11:39.3887493Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Authorization/roleAssignments/f76502d0-83a0-4144-9d49-43405b6f1439\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f76502d0-83a0-4144-9d49-43405b6f1439\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/150f5e0c-0603-4f03-8c7f-cf70034c4e90\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-03-19T07:35:41.7031932Z\",\r\n \"updatedOn\": \"2024-03-19T07:35:41.7031932Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Authorization/roleAssignments/4d5b285a-5166-4038-a9d6-58f8f8d01d09\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4d5b285a-5166-4038-a9d6-58f8f8d01d09\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3afb7f49-54cb-416e-8c09-6dc049efa503\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-03-26T09:23:15.4801292Z\",\r\n \"updatedOn\": \"2024-03-26T09:23:15.4801292Z\",\r\n \"createdBy\": \"e073490c-1bbd-4bac-9bd1-5584fec82ff0\",\r\n \"updatedBy\": \"e073490c-1bbd-4bac-9bd1-5584fec82ff0\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.Authorization/roleAssignments/f69c4f69-a39a-4671-8eb1-fc7994ae4043\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f69c4f69-a39a-4671-8eb1-fc7994ae4043\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442\",\r\n \"principalId\": \"60becb53-9d5b-4f5c-874c-135b162ce7d4\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-04-10T16:27:08.7944424Z\",\r\n \"updatedOn\": \"2024-04-10T16:27:08.7944424Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/782b275c-bc4f-40d8-8674-de3380960163\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"782b275c-bc4f-40d8-8674-de3380960163\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"principalId\": \"c4b8c646-f71c-488a-b5ec-0527e8724f67\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-04-15T08:08:26.4634435Z\",\r\n \"updatedOn\": \"2024-04-15T08:08:26.4634435Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config/providers/Microsoft.Authorization/roleAssignments/f9bdaefc-9735-4b32-ab34-d8c44aa519e5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f9bdaefc-9735-4b32-ab34-d8c44aa519e5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"principalId\": \"c0ef1cae-e29d-4258-9d27-474d7766e5ea\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-04-15T09:35:08.6882251Z\",\r\n \"updatedOn\": \"2024-04-15T09:35:08.6882251Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config/providers/Microsoft.Authorization/roleAssignments/c5890e33-55f7-40eb-bb99-79579da3fba6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c5890e33-55f7-40eb-bb99-79579da3fba6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"principalId\": \"b4ff8c37-5a63-4287-8748-1a3778d65c91\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-04-29T01:51:33.3777913Z\",\r\n \"updatedOn\": \"2024-04-29T01:51:33.3777913Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config/providers/Microsoft.Authorization/roleAssignments/ff5aed1d-2146-4114-b9db-77e554771d41\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ff5aed1d-2146-4114-b9db-77e554771d41\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ac63b705-f282-497d-ac71-919bf39d939d\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-08T05:38:56.0091572Z\",\r\n \"updatedOn\": \"2024-05-08T05:38:56.0091572Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/431bb8ce-9f00-4efe-ba0b-7cb467d29b08\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"431bb8ce-9f00-4efe-ba0b-7cb467d29b08\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-08T05:50:55.986335Z\",\r\n \"updatedOn\": \"2024-05-08T05:50:55.986335Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/376cda8c-5af0-48a3-ba72-089ab43f55d9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"376cda8c-5af0-48a3-ba72-089ab43f55d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-11T09:05:01.3912302Z\",\r\n \"updatedOn\": \"2024-05-11T09:05:01.3912302Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config/providers/Microsoft.Authorization/roleAssignments/fe110328-a2c3-4947-9f3d-7341cf3c8128\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fe110328-a2c3-4947-9f3d-7341cf3c8128\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd\",\r\n \"principalId\": \"14630511-63a1-4d32-a204-a8002c139ad2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-13T22:28:07.6293701Z\",\r\n \"updatedOn\": \"2024-05-13T22:28:07.6293701Z\",\r\n \"createdBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"updatedBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/3b412961-e7f0-47a0-9222-f1f76068d907\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3b412961-e7f0-47a0-9222-f1f76068d907\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8480c0f0-4509-4229-9339-7c10018cb8c4\",\r\n \"principalId\": \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-13T22:28:24.1789956Z\",\r\n \"updatedOn\": \"2024-05-13T22:28:24.1789956Z\",\r\n \"createdBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"updatedBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/f60963f8-a89d-45b8-9baa-a2f06b9dc243\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f60963f8-a89d-45b8-9baa-a2f06b9dc243\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"f819bf1c-9cf9-42c3-bd59-82c507565fa1\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-13T22:28:15.5687413Z\",\r\n \"updatedOn\": \"2024-05-13T22:28:15.5687413Z\",\r\n \"createdBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"updatedBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/e7612708-d1b6-4dac-801e-9b48e3cc64b4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e7612708-d1b6-4dac-801e-9b48e3cc64b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6\",\r\n \"principalId\": \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-13T22:28:27.5301646Z\",\r\n \"updatedOn\": \"2024-05-13T22:28:27.5301646Z\",\r\n \"createdBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"updatedBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/6d21f24f-3c2c-4e4d-a81c-dc73998c2690\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6d21f24f-3c2c-4e4d-a81c-dc73998c2690\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\r\n \"principalId\": \"a4fcf44f-432a-4e14-8b0c-bcc57c65222f\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-13T22:28:35.4297343Z\",\r\n \"updatedOn\": \"2024-05-13T22:28:35.4297343Z\",\r\n \"createdBy\": \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"updatedBy\": \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/2be8bdef-dba5-472d-a6c3-8c28ffbf1000\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2be8bdef-dba5-472d-a6c3-8c28ffbf1000\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-29T06:10:50.2678168Z\",\r\n \"updatedOn\": \"2024-05-29T06:10:50.2678168Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/deb45756-f77f-46e4-8a3d-b80346a24657\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"deb45756-f77f-46e4-8a3d-b80346a24657\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-29T06:12:38.1824328Z\",\r\n \"updatedOn\": \"2024-05-29T06:12:38.1824328Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/ebf5bd0f-82c6-40db-968e-b9b10d46ce47\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ebf5bd0f-82c6-40db-968e-b9b10d46ce47\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-29T06:28:20.9987892Z\",\r\n \"updatedOn\": \"2024-05-29T06:28:20.9987892Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/0d26e75e-14e4-4146-bcb0-f1cb99b0ec51\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0d26e75e-14e4-4146-bcb0-f1cb99b0ec51\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"ca181d1b-4362-4ed5-9f2b-f50120fa0eae\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-04T03:00:08.0985278Z\",\r\n \"updatedOn\": \"2024-06-04T03:00:08.0985278Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/4a18f458-805c-4506-9851-149a17abd782\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4a18f458-805c-4506-9851-149a17abd782\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-04T03:01:26.414692Z\",\r\n \"updatedOn\": \"2024-06-04T03:01:26.414692Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/2f52f241-eb8d-4a74-a850-fed2fb70f1a2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2f52f241-eb8d-4a74-a850-fed2fb70f1a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-04T03:01:26.4565203Z\",\r\n \"updatedOn\": \"2024-06-04T03:01:26.4565203Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/721777e2-7586-43ef-9667-b6434c2722cb\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"721777e2-7586-43ef-9667-b6434c2722cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-04T03:01:27.2326028Z\",\r\n \"updatedOn\": \"2024-06-04T03:01:27.2326028Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/6a6271f7-82e9-4148-9245-91c3a1b675c7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6a6271f7-82e9-4148-9245-91c3a1b675c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ce74a389-b5e8-4f16-89c7-787031ddd903\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-04T03:01:26.424814Z\",\r\n \"updatedOn\": \"2024-06-04T03:01:26.424814Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/a0b1f665-c6ab-4637-9a97-b3e824bb2adf\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a0b1f665-c6ab-4637-9a97-b3e824bb2adf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"18dc26db-fe4f-426e-9f3f-b3e52cc010bf\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-04T03:03:57.1259471Z\",\r\n \"updatedOn\": \"2024-06-04T03:03:57.1259471Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/659cdb32-8e56-487b-a63c-dbb34295c22f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"659cdb32-8e56-487b-a63c-dbb34295c22f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"1357843f-2c6b-4c6e-aa31-4748cbd2dd77\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-06T06:56:57.3259085Z\",\r\n \"updatedOn\": \"2024-06-06T06:56:57.3259085Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/d447ecef-d16f-4b6f-ab18-16f40b0752df\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d447ecef-d16f-4b6f-ab18-16f40b0752df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe\",\r\n \"principalId\": \"aef545e3-101e-484b-afe4-3da4c1a62f67\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/wyunchi-copilot/providers/Microsoft.Storage/storageAccounts/azpsdocs\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-07T07:06:28.4077066Z\",\r\n \"updatedOn\": \"2024-06-07T07:06:28.4077066Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/wyunchi-copilot/providers/Microsoft.Storage/storageAccounts/azpsdocs/providers/Microsoft.Authorization/roleAssignments/1186d32e-5b1a-4fb0-8d63-7d06b60ce1da\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1186d32e-5b1a-4fb0-8d63-7d06b60ce1da\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/wyunchi-copilot/providers/Microsoft.Storage/storageAccounts/azpsdocs\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-07T07:06:28.2076979Z\",\r\n \"updatedOn\": \"2024-06-07T07:06:28.2076979Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/wyunchi-copilot/providers/Microsoft.Storage/storageAccounts/azpsdocs/providers/Microsoft.Authorization/roleAssignments/2abb7934-bc8b-4485-86b1-35866f933f03\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2abb7934-bc8b-4485-86b1-35866f933f03\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Storage/storageAccounts/azpsdocs\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-14T03:01:57.8606428Z\",\r\n \"updatedOn\": \"2024-06-14T03:01:57.8606428Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Storage/storageAccounts/azpsdocs/providers/Microsoft.Authorization/roleAssignments/4a34b83c-cf86-475b-b3f8-a756e0718a0e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4a34b83c-cf86-475b-b3f8-a756e0718a0e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\",\r\n \"principalId\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Storage/storageAccounts/azpsdocs\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-14T03:01:57.9559133Z\",\r\n \"updatedOn\": \"2024-06-14T03:01:57.9559133Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Storage/storageAccounts/azpsdocs/providers/Microsoft.Authorization/roleAssignments/30b714c9-4736-4f75-839e-8b7cf2db3555\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"30b714c9-4736-4f75-839e-8b7cf2db3555\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"principalId\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-24T14:34:57.5126006Z\",\r\n \"updatedOn\": \"2024-06-24T14:34:57.5126006Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config/providers/Microsoft.Authorization/roleAssignments/c498a480-78b9-4fa9-95a7-a38cbdf903e9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c498a480-78b9-4fa9-95a7-a38cbdf903e9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee\",\r\n \"principalId\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-25T23:07:19.4433853Z\",\r\n \"updatedOn\": \"2024-06-25T23:07:19.4433853Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/0d5ccd79-77c7-42f9-899c-54f2898e490c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0d5ccd79-77c7-42f9-899c-54f2898e490c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee\",\r\n \"principalId\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-25T23:07:19.4904879Z\",\r\n \"updatedOn\": \"2024-06-25T23:07:19.4904879Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/f002e3bc-2071-4fac-b5f8-2056b3d8344c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f002e3bc-2071-4fac-b5f8-2056b3d8344c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\",\r\n \"principalId\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-25T23:09:13.1874326Z\",\r\n \"updatedOn\": \"2024-06-25T23:09:13.1874326Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/16fd5a6c-4be8-4551-a7d0-b57d1d3499e9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"16fd5a6c-4be8-4551-a7d0-b57d1d3499e9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\",\r\n \"principalId\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-25T23:09:13.2801433Z\",\r\n \"updatedOn\": \"2024-06-25T23:09:13.2801433Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/da03a3a3-2d4c-4487-94fd-9f0d4afb2d0e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"da03a3a3-2d4c-4487-94fd-9f0d4afb2d0e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442\",\r\n \"principalId\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-25T23:09:53.0256126Z\",\r\n \"updatedOn\": \"2024-06-25T23:09:53.0256126Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/778b92f7-a50f-43d6-b049-4fc0b598ee41\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"778b92f7-a50f-43d6-b049-4fc0b598ee41\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442\",\r\n \"principalId\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-25T23:09:53.5756015Z\",\r\n \"updatedOn\": \"2024-06-25T23:09:53.5756015Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/60b57f10-a4b4-4f10-ba1b-393fdb86f62e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"60b57f10-a4b4-4f10-ba1b-393fdb86f62e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3afb7f49-54cb-416e-8c09-6dc049efa503\",\r\n \"principalId\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-25T23:57:16.1314553Z\",\r\n \"updatedOn\": \"2024-06-25T23:57:16.1314553Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.Authorization/roleAssignments/ed70603f-7464-411d-9745-141177c8d926\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ed70603f-7464-411d-9745-141177c8d926\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3afb7f49-54cb-416e-8c09-6dc049efa503\",\r\n \"principalId\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-25T23:57:16.1281164Z\",\r\n \"updatedOn\": \"2024-06-25T23:57:16.1281164Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.Authorization/roleAssignments/5be9df6c-7b77-45a1-98a4-e1c9b0ab642e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5be9df6c-7b77-45a1-98a4-e1c9b0ab642e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"principalId\": \"6a4961a4-ca91-4ee9-977e-73c4c3ddf346\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-27T14:46:05.549324Z\",\r\n \"updatedOn\": \"2024-06-27T14:46:05.549324Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config/providers/Microsoft.Authorization/roleAssignments/28beeb3e-db51-4716-90b8-4b828141c3de\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"28beeb3e-db51-4716-90b8-4b828141c3de\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"principalId\": \"26974eba-5400-469d-b087-f8fc2a789e3d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-30T14:58:40.3386352Z\",\r\n \"updatedOn\": \"2024-06-30T14:58:40.3386352Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config/providers/Microsoft.Authorization/roleAssignments/3b15c80f-1db3-4b65-bba1-288a649129d2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3b15c80f-1db3-4b65-bba1-288a649129d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-03T05:21:59.7234113Z\",\r\n \"updatedOn\": \"2024-07-03T05:21:59.7234113Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/0325e9fe-e6ef-4f83-aa4e-96b80362996a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0325e9fe-e6ef-4f83-aa4e-96b80362996a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-08T09:11:18.7496679Z\",\r\n \"updatedOn\": \"2024-07-08T09:11:18.7496679Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/7e6851c8-097f-4a35-ae74-17cb7d81a3a4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7e6851c8-097f-4a35-ae74-17cb7d81a3a4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a7264617-510b-434b-a828-9731dc254ea7\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-09T03:17:09.0264171Z\",\r\n \"updatedOn\": \"2024-07-09T03:17:09.0264171Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/62eb50a4-866c-4e36-8f31-dac74eabdcd9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"62eb50a4-866c-4e36-8f31-dac74eabdcd9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168\",\r\n \"principalId\": \"772c6450-0edb-40e1-adc1-352fa7e5d1f3\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAllValues:GuidNotEquals {8e3af657-a8ff-443c-a75c-2fe8c4bcb635, 18d7d88d-d35e-4fb5-a5c3-7773c20a72d9, f58310d9-a9f6-439a-9e8d-f62e7b41a168})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAllValues:GuidNotEquals {8e3af657-a8ff-443c-a75c-2fe8c4bcb635, 18d7d88d-d35e-4fb5-a5c3-7773c20a72d9, f58310d9-a9f6-439a-9e8d-f62e7b41a168}))\",\r\n \"conditionVersion\": \"2.0\",\r\n \"createdOn\": \"2024-07-10T05:35:35.7476227Z\",\r\n \"updatedOn\": \"2024-07-10T05:35:35.7476227Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/7a1a5dc7-e93b-4d1a-bfa0-24a2773e79b3\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7a1a5dc7-e93b-4d1a-bfa0-24a2773e79b3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"principalId\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-11T09:37:27.6832172Z\",\r\n \"updatedOn\": \"2024-07-11T09:37:27.6832172Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config/providers/Microsoft.Authorization/roleAssignments/21b27e06-f7da-4fb8-8295-685657a91a1b\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"21b27e06-f7da-4fb8-8295-685657a91a1b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-24T02:19:21.6218026Z\",\r\n \"updatedOn\": \"2024-07-24T02:19:21.6218026Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.AppConfiguration/configurationStores/wyunchi-test-app-config/providers/Microsoft.Authorization/roleAssignments/07650499-9bcc-4c03-ac74-2afb7d2eb69c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"07650499-9bcc-4c03-ac74-2afb7d2eb69c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-24T03:45:16.0317559Z\",\r\n \"updatedOn\": \"2024-07-24T03:45:16.0317559Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/0a057543-19c5-4fd9-9a41-5e1c6e9f1e49\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0a057543-19c5-4fd9-9a41-5e1c6e9f1e49\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-24T05:33:35.4976361Z\",\r\n \"updatedOn\": \"2024-07-24T05:33:35.4976361Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/dd1556dc-3929-4f01-b0d5-63cee58fbd22\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"dd1556dc-3929-4f01-b0d5-63cee58fbd22\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\",\r\n \"principalId\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-24T07:20:20.6680564Z\",\r\n \"updatedOn\": \"2024-07-24T07:20:20.6680564Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.Authorization/roleAssignments/6d1aa324-cbc7-4e3e-9a69-f31a91d61324\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6d1aa324-cbc7-4e3e-9a69-f31a91d61324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\",\r\n \"principalId\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-24T07:20:20.7546081Z\",\r\n \"updatedOn\": \"2024-07-24T07:20:20.7546081Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.Authorization/roleAssignments/8112320c-f927-41a2-a1e0-747896a19bb0\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8112320c-f927-41a2-a1e0-747896a19bb0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8ebe5a00-799e-43f5-93ac-243d3dce84a7\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Search/searchServices/wyunchi-copilot-search\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-08-11T02:32:26.6988125Z\",\r\n \"updatedOn\": \"2024-08-11T02:32:26.6988125Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Search/searchServices/wyunchi-copilot-search/providers/Microsoft.Authorization/roleAssignments/3158b7e2-7a4c-4db0-aa6f-462bef9179a0\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3158b7e2-7a4c-4db0-aa6f-462bef9179a0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442\",\r\n \"principalId\": \"b4ff8c37-5a63-4287-8748-1a3778d65c91\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-08-14T06:40:13.8517024Z\",\r\n \"updatedOn\": \"2024-08-14T06:40:13.8517024Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/openai/providers/Microsoft.CognitiveServices/accounts/azure-powershell-openai/providers/Microsoft.Authorization/roleAssignments/167a839d-8499-47dc-ab7a-44bbc29403be\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"167a839d-8499-47dc-ab7a-44bbc29403be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\",\r\n \"principalId\": \"aef545e3-101e-484b-afe4-3da4c1a62f67\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-08-17T05:56:12.249981Z\",\r\n \"updatedOn\": \"2024-08-17T05:56:12.249981Z\",\r\n \"createdBy\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"updatedBy\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/19cf1062-d811-4235-9d75-2120e1176fd3\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"19cf1062-d811-4235-9d75-2120e1176fd3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"aef545e3-101e-484b-afe4-3da4c1a62f67\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-08-17T08:18:54.2142365Z\",\r\n \"updatedOn\": \"2024-08-17T08:18:54.2142365Z\",\r\n \"createdBy\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"updatedBy\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Authorization/roleAssignments/ec37485e-172a-43a7-8345-d03cef1da001\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ec37485e-172a-43a7-8345-d03cef1da001\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8ebe5a00-799e-43f5-93ac-243d3dce84a7\",\r\n \"principalId\": \"aef545e3-101e-484b-afe4-3da4c1a62f67\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-08-17T08:24:10.3982803Z\",\r\n \"updatedOn\": \"2024-08-17T08:24:10.3982803Z\",\r\n \"createdBy\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"updatedBy\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Authorization/roleAssignments/5dfd121c-2b78-4aae-8cdb-d7a5786a2809\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5dfd121c-2b78-4aae-8cdb-d7a5786a2809\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"54e5295c-bab1-42eb-9811-569df9e55e73\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-17T06:09:32.2873652Z\",\r\n \"updatedOn\": \"2024-09-17T06:09:32.2873652Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/109b77d0-6586-48cf-9e82-c748be6795a4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"109b77d0-6586-48cf-9e82-c748be6795a4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"91852ff0-b73e-4d9f-9bf0-819fc3b1a387\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-10-01T14:04:40.8732332Z\",\r\n \"updatedOn\": \"2024-10-01T14:04:40.8732332Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/c28f360f-2e7e-445d-a9dc-36675bb40255\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c28f360f-2e7e-445d-a9dc-36675bb40255\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"3aed027b-3fee-4c92-a814-32d411cbd3a0\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2018-05-31T15:40:47.580281Z\",\r\n \"updatedOn\": \"2018-05-31T15:40:47.580281Z\",\r\n \"createdBy\": \"2b5ef1a8-96c2-4572-87e1-5eac032ea9f9\",\r\n \"updatedBy\": \"2b5ef1a8-96c2-4572-87e1-5eac032ea9f9\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/bee61f93-2535-45fc-8dc3-7b7b2597e845\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bee61f93-2535-45fc-8dc3-7b7b2597e845\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"3aed027b-3fee-4c92-a814-32d411cbd3a0\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2018-05-31T15:40:20.361612Z\",\r\n \"updatedOn\": \"2018-05-31T15:40:20.361612Z\",\r\n \"createdBy\": \"2b5ef1a8-96c2-4572-87e1-5eac032ea9f9\",\r\n \"updatedBy\": \"2b5ef1a8-96c2-4572-87e1-5eac032ea9f9\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/31c15bad-c0ba-4734-bd38-8dc776b947a6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"31c15bad-c0ba-4734-bd38-8dc776b947a6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"df454a10-e7d6-4a6e-88f8-f55a34522dbf\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-05-14T05:56:17.5966982Z\",\r\n \"updatedOn\": \"2020-05-14T05:56:17.5966982Z\",\r\n \"createdBy\": \"bd7d80cf-6249-4555-acbd-278793ea12b2\",\r\n \"updatedBy\": \"bd7d80cf-6249-4555-acbd-278793ea12b2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/9d3b7c08-f6ca-421a-b5b6-5b18d7dfe553\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9d3b7c08-f6ca-421a-b5b6-5b18d7dfe553\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"principalId\": \"3aed027b-3fee-4c92-a814-32d411cbd3a0\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2018-05-31T15:40:52.9674174Z\",\r\n \"updatedOn\": \"2018-05-31T15:40:52.9674174Z\",\r\n \"createdBy\": \"2b5ef1a8-96c2-4572-87e1-5eac032ea9f9\",\r\n \"updatedBy\": \"2b5ef1a8-96c2-4572-87e1-5eac032ea9f9\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/21562630-04dd-48c8-a478-708d16231139\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"21562630-04dd-48c8-a478-708d16231139\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b8eda974-7b85-4f76-af95-65846b26df6d\",\r\n \"principalId\": \"a4fcf44f-432a-4e14-8b0c-bcc57c65222f\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-11-06T15:19:27.6727937Z\",\r\n \"updatedOn\": \"2024-11-06T15:19:27.6727937Z\",\r\n \"createdBy\": \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"updatedBy\": \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/a18898a8-01a3-4d00-b758-36f582611ea4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a18898a8-01a3-4d00-b758-36f582611ea4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"09962365-f4fa-41a8-b9c9-8458c40c5a59\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-11-26T05:42:48.665744Z\",\r\n \"updatedOn\": \"2024-11-26T05:42:48.665744Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/ae06efd5-4cd4-4010-9649-a7e49f80e3d5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ae06efd5-4cd4-4010-9649-a7e49f80e3d5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"ccad4beb-b13f-499e-a2ea-7b04f687d88f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-12-10T07:21:28.4471694Z\",\r\n \"updatedOn\": \"2024-12-10T07:21:28.4471694Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/2ac9ded3-5905-4d84-a650-58680b21d5fd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2ac9ded3-5905-4d84-a650-58680b21d5fd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7\",\r\n \"principalId\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest/providers/Microsoft.KeyVault/vaults/lnxkv\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-12-30T03:33:56.2744042Z\",\r\n \"updatedOn\": \"2024-12-30T03:33:56.2744042Z\",\r\n \"createdBy\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"updatedBy\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest/providers/Microsoft.KeyVault/vaults/lnxkv/providers/Microsoft.Authorization/roleAssignments/b3488027-52d0-47da-9146-d7a8be39a3ac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b3488027-52d0-47da-9146-d7a8be39a3ac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/14b46e9e-c2b7-41b4-b07b-48a6ebf60603\",\r\n \"principalId\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest/providers/Microsoft.KeyVault/vaults/lnxkv\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-12-30T05:45:24.1414687Z\",\r\n \"updatedOn\": \"2024-12-30T05:45:24.1414687Z\",\r\n \"createdBy\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"updatedBy\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest/providers/Microsoft.KeyVault/vaults/lnxkv/providers/Microsoft.Authorization/roleAssignments/01d67194-5ac6-41cc-b232-7bc0ab6345dc\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"01d67194-5ac6-41cc-b232-7bc0ab6345dc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\r\n \"principalId\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest/providers/Microsoft.DocumentDb/databaseAccounts/lnxtest\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-12-30T07:03:55.3285555Z\",\r\n \"updatedOn\": \"2024-12-30T07:03:55.3285555Z\",\r\n \"createdBy\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"updatedBy\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest/providers/Microsoft.DocumentDb/databaseAccounts/lnxtest/providers/Microsoft.Authorization/roleAssignments/784ce7ac-b56f-4a7c-83f6-96121b406af8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"784ce7ac-b56f-4a7c-83f6-96121b406af8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b7ef99e8-10af-4a7c-8b15-5b6c352a8378\",\r\n \"principalId\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest/providers/Microsoft.DocumentDb/databaseAccounts/lnxtest\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-01-06T04:47:01.7933659Z\",\r\n \"updatedOn\": \"2025-01-06T04:47:01.7933659Z\",\r\n \"createdBy\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"updatedBy\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest/providers/Microsoft.DocumentDb/databaseAccounts/lnxtest/providers/Microsoft.Authorization/roleAssignments/d423d0e1-b776-4054-a2ca-a3c2b655f471\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d423d0e1-b776-4054-a2ca-a3c2b655f471\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"principalId\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest/providers/Microsoft.DocumentDb/databaseAccounts/lnxtest\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-01-06T04:52:10.0197502Z\",\r\n \"updatedOn\": \"2025-01-06T04:52:10.0197502Z\",\r\n \"createdBy\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"updatedBy\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest/providers/Microsoft.DocumentDb/databaseAccounts/lnxtest/providers/Microsoft.Authorization/roleAssignments/c02cb370-94f7-4d70-8b70-b37f6177461e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c02cb370-94f7-4d70-8b70-b37f6177461e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest/providers/Microsoft.DocumentDb/databaseAccounts/lnxtest\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-01-06T04:52:37.7636206Z\",\r\n \"updatedOn\": \"2025-01-06T04:52:37.7636206Z\",\r\n \"createdBy\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"updatedBy\": \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lnxtest/providers/Microsoft.DocumentDb/databaseAccounts/lnxtest/providers/Microsoft.Authorization/roleAssignments/2e804dc7-08ff-4c81-ac67-945e15ab66d7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2e804dc7-08ff-4c81-ac67-945e15ab66d7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1407120a-92aa-4202-b7e9-c0e197c71c8f\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Search/searchServices/wyunchi-copilot-search\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-01-14T08:57:12.3610722Z\",\r\n \"updatedOn\": \"2025-01-14T08:57:12.3610722Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Search/searchServices/wyunchi-copilot-search/providers/Microsoft.Authorization/roleAssignments/0e6a72ca-a5e8-4f81-ba75-76339d252c70\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0e6a72ca-a5e8-4f81-ba75-76339d252c70\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8ebe5a00-799e-43f5-93ac-243d3dce84a7\",\r\n \"principalId\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Search/searchServices/wyunchi-copilot-search\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-01-14T09:14:28.6416842Z\",\r\n \"updatedOn\": \"2025-01-14T09:14:28.6416842Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Search/searchServices/wyunchi-copilot-search/providers/Microsoft.Authorization/roleAssignments/227e6ce2-a518-4a93-ae71-1e24b7208502\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"227e6ce2-a518-4a93-ae71-1e24b7208502\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1407120a-92aa-4202-b7e9-c0e197c71c8f\",\r\n \"principalId\": \"26974eba-5400-469d-b087-f8fc2a789e3d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Search/searchServices/wyunchi-copilot-search\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-01-14T14:36:21.4299839Z\",\r\n \"updatedOn\": \"2025-01-14T14:36:21.4299839Z\",\r\n \"createdBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"updatedBy\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/wyunchi-copilot/providers/Microsoft.Search/searchServices/wyunchi-copilot-search/providers/Microsoft.Authorization/roleAssignments/e4bac40a-bbd9-4002-a2fb-0e9903fcf0c0\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e4bac40a-bbd9-4002-a2fb-0e9903fcf0c0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"7575ec5b-781c-4019-961d-27f551da3851\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-23T22:17:35.7733983Z\",\r\n \"updatedOn\": \"2024-07-23T22:17:35.7733983Z\",\r\n \"createdBy\": \"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e\",\r\n \"updatedBy\": \"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/05c7fdf0-000f-4fa4-9ef6-a7ee547d8a51\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"05c7fdf0-000f-4fa4-9ef6-a7ee547d8a51\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599\",\r\n \"principalId\": \"5c445532-1499-448e-970c-bda7db1e1f15\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-07-13T16:20:06.8829118Z\",\r\n \"updatedOn\": \"2023-07-13T16:20:06.8829118Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"Allow AccessMonitorReader to read access details for compliance purpose\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/fb6b898e-5323-404d-a8af-da5aafc3ecc0\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fb6b898e-5323-404d-a8af-da5aafc3ecc0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599\",\r\n \"principalId\": \"612cdbb4-6edd-4998-aae9-129cdba53a9a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-07-19T22:13:56.348297Z\",\r\n \"updatedOn\": \"2023-07-19T22:13:56.348297Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"Allow AccessMonitorReader to read access details for compliance purpose\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/3cdb16ce-2290-4f5f-bcab-5b07a458405f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3cdb16ce-2290-4f5f-bcab-5b07a458405f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599\",\r\n \"principalId\": \"a1cd43c2-c713-4af4-b885-50540e2c595f\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-07-19T22:18:24.6119781Z\",\r\n \"updatedOn\": \"2023-07-19T22:18:24.6119781Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"Allow AccessMonitorReader to read access details for compliance purpose\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/125160dd-5630-45b1-8260-4e5469d3e7b6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"125160dd-5630-45b1-8260-4e5469d3e7b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/542d4430-276f-957c-7ce8-dfae33a360e3\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-01-14T15:31:26.0339042Z\",\r\n \"updatedOn\": \"2022-01-14T15:31:26.0339042Z\",\r\n \"createdBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"updatedBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/542d4430-276f-957c-7ce8-dfae33a360e3/providers/Microsoft.Authorization/roleAssignments/8dc886af-e082-4448-aa11-6e5b66ebd037\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8dc886af-e082-4448-aa11-6e5b66ebd037\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2019-03-26T22:01:02.9136073Z\",\r\n \"updatedOn\": \"2019-03-26T22:01:02.9136073Z\",\r\n \"createdBy\": \"8701e34d-d7c2-459c-b2d7-f3a9c5204818\",\r\n \"updatedBy\": \"8701e34d-d7c2-459c-b2d7-f3a9c5204818\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6f4de15e-9316-4714-a7c4-40c46cf8e067\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"2ac3f52f-f3ad-40a4-9b2d-aa24e4c7bbba\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:36:13.2137492Z\",\r\n \"updatedOn\": \"2020-02-25T18:36:13.2137492Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"18fdd87e-1c01-424e-b380-32310f4940c2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"56d08bc2-cc29-4d23-9d23-fd396b807b02\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:35:55.7490022Z\",\r\n \"updatedOn\": \"2020-02-25T18:35:55.7490022Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6e2b954b-42b2-48e0-997a-622601f0a4b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"4a113caa-961f-4535-ac9b-79bfba8b9ed2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:36:00.4746112Z\",\r\n \"updatedOn\": \"2020-02-25T18:36:00.4746112Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d9bcf58a-6f24-446d-bf60-20ffe5142396\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"6179a082-c057-4fe3-8118-916b816a42e3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:35:57.9173081Z\",\r\n \"updatedOn\": \"2020-02-25T18:35:57.9173081Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"7c2d0d59-528c-434a-8c6c-03330539cad2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:36:31.2596366Z\",\r\n \"updatedOn\": \"2020-02-25T18:36:31.2596366Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dabf212-a1c7-4af6-ba8b-be045493b368\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"7d7aed0a-228e-420b-a6a2-82a49dacb8cb\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:35:52.9188704Z\",\r\n \"updatedOn\": \"2020-02-25T18:35:52.9188704Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d674b853-332e-4437-9ddb-bba8fde7ccce\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"b7a49237-f5b0-473f-a4ff-6830d23af17d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:36:38.8393742Z\",\r\n \"updatedOn\": \"2020-02-25T18:36:38.8393742Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"00625383-053d-4227-a4db-b098e9bd2289\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"f2e939bc-742a-42f9-a27a-f0982c6e3f64\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:36:05.0954462Z\",\r\n \"updatedOn\": \"2020-02-25T18:36:05.0954462Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3151fe9c-fcd2-45d3-a256-72fb13b86df5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"b7b8bd19-f827-425f-9be1-fd8a86b21904\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-07-06T18:51:23.0753297Z\",\r\n \"updatedOn\": \"2020-07-06T18:51:23.0753297Z\",\r\n \"createdBy\": \"d59f4a71-eff1-4bfa-a572-fe518f49f6c7\",\r\n \"updatedBy\": \"d59f4a71-eff1-4bfa-a572-fe518f49f6c7\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b3a9e1db-fde1-4ddd-ac1c-91913be67359\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"700587cd-b5ad-4d37-b560-3ff43a4a5490\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-12-12T21:14:55.1655079Z\",\r\n \"updatedOn\": \"2023-02-28T22:54:18.0450083Z\",\r\n \"createdBy\": \"393a8425-6c8d-4d4a-a700-811f0423e5aa\",\r\n \"updatedBy\": \"393a8425-6c8d-4d4a-a700-811f0423e5aa\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6565c104-61e2-5756-96d7-663b216c8b11\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"482dccba-36b8-4309-8599-dce82be5b107\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-02-17T00:30:39.4967398Z\",\r\n \"updatedOn\": \"2022-02-17T00:30:39.4967398Z\",\r\n \"createdBy\": \"a4319ad3-20be-4542-8952-685b66e56377\",\r\n \"updatedBy\": \"a4319ad3-20be-4542-8952-685b66e56377\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d8aedac6-3663-42b3-add4-c013b7935fb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"0504eea8-68f8-4367-a04f-38407a0c4a97\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-03-02T23:53:39.1630622Z\",\r\n \"updatedOn\": \"2022-03-02T23:53:39.1630622Z\",\r\n \"createdBy\": \"a4319ad3-20be-4542-8952-685b66e56377\",\r\n \"updatedBy\": \"a4319ad3-20be-4542-8952-685b66e56377\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b5f0a13f-ac13-4e45-8588-15f5d9a02b20\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971\",\r\n \"principalId\": \"1fdb09c2-872e-43c5-bb79-561e3122dc8a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-03-08T00:58:05.8353141Z\",\r\n \"updatedOn\": \"2022-03-08T00:58:05.8353141Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"403b97d1-ee0a-4b10-afe1-f36f368d2ced\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"0d73806b-2839-44f0-b9e0-3de55a565a24\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-05-17T18:23:54.2264851Z\",\r\n \"updatedOn\": \"2022-05-31T17:20:00.8273681Z\",\r\n \"createdBy\": \"393a8425-6c8d-4d4a-a700-811f0423e5aa\",\r\n \"updatedBy\": \"393a8425-6c8d-4d4a-a700-811f0423e5aa\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f0576973-5014-5fe2-b3f2-cf3aace860d6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\",\r\n \"principalId\": \"bec26c10-d462-4862-9537-53c98dd5606c\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-05-16T23:08:20.8536608Z\",\r\n \"updatedOn\": \"2022-05-16T23:08:20.8536608Z\",\r\n \"createdBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"updatedBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8b338a13-cfa6-42e6-b424-fb375ce9d07c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"421cdbd5-e8fa-4961-a599-600c3230e091\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-07-19T00:07:21.3325762Z\",\r\n \"updatedOn\": \"2022-07-19T00:07:21.3325762Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2697280b-812c-472d-841b-a10a9fe540a5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971\",\r\n \"principalId\": \"9c6d261d-f447-4cf6-bbde-6010b3953a75\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-07-19T00:07:23.702098Z\",\r\n \"updatedOn\": \"2022-07-19T00:07:23.702098Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f4254463-7a28-4d26-b331-5a18c354cbe6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"f47f1409-00ea-40d5-bed1-401a50741ae3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-07-19T00:07:26.4080657Z\",\r\n \"updatedOn\": \"2022-07-19T00:07:26.4080657Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"065a63ba-71cc-4c69-b92b-bc67421e7e64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"e0cb5c33-2084-4cec-ac51-2bc313d4502e\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-04-07T05:56:00.4871186Z\",\r\n \"updatedOn\": \"2023-04-24T19:44:20.3477537Z\",\r\n \"createdBy\": \"09a22e59-e99b-42cb-b8b7-2475f66a3007\",\r\n \"updatedBy\": \"09a22e59-e99b-42cb-b8b7-2475f66a3007\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/17a093c4-e4b2-5959-95e3-5894ef6873fb\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"17a093c4-e4b2-5959-95e3-5894ef6873fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"f7b9f917-9a41-437c-84b1-682a814dbaf6\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-11-26T01:37:41.914463Z\",\r\n \"updatedOn\": \"2024-01-08T19:18:08.6396605Z\",\r\n \"createdBy\": \"815c7b56-317b-457c-bf99-f9c2b6a3f739\",\r\n \"updatedBy\": \"815c7b56-317b-457c-bf99-f9c2b6a3f739\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/67815997-99bc-5b98-9a5d-5ad5a092d499\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"67815997-99bc-5b98-9a5d-5ad5a092d499\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"6571efc1-a303-44df-b1b8-38523fdea4fa\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-08-09T18:17:33.0012805Z\",\r\n \"updatedOn\": \"2021-08-09T18:17:33.0012805Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"01de8fe7-aae0-4d5c-844a-f0bdb8335252\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"dc50c6c2-4754-411b-9fe0-f341f3910403\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-08-24T19:32:18.2000692Z\",\r\n \"updatedOn\": \"2021-08-24T19:32:18.2000692Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0ce2f3fb-17ea-4193-9081-09aa4b39fec4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"72c0a066-b35b-4d68-bd6f-d406ed3f2b9f\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-08-09T18:17:39.9188336Z\",\r\n \"updatedOn\": \"2021-08-09T18:17:39.9188336Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ab2be506-5489-4c1f-add0-f5ed87a10439\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"779ead4e-2dc9-4191-b651-7f2a57b0b6ff\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-08-24T19:32:36.6775144Z\",\r\n \"updatedOn\": \"2021-08-24T19:32:36.6775144Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2e95b289-99bd-4e68-83de-5433f2a0428c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"fd279736-6a60-4ae6-b252-3ae9d9fea200\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-11-01T22:46:09.10564Z\",\r\n \"updatedOn\": \"2021-11-01T22:46:09.10564Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"82fe7886-5c1b-42c2-9319-7b4d436d8aba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"40b1b8e8-c813-4c09-b2bb-86db1f921168\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-11-01T22:46:14.7527743Z\",\r\n \"updatedOn\": \"2021-11-01T22:46:14.7527743Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"12162b26-25fb-4ef5-a6e8-651446483cb6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"fde3669e-734a-4765-a063-fdec3647fcc8\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-11-01T22:46:20.6399869Z\",\r\n \"updatedOn\": \"2021-11-01T22:46:20.6399869Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"76ae450f-630f-4af4-92cf-e7153ba839f0\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-01-26T20:10:13.8998989Z\",\r\n \"updatedOn\": \"2021-01-26T20:10:13.8998989Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b36517ec-61d3-468d-afdc-eceda8adb4ee\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"fd3aca68-eb29-4ad8-be21-662836d3f454\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-02-06T00:13:19.1780775Z\",\r\n \"updatedOn\": \"2021-02-06T00:13:19.1780775Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5216c1ee-4f58-4d36-b379-6c04b1fbd157\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"principalId\": \"5a1044d8-27f6-4e3d-b994-30521eedb46c\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-04-16T18:26:34.3109215Z\",\r\n \"updatedOn\": \"2021-04-16T18:26:34.3109215Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7464f8a3-9f55-443b-a3a5-44a31b100cad\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"2b8b0d82-3484-40e9-b634-df286b616735\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-05-04T19:20:06.7695456Z\",\r\n \"updatedOn\": \"2021-05-04T19:20:06.7695456Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"5e83e4cb-9b41-4b98-b8dd-4fc3951ea1ed\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-04-16T18:27:56.4446265Z\",\r\n \"updatedOn\": \"2021-04-16T18:27:56.4446265Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8f430c4c-4317-4495-9f01-4f3d4e1ca111\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"eb5dcf2a-c769-4615-b84b-74ac50f15a4a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-29T08:10:10.263924Z\",\r\n \"updatedOn\": \"2024-07-03T06:42:54.2315474Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fd981fb3-5e11-5e90-aa7b-b646c44e910a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fd981fb3-5e11-5e90-aa7b-b646c44e910a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"be438bf2-6cab-41fa-9b2c-9eaf5cd8049d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-15T23:41:54.4771046Z\",\r\n \"updatedOn\": \"2024-07-15T23:41:54.4771046Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ddcc0944-0060-4959-839b-3a0375f3c67d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ddcc0944-0060-4959-839b-3a0375f3c67d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6d224f7c-5c93-4466-b116-8c0c62090d0d\",\r\n \"principalId\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-08-06T19:46:22.1511939Z\",\r\n \"updatedOn\": \"2024-08-06T19:46:22.1511939Z\",\r\n \"createdBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"updatedBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/924c5f63-7511-49c2-b9f5-5a5b8deeb6cd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"924c5f63-7511-49c2-b9f5-5a5b8deeb6cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"principalId\": \"ed64b40d-cfa6-405c-890c-ade489e6dc9c\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.4640815Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.4640815Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/16ad0a18-aacd-4844-8c39-22deb4119f74\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"16ad0a18-aacd-4844-8c39-22deb4119f74\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"2dd1ea73-4024-489e-83a4-45cb3e962f69\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6627656Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6627656Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5e997838-ea3d-4e79-8d7b-2d2dfdbe3868\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5e997838-ea3d-4e79-8d7b-2d2dfdbe3868\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"principalId\": \"8b940b4f-b118-465f-bdd4-65cf3c55cc3e\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6545669Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6545669Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5b4f87ba-5464-4cb2-8c0d-1ac09e851dd0\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5b4f87ba-5464-4cb2-8c0d-1ac09e851dd0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"principalId\": \"64cb6e50-2fe8-4ad4-86e9-291b799fd3b7\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.7609502Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.7609502Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5eb9a251-63c4-4db4-a2f2-689d011b4509\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5eb9a251-63c4-4db4-a2f2-689d011b4509\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"principalId\": \"ff29f09e-a8be-4afc-b627-d02fcaf6c28d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.8333637Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.8333637Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/1cd85cca-586c-45d9-9f81-4074965a9d99\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1cd85cca-586c-45d9-9f81-4074965a9d99\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"5f354ec9-f512-41f0-9f1f-ce25bbeb5369\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.3122114Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.3122114Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e0ef8920-e57d-4c1c-a21f-0765b34786b5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e0ef8920-e57d-4c1c-a21f-0765b34786b5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\",\r\n \"principalId\": \"2dcdba1f-c5f9-4092-bce5-bf593ac4bea5\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.5115488Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.5115488Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/27929cc1-e4f6-4dab-80cb-51b2743ec222\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"27929cc1-e4f6-4dab-80cb-51b2743ec222\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\r\n \"principalId\": \"4efc6c2d-d534-418c-b109-7f54e80a70d0\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6565526Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6565526Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/a68687e3-f706-452b-ad9b-5d2497348da4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a68687e3-f706-452b-ad9b-5d2497348da4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"10b09f65-7a54-41fa-965d-ca3490541488\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6436777Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6436777Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ea232a8a-e2e3-472d-a926-257f61a306f8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ea232a8a-e2e3-472d-a926-257f61a306f8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"principalId\": \"ff29f09e-a8be-4afc-b627-d02fcaf6c28d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6276165Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6276165Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f61532eb-c3be-4af1-9283-49c3e54978bd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f61532eb-c3be-4af1-9283-49c3e54978bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"10b09f65-7a54-41fa-965d-ca3490541488\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6806125Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6806125Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/48f44b2a-d2b7-45f6-b80a-930a630b26e7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"48f44b2a-d2b7-45f6-b80a-930a630b26e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419\",\r\n \"principalId\": \"dd6b2b46-ce72-42b7-af27-93fa41db399e\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.3196261Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.3196261Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6cca32ef-f72d-42b9-a956-b28bd5fd59a8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6cca32ef-f72d-42b9-a956-b28bd5fd59a8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"principalId\": \"729eba1d-8508-4034-abd2-54128fbe8b22\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:52.0592211Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:52.0592211Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/cd9c7e9c-f79f-4f2c-9e28-28879d2e85ec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"cd9c7e9c-f79f-4f2c-9e28-28879d2e85ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"principalId\": \"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6932275Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6932275Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/48c6a306-5301-439e-86b0-9e2bca52994e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"48c6a306-5301-439e-86b0-9e2bca52994e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"principalId\": \"3583e1a9-dbb9-472e-ab5c-2c7b0e2a9615\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-16T07:48:49.7761077Z\",\r\n \"updatedOn\": \"2024-10-09T11:32:02.0971195Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7a465a70-0737-5ea3-a401-17d618549b26\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7a465a70-0737-5ea3-a401-17d618549b26\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064\",\r\n \"principalId\": \"3583e1a9-dbb9-472e-ab5c-2c7b0e2a9615\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-16T07:48:51.5805513Z\",\r\n \"updatedOn\": \"2024-10-09T11:32:04.0456795Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e26bf549-e870-5800-af71-7a0d874ba92d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e26bf549-e870-5800-af71-7a0d874ba92d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"0a44da5b-5b98-42b5-aa43-be2ceae9a377\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-20T23:14:31.647167Z\",\r\n \"updatedOn\": \"2024-09-20T23:14:31.647167Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/a514e01b-fd6b-4bfa-a4ee-0747994c9e5f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a514e01b-fd6b-4bfa-a4ee-0747994c9e5f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\r\n \"principalId\": \"2a7381d1-1dae-4b42-93f4-181ada4c4865\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-01-16T00:02:23.0916862Z\",\r\n \"updatedOn\": \"2025-02-04T02:25:20.8028292Z\",\r\n \"createdBy\": \"09a22e59-e99b-42cb-b8b7-2475f66a3007\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2674eb52-f8a5-5178-80e5-c2775b7da442\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2674eb52-f8a5-5178-80e5-c2775b7da442\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\r\n \"principalId\": \"273459e4-5fc5-4997-aae0-de7455209f23\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-01-28T20:53:00.9077636Z\",\r\n \"updatedOn\": \"2025-02-03T23:46:56.0575877Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/dd64da31-e90a-58fb-8767-341d655cf574\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"dd64da31-e90a-58fb-8767-341d655cf574\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ebc6a08c-9436-41c0-98ea-9a98ce69e91c\",\r\n \"principalId\": \"93c69cf7-7f7c-44e8-bc82-889084703380\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-10-25T00:59:34.6842751Z\",\r\n \"updatedOn\": \"2024-10-25T00:59:34.6842751Z\",\r\n \"createdBy\": \"7065961c-d3a8-4346-985c-12cd2dec2994\",\r\n \"updatedBy\": \"7065961c-d3a8-4346-985c-12cd2dec2994\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/80be68ee-64b9-41c6-ad33-91e561563dc3\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"80be68ee-64b9-41c6-ad33-91e561563dc3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"principalId\": \"93c69cf7-7f7c-44e8-bc82-889084703380\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-10-25T01:00:25.9766703Z\",\r\n \"updatedOn\": \"2024-10-25T01:00:25.9766703Z\",\r\n \"createdBy\": \"7065961c-d3a8-4346-985c-12cd2dec2994\",\r\n \"updatedBy\": \"7065961c-d3a8-4346-985c-12cd2dec2994\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/7fcb7148-5d5b-43f5-866a-28bfc6db1727\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7fcb7148-5d5b-43f5-866a-28bfc6db1727\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"principalId\": \"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2019-03-27T00:49:37.3000523Z\",\r\n \"updatedOn\": \"2019-03-27T00:49:37.3000523Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2019-03-26T22:01:02.9176787Z\",\r\n \"updatedOn\": \"2019-03-26T22:01:02.9176787Z\",\r\n \"createdBy\": \"8701e34d-d7c2-459c-b2d7-f3a9c5204818\",\r\n \"updatedBy\": \"8701e34d-d7c2-459c-b2d7-f3a9c5204818\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\",\r\n \"principalId\": \"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2019-03-27T00:50:08.3039053Z\",\r\n \"updatedOn\": \"2019-03-27T00:50:08.3039053Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3d01f56e-ee3a-41ed-a775-0e067546cb12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\",\r\n \"principalId\": \"bec26c10-d462-4862-9537-53c98dd5606c\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-06-28T23:11:28.9217618Z\",\r\n \"updatedOn\": \"2022-06-28T23:11:28.9217618Z\",\r\n \"createdBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"updatedBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"869183bd-893a-46f9-bb02-45e48b13f1be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\",\r\n \"principalId\": \"4e7ce0ab-3f80-4c90-834e-047bb8b21564\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-09-15T21:41:54.7021549Z\",\r\n \"updatedOn\": \"2023-09-15T21:41:54.7021549Z\",\r\n \"createdBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\",\r\n \"updatedBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/c68e55f3-69fd-4ba8-8dfc-0c62d73e4eb6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c68e55f3-69fd-4ba8-8dfc-0c62d73e4eb6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"48580f46-cdf7-4677-b38f-13fee8d2b744\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-25T17:22:19.553013Z\",\r\n \"updatedOn\": \"2024-06-25T17:22:19.553013Z\",\r\n \"createdBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"updatedBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/9547ef7c-6294-470a-ad4a-00ab0587ff67\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9547ef7c-6294-470a-ad4a-00ab0587ff67\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"principalId\": \"753548ec-bac1-4b53-8540-167bade337a6\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-25T17:22:56.3760639Z\",\r\n \"updatedOn\": \"2024-06-25T17:22:56.3760639Z\",\r\n \"createdBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"updatedBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/a9047912-01ff-4276-8ba3-86b00aac5a81\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a9047912-01ff-4276-8ba3-86b00aac5a81\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/47d81b3f-7139-46fc-a2e5-228265cc216c\",\r\n \"principalId\": \"4cecbcac-6e02-4472-b8b5-823a05494652\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T23:38:57.316734Z\",\r\n \"updatedOn\": \"2024-09-04T23:38:57.316734Z\",\r\n \"createdBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"updatedBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/802719eb-7994-4570-9d4e-5148bf3b9a92\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"802719eb-7994-4570-9d4e-5148bf3b9a92\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cbdd6655-6341-491c-b01b-8b202175cee4\",\r\n \"principalId\": \"4cecbcac-6e02-4472-b8b5-823a05494652\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T23:40:48.2349759Z\",\r\n \"updatedOn\": \"2024-09-04T23:40:48.2349759Z\",\r\n \"createdBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"updatedBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/2f995a6c-51e8-4cd1-aeb9-dd1bd10edab4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2f995a6c-51e8-4cd1-aeb9-dd1bd10edab4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/47d81b3f-7139-46fc-a2e5-228265cc216c\",\r\n \"principalId\": \"71c2f92b-fbbc-441b-bb97-84fbf374d8d2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-09T21:12:09.339003Z\",\r\n \"updatedOn\": \"2024-09-09T21:12:09.339003Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/1b73abcc-559a-4c11-919d-7ba9003ef4b7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1b73abcc-559a-4c11-919d-7ba9003ef4b7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cbdd6655-6341-491c-b01b-8b202175cee4\",\r\n \"principalId\": \"71c2f92b-fbbc-441b-bb97-84fbf374d8d2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-09T21:12:33.2531658Z\",\r\n \"updatedOn\": \"2024-09-09T21:12:33.2531658Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/b5c5043d-0d03-4e87-a5ff-74961fb5fc62\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b5c5043d-0d03-4e87-a5ff-74961fb5fc62\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0034c645-cd1a-45a2-9f68-21c21eba9995\",\r\n \"principalId\": \"0628a06b-881e-416d-827c-43b7f897368a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-02-03T20:09:15.4652511Z\",\r\n \"updatedOn\": \"2025-02-03T20:09:15.4652511Z\",\r\n \"createdBy\": \"319b9a8b-31b0-413f-8826-b1135db75bcb\",\r\n \"updatedBy\": \"319b9a8b-31b0-413f-8826-b1135db75bcb\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/9b3ef06e-d4ec-4749-9187-2220bad2f845\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9b3ef06e-d4ec-4749-9187-2220bad2f845\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"principalId\": \"7795c402-abeb-42e9-a027-b924b28c67bb\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-02-08T12:33:42.6662324Z\",\r\n \"updatedOn\": \"2025-02-11T13:31:01.3012787Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/c522c42b-842f-538e-b4bb-7a43ba597d28\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c522c42b-842f-538e-b4bb-7a43ba597d28\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"principalId\": \"8f57971f-cf33-4610-ad69-5671e1eb0420\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-02-09T00:45:40.2106127Z\",\r\n \"updatedOn\": \"2025-02-12T01:41:31.9037195Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4e15e659-ab5f-57ed-8187-bd5f3b98edbc\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4e15e659-ab5f-57ed-8187-bd5f3b98edbc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0034c645-cd1a-45a2-9f68-21c21eba9995\",\r\n \"principalId\": \"832fedb9-9185-40cb-a432-490c7306801a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-02-10T23:30:15.2821592Z\",\r\n \"updatedOn\": \"2025-02-10T23:30:15.2821592Z\",\r\n \"createdBy\": \"ecb3ca67-89e4-4ec6-be01-19241f802632\",\r\n \"updatedBy\": \"ecb3ca67-89e4-4ec6-be01-19241f802632\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/24e5c634-c54b-407f-aa57-2284cf332331\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"24e5c634-c54b-407f-aa57-2284cf332331\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"ce2366a6-64d7-441b-939c-c9d23f91cccd\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-03-12T20:43:06.5941189Z\",\r\n \"updatedOn\": \"2020-03-12T20:43:06.5941189Z\",\r\n \"createdBy\": \"606f48c8-d219-4875-991d-ae6befaf0756\",\r\n \"updatedBy\": \"606f48c8-d219-4875-991d-ae6befaf0756\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ad9e2cd7-0ff7-4931-9b17-656c8f17934b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b325d340-14f0-412a-8753-4868e914902f\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-04-17T22:25:31.4437352Z\",\r\n \"updatedOn\": \"2024-04-17T22:25:31.4437352Z\",\r\n \"createdBy\": \"b3d441fb-e998-494d-a72b-9c24eabd0cde\",\r\n \"updatedBy\": \"b3d441fb-e998-494d-a72b-9c24eabd0cde\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/6aa7e5e7-bbdf-42ec-ab01-21cf9585ed97\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6aa7e5e7-bbdf-42ec-ab01-21cf9585ed97\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"274871fc-ab7d-4860-99b6-e4ceff4883bb\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-30T21:35:32.6579323Z\",\r\n \"updatedOn\": \"2024-05-30T21:35:32.6579323Z\",\r\n \"createdBy\": \"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa\",\r\n \"updatedBy\": \"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/f9085458-9261-4821-b4b0-c6ddba2af3d1\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f9085458-9261-4821-b4b0-c6ddba2af3d1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"principalId\": \"ff29f09e-a8be-4afc-b627-d02fcaf6c28d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-08-14T19:04:17.9473811Z\",\r\n \"updatedOn\": \"2024-08-14T19:04:17.9473811Z\",\r\n \"createdBy\": \"b3d441fb-e998-494d-a72b-9c24eabd0cde\",\r\n \"updatedBy\": \"b3d441fb-e998-494d-a72b-9c24eabd0cde\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/73f1e96c-b727-4776-80a5-02dbe581a565\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"73f1e96c-b727-4776-80a5-02dbe581a565\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-02-21T22:32:46.2324804Z\",\r\n \"updatedOn\": \"2023-02-21T22:32:46.2324804Z\",\r\n \"createdBy\": \"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e\",\r\n \"updatedBy\": \"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"2dd1ea73-4024-489e-83a4-45cb3e962f69\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-05-04T20:23:16.3808369Z\",\r\n \"updatedOn\": \"2023-05-04T20:23:16.3808369Z\",\r\n \"createdBy\": \"fa00c2de-57d5-4527-9254-4d513f482d0a\",\r\n \"updatedBy\": \"fa00c2de-57d5-4527-9254-4d513f482d0a\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"59109645-7b2b-4278-831a-2e4627ec603d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"principalId\": \"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-01-17T20:03:31.9828324Z\",\r\n \"updatedOn\": \"2024-01-17T20:03:31.9828324Z\",\r\n \"createdBy\": \"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa\",\r\n \"updatedBy\": \"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/fe395c31-2241-4055-9536-d814d39b801b\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fe395c31-2241-4055-9536-d814d39b801b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"80bef37c-0c59-474b-964a-e9eb09f913f5\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-27T18:17:31.8607675Z\",\r\n \"updatedOn\": \"2024-09-27T18:17:31.8607675Z\",\r\n \"createdBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"updatedBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/97983db6-32d1-49aa-ac4b-45452f2c7913\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"97983db6-32d1-49aa-ac4b-45452f2c7913\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions?api-version=2022-05-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzllMjIzZGJlLTMzOTktNGUxOS04OGViLTA5NzVmMDJhYzg3Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d0a2e7e-d047-4589-894d-0ace083fcb4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.3624.51421", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/7.8.1" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "71ddf076-33d7-49d7-b13a-9f994299eb10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "8ae70a7f-7cdf-48d8-bd9f-49d6d9511ab3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250213T114729Z:8ae70a7f-7cdf-48d8-bd9f-49d6d9511ab3" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 51E2E1AFF1B847D6AB2D6D908A4D81B0 Ref B: MAA201060514029 Ref C: 2025-02-13T11:47:29Z" + ], + "Date": [ + "Thu, 13 Feb 2025 11:47:28 GMT" + ], + "Content-Length": [ + "915537" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader vm For Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-07T05:38:12.5623887Z\",\r\n \"updatedOn\": \"2024-05-07T05:38:12.5623887Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/14347f95-76d9-48f6-932e-7997d99a45b2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"14347f95-76d9-48f6-932e-7997d99a45b2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Cluster Create\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Avere cluster create role used by the Avere controller to create a vFXT cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/*\",\r\n \"Microsoft.Authorization/roleDefinitions/*\",\r\n \"Microsoft.Compute/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Network/*/read\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Storage/*/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-11-29T18:46:55.0492387Z\",\r\n \"updatedOn\": \"2018-11-29T18:46:55.0492387Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Cluster Runtime Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Avere cluster runtime role used by Avere clusters running in subscriptions, for the purpose of failing over IP addresses, accessing BLOB storage, etc\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/routeTables/read\",\r\n \"Microsoft.Network/routeTables/routes/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-26T00:41:26.2170858Z\",\r\n \"updatedOn\": \"2018-08-26T00:41:26.2170858Z\",\r\n \"createdBy\": \"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\r\n \"updatedBy\": \"dda50086-5e3d-4a4b-b8bc-f54771104d89\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e078ab98-ef3a-4c9a-aba7-12f5172b45d0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e078ab98-ef3a-4c9a-aba7-12f5172b45d0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Deploy Release Management Contributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Contributor role for services deploying through Azure Service Deploy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/write\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/delete\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/action\"\r\n ],\r\n \"notDataActions\": [],\r\n \"condition\": \"((@Subject.Application == '55dc16a23e724a5eb43050311bb101b9') || (@Subject.Application == '5b306cba9c7149db96c3d17ca2379c4d') || (@Subject.Application == '55dc16a2-3e72-4a5e-b430-50311bb101b9') || (@Subject.Application == '5b306cba-9c71-49db-96c3-d17ca2379c4d') || (@Subject.ApplicationId == '55dc16a23e724a5eb43050311bb101b9') || (@Subject.ApplicationId == '5b306cba9c7149db96c3d17ca2379c4d') || (@Subject.ApplicationId == '55dc16a2-3e72-4a5e-b430-50311bb101b9') || (@Subject.ApplicationId == '5b306cba-9c71-49db-96c3-d17ca2379c4d')) && ((@Subject.ApplicationACR == '1') || (@Subject.ApplicationACR == '2'))\"\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-04T02:26:31.5413362Z\",\r\n \"updatedOn\": \"2024-08-05T21:20:31.4815216Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/21d96096-b162-414a-8302-d8354f9d91b2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"21d96096-b162-414a-8302-d8354f9d91b2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CAL-Custom-Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets SAP Cloud Appliance Library application manage Network and Compute services, manage Resource Groups and Management locks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/locks/*\",\r\n \"Microsoft.Authorization/roleDefinitions/*\",\r\n \"Microsoft.Authorization/roleAssignments/*\",\r\n \"Microsoft.Compute/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.Resources/*\",\r\n \"Microsoft.Storage/*\",\r\n \"Microsoft.ContainerService/*\",\r\n \"Microsoft.ContainerRegistry/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-05-14T19:30:51.0664585Z\",\r\n \"updatedOn\": \"2019-02-19T19:11:57.5963229Z\",\r\n \"createdBy\": \"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7b266cd7-0bba-4ae2-8423-90ede5e1e898\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7b266cd7-0bba-4ae2-8423-90ede5e1e898\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Dsms Role (deprecated)\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom role used by Dsms to perform operations. Can list and regnerate storage account keys.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-17T18:02:11.1225951Z\",\r\n \"updatedOn\": \"2018-01-13T00:21:52.7211696Z\",\r\n \"createdBy\": \"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\",\r\n \"updatedBy\": \"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Dsms Role (do not use)\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom role used by Dsms to perform operations. Can list and regnerate storage account keys.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-01T07:56:12.5880222Z\",\r\n \"updatedOn\": \"2018-08-09T17:53:48.5432297Z\",\r\n \"createdBy\": \"becb4b6b-fe16-413b-a5c3-90355e0b2982\",\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7aff565e-6c55-448d-83db-ccf482c6da2f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7aff565e-6c55-448d-83db-ccf482c6da2f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ExpressRoute Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can create, delete and manage ExpressRoutes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/locks/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\",\r\n \"Microsoft.Authorization/roleAssignments/*\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.EventGrid/*\",\r\n \"Microsoft.Insights/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.Resources/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-31T03:51:32.2843055Z\",\r\n \"updatedOn\": \"2019-03-20T22:55:18.8222085Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a48d7896-14b4-4889-afef-fbb65a96e5a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a48d7896-14b4-4889-afef-fbb65a96e5a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"GenevaWarmPathResourceContributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can manage service bus and storage accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/namespaces/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*\",\r\n \"Microsoft.ServiceBus/namespaces/*\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-14T22:30:10.1999436Z\",\r\n \"updatedOn\": \"2022-02-28T23:26:40.0052537Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"acis\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"masterreader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-14T23:38:05.3353858Z\",\r\n \"updatedOn\": \"2017-11-14T23:38:05.3353858Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a48d7796-14b4-4889-afef-fbb65a93e5a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a48d7796-14b4-4889-afef-fbb65a93e5a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft OneAsset Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"This role is for Microsoft OneAsset team (CSEO) to track internal security compliance and resource utilization.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-27T23:51:08.6333052Z\",\r\n \"updatedOn\": \"2019-04-02T20:35:43.3396263Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd1bb084-1503-4bd2-99c0-630220046786\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd1bb084-1503-4bd2-99c0-630220046786\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Office DevOps\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom access for developers to operations but not secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachineScaleSets/restart/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/restart/action\",\r\n \"Microsoft.Sql/servers/databases/replicationLinks/delete\",\r\n \"Microsoft.Sql/servers/databases/replicationLinks/failover/action\",\r\n \"Microsoft.Sql/servers/databases/replicationLinks/forceFailoverAllowDataLoss/action\",\r\n \"Microsoft.Sql/servers/databases/replicationLinks/operationResults/read\",\r\n \"Microsoft.Sql/servers/databases/replicationLinks/read\",\r\n \"Microsoft.Sql/servers/databases/replicationLinks/unlink/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-10-07T08:11:46.1639398Z\",\r\n \"updatedOn\": \"2017-03-16T18:43:08.3234306Z\",\r\n \"createdBy\": \"25aea6be-b605-4347-a92d-33e178e412ec\",\r\n \"updatedBy\": \"25aea6be-b605-4347-a92d-33e178e412ec\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7fd64851-3279-459b-b614-e2b2ba760f5b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fd64851-3279-459b-b614-e2b2ba760f5b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"GenevaWarmPathStorageBlobContributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Geneva Warm Path Storage Blob Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/lease/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/lock/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/extend/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/delete\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-06T22:46:27.136563Z\",\r\n \"updatedOn\": \"2022-02-28T23:26:40.4152515Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"acis\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a16c43ca-2d67-4dcd-9ded-6412f5edc51a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a16c43ca-2d67-4dcd-9ded-6412f5edc51a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Deploy Release Management Restricted Owner\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Restricted owner role for services deploying through Azure Service Deploy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/write\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/delete\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/action\"\r\n ],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Principal[ApplicationId] ForAllOfAnyValues:StringEqualsIgnoreCase {'5b306cba9c7149db96c3d17ca2379c4d', '5b306cba-9c71-49db-96c3-d17ca2379c4d'} && @Principal[ApplicationACR] ForAllOfAnyValues:StringEqualsIgnoreCase {'1', '2'}\"\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Principal[ApplicationId] ForAllOfAnyValues:StringEqualsIgnoreCase {'5b306cba9c7149db96c3d17ca2379c4d', '5b306cba-9c71-49db-96c3-d17ca2379c4d'} && @Principal[ApplicationACR] ForAllOfAnyValues:StringEqualsIgnoreCase {'1', '2'} && @Resource[Microsoft.Authorization/roleAssignments:PrincipalType] StringEqualsIgnoreCase 'ServicePrincipal'\"\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/policyassignments/write\",\r\n \"Microsoft.Authorization/policydefinitions/write\",\r\n \"Microsoft.Authorization/policysetdefinitions/write\",\r\n \"Microsoft.Authorization/roleDefinitions/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Principal[ApplicationId] ForAllOfAnyValues:StringEqualsIgnoreCase {'5b306cba9c7149db96c3d17ca2379c4d', '5b306cba-9c71-49db-96c3-d17ca2379c4d'} && @Principal[ApplicationACR] ForAllOfAnyValues:StringEqualsIgnoreCase {'1', '2'}\"\r\n }\r\n ],\r\n \"createdOn\": \"2022-03-07T22:16:06.8803898Z\",\r\n \"updatedOn\": \"2024-08-05T21:23:18.5670462Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"94ddc4bc-25f5-4f3e-b527-c587da93cfe4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Deploy Test Release Management Key Vault Secrets User\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read secret and certificate contents. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\r\n \"Microsoft.KeyVault/vaults/certificates/read\"\r\n ],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Principal[Microsoft.Directory/TokenClaims:ApplicationId] ForAllOfAnyValues:StringEqualsIgnoreCase {'5744bc69-8a73-45f7-958d-4640d865f04d', '5744bc698a7345f7958d4640d865f04d'} && @Principal[Microsoft.Directory/TokenClaims:ApplicationACR] ForAllOfAnyValues:StringEqualsIgnoreCase {'1', '2'}\"\r\n }\r\n ],\r\n \"createdOn\": \"2022-07-20T22:52:19.9944274Z\",\r\n \"updatedOn\": \"2022-08-31T23:25:32.0649353Z\",\r\n \"createdBy\": \"19669f00-ee56-44ec-94c3-83159a41292e\",\r\n \"updatedBy\": \"19669f00-ee56-44ec-94c3-83159a41292e\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/87d31636-ad85-4caa-802d-1535972b5612\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87d31636-ad85-4caa-802d-1535972b5612\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Deploy Release Management Key Vault Secrets User\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read secret and certificate contents. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\r\n \"Microsoft.KeyVault/vaults/certificates/read\"\r\n ],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Principal[Microsoft.Directory/TokenClaims:ApplicationId] ForAllOfAnyValues:StringEqualsIgnoreCase {'5b306cba-9c71-49db-96c3-d17ca2379c4d', '5b306cba9c7149db96c3d17ca2379c4d'} && @Principal[Microsoft.Directory/TokenClaims:ApplicationACR] ForAllOfAnyValues:StringEqualsIgnoreCase {'1', '2'}\"\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-02T21:14:21.3331588Z\",\r\n \"updatedOn\": \"2022-09-10T00:44:34.5904437Z\",\r\n \"createdBy\": \"19669f00-ee56-44ec-94c3-83159a41292e\",\r\n \"updatedBy\": \"19669f00-ee56-44ec-94c3-83159a41292e\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/260691e6-68c2-47cf-bd4a-97d5fd4dbcd5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"260691e6-68c2-47cf-bd4a-97d5fd4dbcd5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AccessMonitoringReader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Allows AccessMonitoring read Data Plane Access on SQL db's for compliance purposes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/subscriptions/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"Microsoft.DataLakeStore/accounts/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-06T18:18:45.0067512Z\",\r\n \"updatedOn\": \"2023-07-27T15:48:06.4187179Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b0f576e-fc2e-4256-9aa3-6fede171d599\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CnAI Management Group Orchestrator Prod\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Allows management group orchestrators to move subscriptions into the proper management group hierarchies\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/write\",\r\n \"Microsoft.Management/managementGroups/delete\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/write\",\r\n \"Microsoft.Management/managementGroups/subscriptions/delete\",\r\n \"Microsoft.Management/register/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-25T00:58:13.7487093Z\",\r\n \"updatedOn\": \"2024-10-25T00:58:13.7487093Z\",\r\n \"createdBy\": \"7065961c-d3a8-4346-985c-12cd2dec2994\",\r\n \"updatedBy\": \"7065961c-d3a8-4346-985c-12cd2dec2994\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ebc6a08c-9436-41c0-98ea-9a98ce69e91c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ebc6a08c-9436-41c0-98ea-9a98ce69e91c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Orphaned Subscription Administrator CorpProd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Restore access to orphaned Azure subscriptions when service teams get locked out.\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-25T00:27:56.7010785Z\",\r\n \"updatedOn\": \"2025-01-25T00:27:56.7010785Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6fb9aae5-f1c6-400c-a250-c82bc5daac97\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6fb9aae5-f1c6-400c-a250-c82bc5daac97\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Corp Prod Policy Remediation Caller\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom role to automate policy remediation for Azure Security team.\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/policyassignments/read\",\r\n \"Microsoft.Authorization/policydefinitions/read\",\r\n \"Microsoft.Authorization/policyexemptions/read\",\r\n \"Microsoft.Authorization/policysetdefinitions/read\",\r\n \"Microsoft.PolicyInsights/remediations/read\",\r\n \"Microsoft.PolicyInsights/remediations/write\",\r\n \"Microsoft.PolicyInsights/policyStates/summarize/action\",\r\n \"Microsoft.PolicyInsights/policyStates/queryResults/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.PolicyInsights/remediations/listDeployments/read\",\r\n \"Microsoft.PolicyInsights/policyStates/summarize/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-02-03T20:04:07.3155642Z\",\r\n \"updatedOn\": \"2025-02-03T20:04:07.3155642Z\",\r\n \"createdBy\": \"319b9a8b-31b0-413f-8826-b1135db75bcb\",\r\n \"updatedBy\": \"319b9a8b-31b0-413f-8826-b1135db75bcb\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0034c645-cd1a-45a2-9f68-21c21eba9995\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0034c645-cd1a-45a2-9f68-21c21eba9995\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AzSecPackUAPolicyResourceContributorCorpProd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Resource contributor role for allowing the AzSecPack Policy to create and add user assigned identity to VM and VMSS resources.\",\r\n \"assignableScopes\": [\r\n \"/providers/microsoft.management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/locks/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.ManagedIdentity/register/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-30T22:27:31.9638459Z\",\r\n \"updatedOn\": \"2023-12-14T02:28:32.7704116Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd6e57ea-fe3c-4f21-bd1e-de170a9a4971\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SLNM-Admin-PolicyManagement-Prod\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Authorization/policyExemptions/*\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/register/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Network/virtualNetworks/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-28T21:15:26.3708294Z\",\r\n \"updatedOn\": \"2023-07-29T01:30:19.0147757Z\",\r\n \"createdBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\",\r\n \"updatedBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/47d81b3f-7139-46fc-a2e5-228265cc216c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47d81b3f-7139-46fc-a2e5-228265cc216c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SLNM-Teams-PolicyManagement-Prod\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/register/action\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-28T21:16:33.4696978Z\",\r\n \"updatedOn\": \"2023-07-28T21:16:33.4696978Z\",\r\n \"createdBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\",\r\n \"updatedBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cbdd6655-6341-491c-b01b-8b202175cee4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cbdd6655-6341-491c-b01b-8b202175cee4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NetIso-Reserve-Role-Prod\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-28T21:17:22.3124231Z\",\r\n \"updatedOn\": \"2023-07-28T21:17:22.3124231Z\",\r\n \"createdBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\",\r\n \"updatedBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/402b3d0b-63a7-4ca1-9ca1-56884c0dce6e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"402b3d0b-63a7-4ca1-9ca1-56884c0dce6e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Policy Enforcement Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"This role contains the required permissions in order to deploy Azure Policies. \",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Authorization/policyexemptions/*\",\r\n \"Microsoft.Authorization/policysetdefinitions/*\",\r\n \"Microsoft.PolicyInsights/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ManagedIdentity/register/action\",\r\n \"Microsoft.ManagedIdentity/operations/read\",\r\n \"Microsoft.ManagedIdentity/identities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/listAssociatedResources/action\",\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-10T21:51:09.3400496Z\",\r\n \"updatedOn\": \"2024-08-05T23:30:22.0289155Z\",\r\n \"createdBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"updatedBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6d224f7c-5c93-4466-b116-8c0c62090d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d224f7c-5c93-4466-b116-8c0c62090d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AzSecPackPolicyResourceContributor1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"This is required to deploy AzsecPack on VMSS in Corp for DSR scope\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/locks/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.ManagedIdentity/register/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-19T21:06:07.681423Z\",\r\n \"updatedOn\": \"2024-11-19T21:20:49.0643539Z\",\r\n \"createdBy\": \"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa\",\r\n \"updatedBy\": \"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a3fd983e-8bf0-4cd0-b63c-1670e6d5d142\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a3fd983e-8bf0-4cd0-b63c-1670e6d5d142\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Corp Tenant DevOps Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role for Developers. Learn more about the role here at https://microsoftit.visualstudio.com/OneITVSO/_wiki/wikis/OneITVSO.wiki/62284/Custom-DevOps-Role-in-the-Tenant \",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"/subscriptions/bd7d69a1-b6ed-4f53-8cc0-b0e20ba88bec\",\r\n \"/subscriptions/35bccea7-e59a-4141-af11-3f84a8bbc47b\",\r\n \"/subscriptions/f4fe620a-c862-40b3-9ad6-41e1d0b065c0\",\r\n \"/subscriptions/d8c3b15e-561c-4701-a24d-6c26916c8015\",\r\n \"/subscriptions/dc9a7b77-f933-44c7-bf43-3bfb4e16b806\",\r\n \"/subscriptions/9dcf4441-c85a-49b3-8fed-190a457d78ab\",\r\n \"/subscriptions/5df6ea0e-35e8-4a80-8b4f-e66c32206901\",\r\n \"/subscriptions/d651c991-0fd9-4b3f-9e43-18b19cc1caef\",\r\n \"/subscriptions/a5edef88-2407-4770-8ffc-d6b6fe88e991\",\r\n \"/subscriptions/34947903-f6ca-47ee-8b3f-9150424b9409\",\r\n \"/subscriptions/c0779592-f81d-4971-8210-11b7eb2b4521\",\r\n \"/subscriptions/bf295590-3a56-49eb-860c-bd9c58c54c97\",\r\n \"/subscriptions/094d7bec-6c2d-4f6a-b48e-253e7938079b\",\r\n \"/subscriptions/437771cb-be03-4775-be4d-e6bc4b3dd26b\",\r\n \"/subscriptions/c1051991-d1a4-499a-beff-c43ac416fae5\",\r\n \"/subscriptions/59e3af93-26f8-4ceb-ada6-12cf15432917\",\r\n \"/subscriptions/de647864-aa01-43c7-9e79-44d99dbaf600\",\r\n \"/subscriptions/66a51ed6-7d41-44bc-b157-17c686cd9834\",\r\n \"/subscriptions/8f4abf76-7436-4ca5-a23f-a5e1f46e6b9e\",\r\n \"/subscriptions/970dcf73-534e-4016-a2d3-5ffb67ca73c9\",\r\n \"/subscriptions/0932d378-8019-40b3-b79f-b90fdb70b693\",\r\n \"/subscriptions/0fa7b233-2cdc-4016-b710-332e2203aa72\",\r\n \"/subscriptions/3b07b0f5-a580-483b-bb97-8bae7e1922d0\",\r\n \"/subscriptions/b4aea4e0-ab49-4306-bdec-79dd2f82fb11\",\r\n \"/subscriptions/07949e3a-b9d8-4260-bd4e-d91770011b37\",\r\n \"/subscriptions/079094e3-62d7-41cb-9d8d-ee589c0d3b1a\",\r\n \"/subscriptions/cc78881b-f802-4c11-abec-77da2e7292f8\",\r\n \"/subscriptions/51ea416c-518d-404b-b5bf-4aedc5434703\",\r\n \"/subscriptions/026b2bce-d595-47c7-9ef1-752c97812939\",\r\n \"/subscriptions/30e77e63-38a6-4878-ac82-870d9e7b7766\",\r\n \"/subscriptions/9b5e424d-bc16-4de8-96d4-53971cee3712\",\r\n \"/subscriptions/ef43a4af-7f54-43f9-b719-95eb94a47f65\",\r\n \"/subscriptions/15d193d2-35f3-45b6-b2b9-36da94aaa685\",\r\n \"/subscriptions/efc79162-3917-410d-acee-8d321e8dfbf8\",\r\n \"/subscriptions/31578d3a-0c50-4772-b3d0-e14926cf92ce\",\r\n \"/subscriptions/6cde5ff1-3a5e-4049-97bd-c406be85757f\",\r\n \"/subscriptions/ffc9b38e-f392-4199-b78a-228e8b1fc55e\",\r\n \"/subscriptions/35fec563-1b85-4a37-8634-a137a147fdd0\",\r\n \"/subscriptions/07e4864a-c7ac-4d01-b871-7a3d839c5e1d\",\r\n \"/subscriptions/45d6d4e3-a5a4-4c3f-8000-02ff59b09160\",\r\n \"/subscriptions/aa39bf6b-714c-4101-b5a2-621f7709a418\",\r\n \"/subscriptions/f18772ba-70c6-4a6d-9487-94d5d6c748a7\",\r\n \"/subscriptions/9f31783a-fec8-4a93-97c1-98dc1a165450\",\r\n \"/subscriptions/4d084a92-7cfb-43bc-a6f9-ed06edd16511\",\r\n \"/subscriptions/11a4da08-b62a-483f-b979-adf4ba45d91c\",\r\n \"/subscriptions/38b10f14-fcf7-44a5-9c7b-5b9ee23112e8\",\r\n \"/subscriptions/b05df995-293e-4127-80a5-91b6d40ac974\",\r\n \"/subscriptions/463265e8-5883-4030-9970-06a09e6f88b2\",\r\n \"/subscriptions/a0514071-6217-4732-a455-5dd48feda5d6\",\r\n \"/subscriptions/740a38c5-c29e-46fa-9429-ac63f0458d27\",\r\n \"/subscriptions/a5f09b58-2eee-4581-a04c-b1835cb1c504\",\r\n \"/subscriptions/e1723936-f7e0-4a1b-aeab-051657be993f\",\r\n \"/subscriptions/31d62d8a-fd49-4c69-ba05-17074fd014ea\",\r\n \"/subscriptions/29bd15f9-864e-42bd-96d3-d8a4e13217bb\",\r\n \"/subscriptions/08ed568c-822f-4f2d-9327-e79bde1d18c1\",\r\n \"/subscriptions/30b82d14-deee-4a43-9fc6-cffc7a3b30e4\",\r\n \"/subscriptions/129e74a6-296c-4aa2-9dd1-8e0cac084b82\",\r\n \"/subscriptions/70e4848e-c8f5-4b67-bc02-f70a351d3fb2\",\r\n \"/subscriptions/45365076-23b2-4d64-94fc-c9fb80e2dd42\",\r\n \"/subscriptions/6c56ba99-71e0-4df4-a52e-043475f8ed8e\",\r\n \"/subscriptions/7e46b15d-66a5-403e-ac88-a4a766a1e57d\",\r\n \"/subscriptions/12ce730d-549e-418a-b3b8-cc4054e2eb95\",\r\n \"/subscriptions/5fd7b37c-f026-438c-a788-dbdfe868cdd0\",\r\n \"/subscriptions/4217be1d-910b-44b0-9147-3bb6564dd551\",\r\n \"/subscriptions/3745d715-178d-4095-a836-ce50eee920d9\",\r\n \"/subscriptions/1377ef46-7c91-4b79-9fe4-72c4d0b3cb09\",\r\n \"/subscriptions/d965b66c-70d4-4657-9bf5-2dc5a2d76cd6\",\r\n \"/subscriptions/4804f5a5-64d5-46ad-9ecd-8f282ceea436\",\r\n \"/subscriptions/4d0d5d1b-558f-41bb-9d75-8c094857a2cc\",\r\n \"/subscriptions/e4adac87-a66b-4c91-81f2-5700cfc0ca82\",\r\n \"/subscriptions/9a2bb142-ecbf-4116-9040-c11593bf4518\",\r\n \"/subscriptions/b51deab4-bcfb-4ad1-a683-2ec036cda3c7\",\r\n \"/subscriptions/60d8e7fb-441d-4e15-8df2-5cac7b3f8e6c\",\r\n \"/subscriptions/c47d1c0f-573d-4599-a62b-4e3bc5b5dfa7\",\r\n \"/subscriptions/95821bb2-07ec-474d-b3f4-19101a84928c\",\r\n \"/subscriptions/6f4726ec-3243-450a-ab6e-dea241bce603\",\r\n \"/subscriptions/71d13df0-8317-4abc-9e8c-b6a8b184f988\",\r\n \"/subscriptions/56d81792-6405-48e2-bac7-f882a2544655\",\r\n \"/subscriptions/9012adbe-0393-40d3-863c-371bfa435291\",\r\n \"/subscriptions/c96ec3e5-098c-4727-bd2a-ca941c3a18c3\",\r\n \"/subscriptions/3e0549f6-ac39-4666-b9f6-6a43a697e9ab\",\r\n \"/subscriptions/35a55dce-4df3-4970-82ed-e61d13b5193a\",\r\n \"/subscriptions/e68d353d-707b-4a29-bb8e-c1c786c6a62f\",\r\n \"/subscriptions/8d0bae2b-1f7f-4d3e-ba79-1d1480fd829c\",\r\n \"/subscriptions/348fe12a-d5bd-4b9d-af18-9709501620e7\",\r\n \"/subscriptions/d3c6015f-32e3-4db4-990b-7392abeb8a27\",\r\n \"/subscriptions/58a1ba20-bfb8-4932-b68b-fbbfb005fde6\",\r\n \"/subscriptions/a0fc0741-b20f-4501-92e9-201f1b810c55\",\r\n \"/subscriptions/554e0ec7-a5aa-4ca8-a0bd-34ab80c8a380\",\r\n \"/subscriptions/9266f2b2-e66f-4668-85d7-9f9a86c4b98a\",\r\n \"/subscriptions/d37a76cf-6c3e-4678-9b13-f9dc3cb78090\",\r\n \"/subscriptions/fb772509-8c20-49fb-84ec-178830f206e9\",\r\n \"/subscriptions/d544e7f3-13cb-4ac1-ae04-a3a16e4374ff\",\r\n \"/subscriptions/7a17b6e0-ef59-43c4-b177-d6dd2d8a7da7\",\r\n \"/subscriptions/0cf8a944-da83-498b-84bb-b760a38c8ced\",\r\n \"/subscriptions/3af94249-7078-44ac-9bcd-fde23bcc1476\",\r\n \"/subscriptions/987e6029-fd7c-482b-81ad-7714e25061fe\",\r\n \"/subscriptions/7bf02826-9700-4fa4-a7b6-5fa4d387f71b\",\r\n \"/subscriptions/e79e9657-7d75-43bd-babf-a61aa625dbcf\",\r\n \"/subscriptions/e1cab57b-074d-4a8c-9f8a-2466b87780f5\",\r\n \"/subscriptions/c13ce252-147b-451b-8df4-11b6a6a7df45\",\r\n \"/subscriptions/d115ecfa-2380-4f43-8217-15c88ecb07f5\",\r\n \"/subscriptions/e85aa023-1889-47df-85fd-128522fc4b51\",\r\n \"/subscriptions/135f12af-ea52-4fa2-8a6f-77b19c56d6af\",\r\n \"/subscriptions/c9d1d8e7-e466-43c0-ad5c-7c0032e38eb7\",\r\n \"/subscriptions/58f3f2bc-e034-48c8-b0ee-77a878fa1a63\",\r\n \"/subscriptions/58bf9f36-0655-4b2c-b756-0c316f427047\",\r\n \"/subscriptions/5e51d852-ec0e-40d8-ac5d-aecf031642b1\",\r\n \"/subscriptions/9585bbfc-6640-4156-b209-93af900dde91\",\r\n \"/subscriptions/137a7004-0fde-4647-b59a-26d95552a593\",\r\n \"/subscriptions/861baf30-028d-4e35-ac3b-7ad1bf687847\",\r\n \"/subscriptions/fa776a59-ead3-4d82-940e-c901ee93c2d1\",\r\n \"/subscriptions/91b32e2a-8c41-48c8-b955-4f87d6e097ea\",\r\n \"/subscriptions/f059d5f8-721c-43a3-bd7b-ab30db7e865b\",\r\n \"/subscriptions/aa7a31d5-17b2-45ff-9388-e510a09dea97\",\r\n \"/subscriptions/05cd13a2-bc17-4f2a-95c2-267e99dbc41b\",\r\n \"/subscriptions/d6042450-9a11-46aa-8162-b0f1e0cc51a7\",\r\n \"/subscriptions/661bdf1b-de4c-4a82-b230-44df73e4eabf\",\r\n \"/subscriptions/6a0ab98c-24d4-4131-8cd7-0a78bfce58f5\",\r\n \"/subscriptions/979eac51-1ffc-4abe-8545-06cce8b6b269\",\r\n \"/subscriptions/5532ccce-eedb-4693-a69a-e257dfa577ed\",\r\n \"/subscriptions/a17e6aeb-d3af-44df-b467-743d72a15afe\",\r\n \"/subscriptions/d261fd2c-575d-4171-92ac-a7933b52640d\",\r\n \"/subscriptions/d63d6055-5d29-4a49-80f2-2c927c97f9af\",\r\n \"/subscriptions/0b9996f5-6c37-45fc-8a36-2ea5e14ec817\",\r\n \"/subscriptions/853a32bf-1e5b-4e73-a66e-f916bd4ef53d\",\r\n \"/subscriptions/6e8b4640-ee52-4c9a-9b2d-70632af8c77a\",\r\n \"/subscriptions/cb938fd1-ac0f-41cf-93d8-f8e32e9f5813\",\r\n \"/subscriptions/c3ee728e-c8a2-4b7e-93f7-0dc02153aa36\",\r\n \"/subscriptions/f6e16017-430d-4dcd-b33e-318e2245e2e9\",\r\n \"/subscriptions/cd6952ff-6d79-46ac-843a-60c2fc294b47\",\r\n \"/subscriptions/c96e9129-1fd6-495c-b71f-a093bf71fa60\",\r\n \"/subscriptions/2a80a746-1f2c-4243-a907-893c430c5d54\",\r\n \"/subscriptions/2522b118-b802-4051-98cd-847c995ae80b\",\r\n \"/subscriptions/e03efd8f-ea1e-4b61-9c49-2d836f3271ec\",\r\n \"/subscriptions/2f96ae42-240b-4228-bafa-26d8b7b03bf3\",\r\n \"/subscriptions/2e354ed7-f5fd-4f99-b60f-a3ebd4482567\",\r\n \"/subscriptions/23348a16-94b6-485d-b6e0-cc2be5ceb7c9\",\r\n \"/subscriptions/e686ef8c-d35d-4e9b-92f8-caaaa7948c0a\",\r\n \"/subscriptions/18ea7af0-7b8f-4607-9d56-ed5f2199af9c\",\r\n \"/subscriptions/debf0b74-f38d-41ee-86d4-e32f5fe61a63\",\r\n \"/subscriptions/7ad2f9f6-d698-4555-b224-848d1b12bc70\",\r\n \"/subscriptions/d17aa664-a5af-4009-bf39-15a9d74694e2\",\r\n \"/subscriptions/30eec66c-faa0-4be5-9815-92ce84d823c4\",\r\n \"/subscriptions/f96af725-9b7a-430d-ba21-906d22261175\",\r\n \"/subscriptions/c6cd9b0a-c316-4077-abd5-35e5361c2d25\",\r\n \"/subscriptions/f7a2f965-1e92-42f9-86bc-8afc7cfed402\",\r\n \"/subscriptions/7fff4faf-711c-4f6f-93a1-6ef24ecb915f\",\r\n \"/subscriptions/184c7f6f-8b8d-41f0-af8b-7d70cc299b40\",\r\n \"/subscriptions/8060bce1-61d4-4ce6-b316-51c43345d07a\",\r\n \"/subscriptions/fd11355a-5c38-422b-8c1b-491ed835bd7d\",\r\n \"/subscriptions/918dbd49-004e-4237-88b8-970a7ab8d53b\",\r\n \"/subscriptions/6b2e18d1-b160-4a4e-a0b2-760f63bbeaa8\",\r\n \"/subscriptions/eeb71c0f-60e7-4af9-ad2f-fa74ada1d279\",\r\n \"/subscriptions/cfa70449-0aec-45b0-915d-05ff68a5a63a\",\r\n \"/subscriptions/e55faab3-5358-42f3-afc9-a5815d1f6dca\",\r\n \"/subscriptions/44584d97-85d5-4af6-af56-863d8ec5d981\",\r\n \"/subscriptions/9ccd8655-d203-48ef-addc-9aab55c1b516\",\r\n \"/subscriptions/1847007c-c1ee-437b-af15-6869df00d323\",\r\n \"/subscriptions/397c73c7-9504-4ac4-8671-63f567f82e54\",\r\n \"/subscriptions/34f53a1e-f24b-4069-a167-9f6e4dc4715a\",\r\n \"/subscriptions/df8ac0d4-fd78-4e33-b6db-4126b76f626e\",\r\n \"/subscriptions/7c2160d2-b265-477e-acae-cbcdf008528a\",\r\n \"/subscriptions/519b6516-fe76-49a1-8a1c-b6dc63ebe012\",\r\n \"/subscriptions/2921416e-8678-4d32-8fc0-02c1e36697a2\",\r\n \"/subscriptions/c90ab9b7-a529-47b0-bf8d-6a3676a8727c\",\r\n \"/subscriptions/0f2d4cb6-5ca5-425d-a60f-fa487d6e7a8e\",\r\n \"/subscriptions/c0cae64b-2a9a-4a29-802b-9e1fc9fd6482\",\r\n \"/subscriptions/53798337-4f7f-4b86-b33f-2ea699666b0e\",\r\n \"/subscriptions/1446ad93-18a8-40df-b2e3-ef04297f662c\",\r\n \"/subscriptions/d0953f3b-0f15-4755-b9dd-1a679702bb4a\",\r\n \"/subscriptions/0e43670d-05fa-49a6-a4ec-6c1f2673efe5\",\r\n \"/subscriptions/5c932b4b-50e7-416e-ba6f-a3c30c9e2730\",\r\n \"/subscriptions/f8a339ea-4445-4d69-a4bb-b7c77c9db241\",\r\n \"/subscriptions/b743f137-ec35-4ed8-bc10-edb637a3b87f\",\r\n \"/subscriptions/7f07c257-21bf-4dab-929d-d22739d9a3ec\",\r\n \"/subscriptions/4ec686e9-8507-4a50-be69-d3e90bf423fb\",\r\n \"/subscriptions/548bffe6-fbcc-48bd-9f34-7d7968f59140\",\r\n \"/subscriptions/14434c47-bdca-4bff-a98a-336189c06690\",\r\n \"/subscriptions/ccac4546-73ed-4f42-9731-64ff08060127\",\r\n \"/subscriptions/3b23f3ff-7d37-49e9-b4f4-1f0c1f14be7e\",\r\n \"/subscriptions/be0e9258-c18d-4ef2-9b72-d33f43d2cf92\",\r\n \"/subscriptions/9e38c377-beba-4aa4-8f08-7ee4b7b26191\",\r\n \"/subscriptions/d2f24647-7b0c-401a-8912-612851a17bef\",\r\n \"/subscriptions/da6b0bc4-900f-4eda-a21a-a7b44b14e5d8\",\r\n \"/subscriptions/04986ebf-9772-4271-b6ba-6e0f4fa89502\",\r\n \"/subscriptions/84fce9fa-1670-4e69-bc1e-6a7119383e22\",\r\n \"/subscriptions/ee871f2d-ea93-4fbe-9539-82897678d04d\",\r\n \"/subscriptions/da037679-0834-4c6a-8e77-45dc31a00912\",\r\n \"/subscriptions/27118d59-7468-412f-b406-b47d5a77ab94\",\r\n \"/subscriptions/5ee06237-c46c-4942-b8a7-a9da7879b9e9\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/locks/*\",\r\n \"Microsoft.Authorization/roleDefinitions/*\",\r\n \"Microsoft.AnalysisServices/servers/*\",\r\n \"Microsoft.Compute/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.Resources/*\",\r\n \"Microsoft.Storage/*\",\r\n \"Microsoft.ContainerService/*\",\r\n \"Microsoft.ContainerRegistry/*\",\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.AzureStack/registrations/products/*/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.CognitiveServices/*\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Consumption/*\",\r\n \"Microsoft.CostManagement/*\",\r\n \"Microsoft.Advisor/*\",\r\n \"Microsoft.Databox/*\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.DataFactory/factories/*\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/ensureCurrentUserProfile/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.DevTestLab/labs/virtualmachines/listApplicableSchedules/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/getRdpFileContents/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.EventGrid/eventSubscriptions/*\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.AAD/*/read\",\r\n \"Microsoft.AAD/domainServices/*/read\",\r\n \"Microsoft.AAD/domainServices/oucontainer/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.LabServices/labAccounts/*/read\",\r\n \"Microsoft.LabServices/labAccounts/createLab/action\",\r\n \"Microsoft.LabServices/labAccounts/getRegionalAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getPricingAndAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getRestrictionsAndUsage/action\",\r\n \"*/read\",\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/customApis/*\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.AlertsManagement/alerts/*\",\r\n \"Microsoft.AlertsManagement/alertsSummary/*\",\r\n \"Microsoft.Insights/actiongroups/*\",\r\n \"Microsoft.Insights/activityLogAlerts/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/scheduledqueryrules/*\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\r\n \"Microsoft.AlertsManagement/actionRules/*\",\r\n \"Microsoft.AlertsManagement/smartGroups/*\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Authorization/policysetdefinitions/*\",\r\n \"Microsoft.PolicyInsights/*\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationOperationStatus/read\",\r\n \"Microsoft.Network/networkSecurityGroups/*\",\r\n \"Microsoft.Network/routeTables/*\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/managedInstances/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/*\",\r\n \"Microsoft.Network/virtualNetworks/*\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.SqlVirtualMachine/*\",\r\n \"Microsoft.Web/serverFarms/*\",\r\n \"Microsoft.Web/hostingEnvironments/Join/Action\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/sites/*\",\r\n \"Microsoft.ServiceBus/*\",\r\n \"Microsoft.EventHub/*\",\r\n \"Microsoft.Attestation/attestationProviders/*\",\r\n \"Microsoft.HDInsight/*/read\",\r\n \"Microsoft.HDInsight/clusters/getGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/configurations/*\",\r\n \"Microsoft.Blueprint/blueprints/*\",\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/cases/*\",\r\n \"Microsoft.SecurityInsights/incidents/*\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.SignalRService/*\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.Solutions/applications/*\",\r\n \"Microsoft.Solutions/register/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*\",\r\n \"Microsoft.Marketplace/privateStores/write\",\r\n \"Microsoft.Marketplace/privateStores/action\",\r\n \"Microsoft.Marketplace/privateStores/delete\",\r\n \"Microsoft.Marketplace/privateStores/offers/write\",\r\n \"Microsoft.Marketplace/privateStores/offers/action\",\r\n \"Microsoft.Marketplace/privateStores/offers/delete\",\r\n \"Microsoft.ContainerService/managedClusters/read\",\r\n \"Microsoft.ContainerService/managedClusters/write\",\r\n \"Microsoft.Synapse/*\",\r\n \"Microsoft.Databricks/*\",\r\n \"Microsoft.AppConfiguration/*\",\r\n \"Microsoft.Portal/dashboards/*\",\r\n \"Microsoft.Insights/autoscalesettings/write\",\r\n \"Microsoft.Security/locations/jitNetworkAccessPolicies/initiate/action\",\r\n \"Microsoft.Security/locations/jitNetworkAccessPolicies/*/read\",\r\n \"Microsoft.Security/pricings/read\",\r\n \"Microsoft.Security/policies/read\",\r\n \"Microsoft.Batch/*\",\r\n \"Microsoft.MachineLearningServices/*\",\r\n \"Microsoft.Workloads/monitors/read\",\r\n \"Microsoft.Workloads/monitors/alerts/read\",\r\n \"Microsoft.Workloads/monitors/providerInstances/read\",\r\n \"Microsoft.Workloads/monitors/sapLandscapeMonitor/read\",\r\n \"Microsoft.Workloads/monitors/alertTemplates/read\",\r\n \"Microsoft.Workloads/connectors/sapVirtualInstanceMonitors/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-03T09:24:15.9792407Z\",\r\n \"updatedOn\": \"2025-01-14T19:34:28.859376Z\",\r\n \"createdBy\": \"6c97c2ad-503e-493a-8f41-7b4241e12cfe\",\r\n \"updatedBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2887825c-f6a0-4826-b855-e3ba7d5ebb16\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2887825c-f6a0-4826-b855-e3ba7d5ebb16\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrPush\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr push\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\",\r\n \"Microsoft.ContainerRegistry/registries/push/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-29T17:52:32.5201177Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:07.4993029Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8311e382-0749-4cb8-b61a-304f252e45ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8650193Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:08.3179618Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrPull\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr pull\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-22T19:01:56.8227182Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:08.8779328Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f951dda-4ed3-4680-a7ca-43fe172d538d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrImageSigner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr image signer\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/sign/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/trustedCollections/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-15T23:23:08.4038322Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:09.6070759Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6cef56e8-d556-48e5-a04f-b8e64114680f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6cef56e8-d556-48e5-a04f-b8e64114680f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrDelete\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr delete\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/artifacts/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-11T20:19:31.6682804Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:09.9631744Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c2f4ef07-c644-48eb-af81-4b1b4947fb11\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrQuarantineReader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr quarantine data reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantine/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-16T00:27:39.9596835Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:10.3188052Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cdda3590-29a3-44f6-95f2-9f980659eb04\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cdda3590-29a3-44f6-95f2-9f980659eb04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrQuarantineWriter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr quarantine data writer\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantine/read\",\r\n \"Microsoft.ContainerRegistry/registries/quarantine/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/read\",\r\n \"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-16T00:26:37.587182Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:11.3488079Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c8d4ff99-41c3-41a8-9f60-21dfdad59608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c8d4ff99-41c3-41a8-9f60-21dfdad59608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:11.5244023Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:11.8704466Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/generateLiveToken/read\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/scheduledqueryrules/*\",\r\n \"Microsoft.Insights/topology/read\",\r\n \"Microsoft.Insights/transactions/read\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:12.6428401Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:13.0034435Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Attestation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read the attestation provider properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\",\r\n \"Microsoft.Attestation/attestationProviders/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-25T19:42:59.157671Z\",\r\n \"updatedOn\": \"2024-07-12T17:55:22.4994343Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"SYSTEM\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd1bd22b-8476-40bc-a0bc-69b95687b9f3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd1bd22b-8476-40bc-a0bc-69b95687b9f3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobs/output/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:13.706566Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:13.8815461Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/linkedWorkspace/read\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Automation/automationAccounts/jobs/output/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:14.0515408Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can create and manage an Avere vFXT cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/proximityPlacementGroups/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/disks/*\",\r\n \"Microsoft.Network/*/read\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/*/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-18T20:00:58.9207889Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:14.2265665Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4f8fab4f-1852-4a58-a46a-8eaf358af14a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4f8fab4f-1852-4a58-a46a-8eaf358af14a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Used by the Avere vFXT cluster to manage the cluster\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-18T20:02:38.3399857Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:15.1065886Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster Admin Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster admin credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterAdminCredential/action\",\r\n \"Microsoft.ContainerService/managedClusters/accessProfiles/listCredential/action\",\r\n \"Microsoft.ContainerService/managedClusters/read\",\r\n \"Microsoft.ContainerService/managedClusters/runcommand/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-15T21:38:18.5953853Z\",\r\n \"updatedOn\": \"2022-05-17T03:53:30.0905246Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster user credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\",\r\n \"Microsoft.ContainerService/managedClusters/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-15T22:04:53.4037241Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:20.4351976Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4abbcc35-e782-43d8-92c5-2d3f1bd2253f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4abbcc35-e782-43d8-92c5-2d3f1bd2253f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read map related data from an Azure maps account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-05T19:47:03.472307Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:20.9582685Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/edgeSubscriptions/read\",\r\n \"Microsoft.AzureStack/registrations/products/*/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:23.295782Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backups, but can't delete vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/vaults/operationResults/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.DataProtection/locations/getBackupStatus/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/delete\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/deletedBackupInstances/undelete/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/crossRegionRestore/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/validateCrossRegionRestore/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJobs/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJob/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchSecondaryRecoveryPoints/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/delete\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/write\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/backupVaults/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/operationStatus/read\",\r\n \"Microsoft.DataProtection/locations/checkNameAvailability/action\",\r\n \"Microsoft.DataProtection/locations/checkFeatureSupport/action\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/locations/operationStatus/read\",\r\n \"Microsoft.DataProtection/locations/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\r\n \"Microsoft.DataProtection/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/delete\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/unlockDelete/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/unlockDelete/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/validateForModifyBackup/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/SuspendBackups/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2025-01-28T16:08:58.1344364Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:24.5342563Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrJobs/action\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrJob/action\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrOperationResults/read\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrOperationsStatus/read\",\r\n \"Microsoft.DataProtection/locations/getBackupStatus/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/backupVaults/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/operationStatus/read\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/locations/operationStatus/read\",\r\n \"Microsoft.DataProtection/locations/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\r\n \"Microsoft.DataProtection/operations/read\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJobs/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJob/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchSecondaryRecoveryPoints/action\",\r\n \"Microsoft.DataProtection/locations/checkFeatureSupport/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2024-05-02T15:31:35.9703937Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blockchain Member Node Access (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for access to Blockchain Member nodes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Blockchain/blockchainMembers/transactionNodes/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Blockchain/blockchainMembers/transactionNodes/connect/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T10:33:01.9604839Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:25.055892Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/31a002a1-acaf-453e-8a5b-297c9ca1ea24\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"31a002a1-acaf-453e-8a5b-297c9ca1ea24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:25.2359269Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can't grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2023-12-08T08:08:47.9865402Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN and Azure Front Door standard and premium profiles and their endpoints, but can't grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2023-12-07T16:26:04.2259189Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can't make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Cdn/profiles/afdendpoints/validateCustomDomain/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Cdn/profiles/CheckResourceUsage/action\",\r\n \"Microsoft.Cdn/profiles/endpoints/CheckResourceUsage/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2024-01-29T16:00:37.3526635Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:26.4433301Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:26.6183566Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:26.9796021Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:27.1646373Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-04-25T00:37:56.5416086Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:27.3446332Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and list keys of Cognitive Services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/listkeys/action\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-08T23:23:43.7701274Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:27.5316443Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a97b65f3-24c7-4388-baec-2e87135dc908\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read Cognitive Services data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-13T20:02:12.6849986Z\",\r\n \"updatedOn\": \"2024-10-11T18:50:23.3642018Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b59867f0-fa02-499b-be73-45a86b5b3e1c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b59867f0-fa02-499b-be73-45a86b5b3e1c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create, read, update, delete and manage keys of Cognitive Services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.CognitiveServices/*\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/providers/features/register/action\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-08T23:18:39.2257848Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:27.911623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CosmosBackupOperator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can submit restore request for a Cosmos DB database or a container for an account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/backup/action\",\r\n \"Microsoft.DocumentDB/databaseAccounts/restore/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-07T19:47:14.965156Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:28.4333692Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/db7b14f2-5adf-42da-9f96-f2ee17bab5cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db7b14f2-5adf-42da-9f96-f2ee17bab5cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all resources, but does not allow you to assign roles in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\",\r\n \"Microsoft.Compute/galleries/share/action\",\r\n \"Microsoft.Purview/consents/write\",\r\n \"Microsoft.Purview/consents/delete\",\r\n \"Microsoft.Resources/deploymentStacks/manageDenySetting/action\",\r\n \"Microsoft.Subscription/cancel/action\",\r\n \"Microsoft.Subscription/enable/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2024-11-20T20:16:17.1646587Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Insights/MetricDefinitions/read\",\r\n \"Microsoft.Insights/Metrics/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:28.7911765Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cost Management Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view costs and manage cost configuration (e.g. budgets, exports)\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Consumption/*\",\r\n \"Microsoft.CostManagement/*\",\r\n \"Microsoft.Billing/billingPeriods/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Billing/billingProperty/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-14T16:09:22.8834827Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:29.4851851Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"434105ed-43f6-45c7-a02f-909b2ba83430\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cost Management Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view cost data and configuration (e.g. budgets, exports)\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Billing/billingPeriods/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Billing/billingProperty/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-14T16:09:22.8834827Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:29.66018Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/72fafb9e-0641-4937-9268-a91bfd8191a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"72fafb9e-0641-4937-9268-a91bfd8191a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Box Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything under Data Box Service except giving access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Databox/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T08:28:42.714021Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:30.3737856Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/add466c9-e687-43fc-8d98-dfcf8d720be5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"add466c9-e687-43fc-8d98-dfcf8d720be5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Box Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Data Box Service except creating order or editing order details and giving access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Databox/*/read\",\r\n \"Microsoft.Databox/jobs/listsecrets/action\",\r\n \"Microsoft.Databox/jobs/listcredentials/action\",\r\n \"Microsoft.Databox/locations/availableSkus/action\",\r\n \"Microsoft.Databox/locations/validateInputs/action\",\r\n \"Microsoft.Databox/locations/regionConfiguration/action\",\r\n \"Microsoft.Databox/locations/validateAddress/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T08:26:21.9284772Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:30.5546117Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.DataFactory/factories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:30.7420174Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Purger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can purge analytics data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Insights/components/purge/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/purge/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-04-30T22:39:49.61677Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:31.2788395Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/150f5e0c-0603-4f03-8c7f-cf70034c4e90\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"150f5e0c-0603-4f03-8c7f-cf70034c4e90\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:31.4688491Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/ensureCurrentUserProfile/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.DevTestLab/labs/virtualmachines/listApplicableSchedules/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/getRdpFileContents/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:32.1746507Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:32.3496502Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:32.5233957Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid EventSubscription Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage EventGrid event subscription operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/*\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-08T23:27:28.3130743Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:33.4166738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/428e0ff0-5e57-4d9c-a221-2c70d0e0a443\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"428e0ff0-5e57-4d9c-a221-2c70d0e0a443\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid EventSubscription Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read EventGrid event subscriptions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-09T17:29:28.1417894Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:33.7846748Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2414bbcf-6497-4faf-8c65-045460748405\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2414bbcf-6497-4faf-8c65-045460748405\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Graph Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage all aspects of the Enterprise Graph - Ontology, Schema mapping, Conflation and Conversational AI and Ingestions\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/conflation/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/conflation/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ontology/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ontology/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/delete\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-23T21:07:22.5844236Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:34.6707886Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b60367af-1334-4454-b71e-769d9a4f83d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b60367af-1334-4454-b71e-769d9a4f83d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Domain Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Read, Create, Modify and Delete Domain Services related operations needed for HDInsight Enterprise Security Package\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AAD/*/read\",\r\n \"Microsoft.AAD/domainServices/*/read\",\r\n \"Microsoft.AAD/domainServices/oucontainer/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-12T22:42:51.7451109Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:35.3921342Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8d8d5a11-05d3-4bda-a417-a08778121c7c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d8d5a11-05d3-4bda-a417-a08778121c7c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:35.9371582Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\",\r\n \"Microsoft.KeyVault/hsmPools/*\",\r\n \"Microsoft.KeyVault/managedHsms/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-25T17:08:28.5184971Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:36.1170988Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Knowledge Consumer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Knowledge Read permission to consume Enterprise Graph Knowledge using entity search and graph query\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-23T21:23:31.4037552Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:37.0021342Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ee361c5d-f7b5-4119-b4b6-892157c8f64c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee361c5d-f7b5-4119-b4b6-892157c8f64c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Creator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create new labs under your Azure Lab Accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.LabServices/labAccounts/*/read\",\r\n \"Microsoft.LabServices/labAccounts/createLab/action\",\r\n \"Microsoft.LabServices/labAccounts/getPricingAndAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getRestrictionsAndUsage/action\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.LabServices/labPlans/images/read\",\r\n \"Microsoft.LabServices/labPlans/read\",\r\n \"Microsoft.LabServices/labPlans/saveImage/action\",\r\n \"Microsoft.LabServices/labs/read\",\r\n \"Microsoft.LabServices/labs/schedules/read\",\r\n \"Microsoft.LabServices/labs/users/read\",\r\n \"Microsoft.LabServices/labs/virtualMachines/read\",\r\n \"Microsoft.LabServices/locations/usages/read\",\r\n \"Microsoft.LabServices/skus/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.LabServices/labPlans/createLab/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-01-18T23:38:58.1036141Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:37.1821588Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:37.7071371Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:37.8823618Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/metricAlerts/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/customApis/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:38.0573444Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/customApis/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:38.2523833Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Application Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and perform actions on Managed Application resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Solutions/applications/read\",\r\n \"Microsoft.Solutions/*/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T00:59:33.7988813Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:38.5973763Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7393b34-138c-406f-901b-d8cf2b17e6ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Applications Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read resources in a managed app and request JIT access.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Solutions/jitRequests/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-06T00:33:58.3651522Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:38.7723523Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b9331d33-8a36-4f8c-b097-4f54124fdb44\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b9331d33-8a36-4f8c-b097-4f54124fdb44\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Identity Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and Assign User Assigned Identity\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-14T19:52:04.3924594Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:38.9523759Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f1a07417-d97a-45cb-824c-7a7467783830\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Identity Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, Read, Update, and Delete User Assigned Identity\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/delete\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/revokeTokens/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-14T19:53:42.8804692Z\",\r\n \"updatedOn\": \"2024-04-01T15:29:15.7643919Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Management Group Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Management Group Contributor Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/delete\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/delete\",\r\n \"Microsoft.Management/managementGroups/subscriptions/write\",\r\n \"Microsoft.Management/managementGroups/write\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-06-22T00:28:29.0523964Z\",\r\n \"updatedOn\": \"2022-09-19T17:12:03.7729883Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Management Group Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Management Group Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-06-22T00:31:03.4295347Z\",\r\n \"updatedOn\": \"2022-09-19T17:12:03.7729883Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ac63b705-f282-497d-ac71-919bf39d939d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ac63b705-f282-497d-ac71-919bf39d939d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2022-09-06T19:22:59.9084089Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:44.6328966Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:45.7178576Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all resources, including the ability to assign roles in Azure RBAC.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:45.8978856Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View all resources, but does not allow you to make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:47.8628684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/register/action\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:48.0528671Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader and Data Access\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything but will not let you delete or create a storage account or contained resource. It will also allow read/write access to all data contained in a storage account via access to storage account keys.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/ListAccountSas/action\",\r\n \"Microsoft.Storage/storageAccounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-27T23:20:46.1498906Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:48.2278951Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c12c1c16-33a1-487b-954d-41c89c60f349\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c12c1c16-33a1-487b-954d-41c89c60f349\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Users with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Authorization/policyexemptions/*\",\r\n \"Microsoft.Authorization/policysetdefinitions/*\",\r\n \"Microsoft.PolicyInsights/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2023-05-17T15:23:09.911944Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:49.8429293Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:50.0229309Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager (Legacy)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This is a legacy role. Please use Security Administrator instead\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:50.5729549Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.IoTSecurity/*/read\",\r\n \"Microsoft.Support/*/read\",\r\n \"Microsoft.Security/iotDefenderSettings/packageDownloads/action\",\r\n \"Microsoft.Security/iotDefenderSettings/downloadManagerActivation/action\",\r\n \"Microsoft.Security/iotSensors/downloadResetPassword/action\",\r\n \"Microsoft.IoTSecurity/defenderSettings/packageDownloads/action\",\r\n \"Microsoft.IoTSecurity/defenderSettings/downloadManagerActivation/action\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:50.7479015Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage spatial anchors in your account, but not delete them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:41.1420864Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:52.28294Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery service except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationVaultSettings/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationOperationStatus/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:52.4579503Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/switchprotection/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationVaultSettings/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:52.6263418Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you locate and read properties of spatial anchors in your account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:42.9271004Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:52.8013467Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d51204f-eb77-4b1c-b86a-2ec626c49413\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d51204f-eb77-4b1c-b86a-2ec626c49413\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationVaultSettings/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:52.9763366Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage spatial anchors in your account, including deleting them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/delete\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:43.5489832Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:53.166325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/70bbe301-9835-447d-afdd-19eb3167307c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70bbe301-9835-447d-afdd-19eb3167307c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Managed Instance Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL Managed Instances and required network configuration, but can’t give access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/*\",\r\n \"Microsoft.Network/routeTables/*\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/locations/instanceFailoverGroups/*\",\r\n \"Microsoft.Sql/managedInstances/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/*\",\r\n \"Microsoft.Network/virtualNetworks/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/delete\",\r\n \"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-10T22:57:14.2937983Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:53.3513507Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/ledgerDigestUploads/write\",\r\n \"Microsoft.Sql/servers/databases/ledgerDigestUploads/disable/action\",\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:53.5363219Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/administratorAzureAsyncOperation/read\",\r\n \"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/servers/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/transparentDataEncryption/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/serverConfigurationOptions/read\",\r\n \"Microsoft.Sql/managedInstances/serverConfigurationOptions/write\",\r\n \"Microsoft.Sql/locations/serverConfigurationOptionAzureAsyncOperation/read\",\r\n \"Microsoft.Sql/servers/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/servers/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/extendedAuditingSettings/read\",\r\n \"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/read\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/transparentDataEncryption/*\",\r\n \"Microsoft.Sql/servers/databases/sqlvulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/devOpsAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/sqlvulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/servers/azureADOnlyAuthentications/*\",\r\n \"Microsoft.Sql/managedInstances/read\",\r\n \"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/*\",\r\n \"Microsoft.Security/sqlVulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/administrators/read\",\r\n \"Microsoft.Sql/servers/administrators/read\",\r\n \"Microsoft.Sql/servers/databases/ledgerDigestUploads/*\",\r\n \"Microsoft.Sql/locations/ledgerDigestUploadsAzureAsyncOperation/read\",\r\n \"Microsoft.Sql/locations/ledgerDigestUploadsOperationResults/read\",\r\n \"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-16T18:44:40.4607572Z\",\r\n \"updatedOn\": \"2023-03-03T16:46:08.5009876Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, including accessing storage account keys which provide full access to storage account data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:54.2363539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/devOpsAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/azureADOnlyAuthentications/delete\",\r\n \"Microsoft.Sql/servers/azureADOnlyAuthentications/write\",\r\n \"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/delete\",\r\n \"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2022-04-29T01:12:26.9132276Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:54.7697481Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write and delete access to Azure Storage blob containers and data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/move/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:54.9397456Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ba92f5b4-2d11-453d-a403-e96b0029c9fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Storage blob containers and data, including assigning POSIX access control.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/*\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-04T07:02:58.2775257Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:55.1225062Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b7e6dc6d-f1e8-4753-8033-0f276bb0955b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage blob containers and data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:55.2975076Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access to Azure Storage queues and queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/delete\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/delete\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/write\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:55.4725469Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"974c5e8b-45b9-4653-ba55-5f855dd0fb88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Message Processor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for peek, receive, and delete access to Azure Storage queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-01-28T22:27:04.8947111Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:55.6575408Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8a0f0c08-91a1-4084-bc3d-661d67233fed\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8a0f0c08-91a1-4084-bc3d-661d67233fed\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Message Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for sending of Azure Storage queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/add/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-01-28T22:28:34.7459724Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:55.8325508Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage queues and queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:56.0178497Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/19e7f393-937e-4f77-808e-94535e297925\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19e7f393-937e-4f77-808e-94535e297925\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:56.7444481Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:57.2744497Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:57.7932023Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they're connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.Compute/cloudServices/*\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/hostgroups/write\",\r\n \"Microsoft.Compute/hostgroups/hosts/write\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.SerialConsole/serialPorts/connect/action\",\r\n \"Microsoft.SqlVirtualMachine/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2025-02-07T01:41:33.5037612Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\",\r\n \"Microsoft.Web/hostingEnvironments/Join/Action\",\r\n \"Microsoft.Insights/autoscalesettings/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2022-09-05T17:12:49.4643439Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/register/action\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-05-12T23:10:23.6193952Z\",\r\n \"updatedOn\": \"2024-08-06T15:15:41.2486928Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-16T21:33:36.7445745Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:59.2005807Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c5cfd-751d-490a-894a-3ce6f1109419\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-16T21:34:29.8656362Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:59.3721538Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f526a384-b230-433a-b45c-95f59c4a2dec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f526a384-b230-433a-b45c-95f59c4a2dec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Attestation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read write or delete the attestation provider instance\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/write\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-19T00:24:09.3354177Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:59.7271218Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Cluster Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and modify HDInsight cluster configurations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HDInsight/*/read\",\r\n \"Microsoft.HDInsight/clusters/getGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/configurations/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-20T00:03:01.7110732Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:59.905218Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/61ed4efc-fab3-44fd-b111-e24485cc132a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"61ed4efc-fab3-44fd-b111-e24485cc132a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Cosmos DB accounts, but not access data in them. Prevents access to account keys and connection strings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlyKeys/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/regenerateKey/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listKeys/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listConnectionStrings/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/delete\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments/delete\",\r\n \"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions/delete\",\r\n \"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-26T17:01:17.0169383Z\",\r\n \"updatedOn\": \"2024-01-11T16:37:07.4446986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"230815da-be43-4aae-9cb4-875f7bd000aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hybrid Server Resource Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, write, delete, and re-onboard Hybrid servers to the Hybrid Resource Provider.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/*\",\r\n \"Microsoft.HybridCompute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-29T21:39:32.3132923Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:00.2548257Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/48b40c6e-82e0-4eb3-90d5-19e40f49b624\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48b40c6e-82e0-4eb3-90d5-19e40f49b624\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hybrid Server Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can onboard new Hybrid servers to the Hybrid Resource Provider.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-29T22:36:28.1873756Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:00.4308999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows receive access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*/eventhubs/consumergroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:25:21.1056666Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:01.3225169Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a638d3c7-ab3a-418d-83e6-5f17a39d4fde\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a638d3c7-ab3a-418d-83e6-5f17a39d4fde\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows send access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*/eventhubs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:26:12.4673714Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:01.4925583Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2b629674-e913-4c01-ae53-ef4638d8f975\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for receive access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*/queues/read\",\r\n \"Microsoft.ServiceBus/*/topics/read\",\r\n \"Microsoft.ServiceBus/*/topics/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:43:01.6343849Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:01.6629685Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for send access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*/queues/read\",\r\n \"Microsoft.ServiceBus/*/topics/read\",\r\n \"Microsoft.ServiceBus/*/topics/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:43:46.7046934Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:01.8479199Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure File Share over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-01T20:19:31.8620471Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:04.3642909Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/aba4ae5f-2193-4029-9191-0cb91df5e314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"aba4ae5f-2193-4029-9191-0cb91df5e314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access in Azure Storage file shares over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-01T20:54:35.483431Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:04.5443323Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Private DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage private DNS zone resources, but not the virtual networks they are linked to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/privateDnsZones/*\",\r\n \"Microsoft.Network/privateDnsOperationResults/*\",\r\n \"Microsoft.Network/privateDnsOperationStatuses/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-10T19:31:15.5645518Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:04.7342851Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b12aa53e-6015-4669-85d0-8515ebb3ae7f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Delegator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for generation of a user delegation key which can be used to sign SAS tokens\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-23T00:51:16.3376761Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:05.4321714Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/db58b8e5-c6ad-4a2a-8342-4190687cbf4a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db58b8e5-c6ad-4a2a-8342-4190687cbf4a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user to use the applications in an application group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DesktopVirtualization/applicationGroups/useApplications/action\",\r\n \"Microsoft.DesktopVirtualization/appAttachPackages/useApplications/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-07T00:29:03.8727621Z\",\r\n \"updatedOn\": \"2023-06-19T15:07:13.5369989Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Elevated Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, delete and modify NTFS permission access in Azure Storage file shares over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-07T01:35:36.9935457Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:06.1571744Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a7264617-510b-434b-a828-9731dc254ea7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7264617-510b-434b-a828-9731dc254ea7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blueprint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage blueprint definitions, but not assign them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Blueprint/blueprints/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-14T21:55:16.9683949Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:06.5171828Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/41077137-e803-4205-871c-5a86e6a753b4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41077137-e803-4205-871c-5a86e6a753b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blueprint Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can assign existing published blueprints, but cannot create new blueprints. NOTE: this only works if the assignment is done with a user-assigned managed identity.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Blueprint/blueprintAssignments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-14T21:56:48.7897875Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:06.6971401Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/437d2ced-4a38-4302-8479-ed2bcb43d090\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"437d2ced-4a38-4302-8479-ed2bcb43d090\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Sentinel Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft Sentinel Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.OperationalInsights/querypacks/*/read\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.Insights/myworkbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\r\n \"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:39:03.8725173Z\",\r\n \"updatedOn\": \"2022-08-02T00:12:09.1707121Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ab8e14d6-4a74-4a29-9ba8-549422addade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Sentinel Responder\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft Sentinel Responder\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\r\n \"Microsoft.SecurityInsights/automationRules/*\",\r\n \"Microsoft.SecurityInsights/cases/*\",\r\n \"Microsoft.SecurityInsights/incidents/*\",\r\n \"Microsoft.SecurityInsights/entities/runPlaybook/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/bulkTag/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/indicators/replaceTags/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/systems/undoAction/action\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.OperationalInsights/querypacks/*/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Insights/myworkbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.SecurityInsights/cases/*/Delete\",\r\n \"Microsoft.SecurityInsights/incidents/*/Delete\",\r\n \"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\r\n \"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:54:07.6467264Z\",\r\n \"updatedOn\": \"2024-04-04T15:52:09.7970103Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Sentinel Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft Sentinel Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/LinkedServices/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/querypacks/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Insights/myworkbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/templateSpecs/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\r\n \"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:58:50.1132117Z\",\r\n \"updatedOn\": \"2022-08-02T00:12:09.1707121Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Policy Insights Data Writer (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to resource policies and write access to resource component policy events.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/policyassignments/read\",\r\n \"Microsoft.Authorization/policydefinitions/read\",\r\n \"Microsoft.Authorization/policyexemptions/read\",\r\n \"Microsoft.Authorization/policysetdefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.PolicyInsights/checkDataPolicyCompliance/action\",\r\n \"Microsoft.PolicyInsights/policyEvents/logDataEvents/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-19T19:35:20.9504127Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:09.4235132Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/66bb4e9e-b016-4a94-8249-4c0511c2be84\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"66bb4e9e-b016-4a94-8249-4c0511c2be84\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR AccessKey Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read SignalR Service Access Keys\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SignalRService/*/read\",\r\n \"Microsoft.SignalRService/SignalR/listkeys/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-20T09:33:19.6236874Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:09.613486Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/04165923-9d83-45d5-8227-78b77b0a687e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04165923-9d83-45d5-8227-78b77b0a687e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR/Web PubSub Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, Read, Update, and Delete SignalR service resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SignalRService/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-20T09:58:09.0009662Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:09.7884765Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can onboard Azure Connected Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/settings/read\",\r\n \"Microsoft.HybridCompute/settings/write\",\r\n \"Microsoft.HybridCompute/gateways/read\",\r\n \"Microsoft.HybridCompute/privateLinkScopes/read\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T20:15:07.137287Z\",\r\n \"updatedOn\": \"2025-02-03T16:08:25.0326897Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Services Registration assignment Delete Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Managed Services Registration Assignment Delete Role allows the managing tenant users to delete the registration assignment assigned to their tenant.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedServices/registrationAssignments/read\",\r\n \"Microsoft.ManagedServices/registrationAssignments/delete\",\r\n \"Microsoft.ManagedServices/operationStatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T22:33:33.1183469Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:11.23364Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/91c1777a-f3dc-4fae-b103-61d183457e46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"91c1777a-f3dc-4fae-b103-61d183457e46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows full access to App Configuration data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/write\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/delete\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/useSasAuth/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-25T18:41:40.1185063Z\",\r\n \"updatedOn\": \"2024-10-28T15:14:04.6443673Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to App Configuration data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-25T18:45:33.7975332Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:11.5885341Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"516239f1-63e1-4d78-a4de-a74fb236a071\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Cluster - Azure Arc Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role definition to authorize any user/service to create connectedClusters resource\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-11-18T17:00:02.2087147Z\",\r\n \"updatedOn\": \"2024-11-01T01:37:05.9804902Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/34e09817-6cbe-4d01-b1a2-e0eac5743d41\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"34e09817-6cbe-4d01-b1a2-e0eac5743d41\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-13T00:08:08.6679591Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:14.6454147Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a22b-edd6ce5c915c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services QnA Maker Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let’s you read and test a KB only.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-17T18:26:12.3329439Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:14.8254033Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/466ccd10-b268-4a11-b098-b4849f024126\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"466ccd10-b268-4a11-b098-b4849f024126\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services QnA Maker Editor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let’s you create, edit, import and export a KB. You cannot publish or delete a KB.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/operations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/operations/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/operations/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-17T18:27:30.6434556Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:14.9961559Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f4cc2bf9-21be-47a1-bdf1-5c5804381025\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f4cc2bf9-21be-47a1-bdf1-5c5804381025\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/admin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experimentadmin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/admin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/metricwrite/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/metricwrite/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-18T22:46:33.1116612Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:15.1811577Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a33b-edd6ce5c915c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Remote Rendering Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with conversion, manage session, rendering and diagnostics capabilities for Azure Remote Rendering\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-23T18:15:31.3450348Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:16.7621737Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3df8b902-2a6f-47c7-8cc5-360e9b272a7e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3df8b902-2a6f-47c7-8cc5-360e9b272a7e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Remote Rendering Client\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with manage session, rendering and diagnostics capabilities for Azure Remote Rendering.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-23T18:32:52.7069824Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:16.9421512Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d39065c4-c120-43c9-ab0a-63eed9795f0a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d39065c4-c120-43c9-ab0a-63eed9795f0a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Application Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for creating managed application resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Solutions/applications/*\",\r\n \"Microsoft.Solutions/register/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-08T03:39:11.8933879Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:19.1271536Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/641177b8-a67a-45b9-a033-47bc880bb21e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"641177b8-a67a-45b9-a033-47bc880bb21e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Assessment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you push assessments to Security Center\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Security/assessments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-13T08:23:47.7656161Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:19.3021974Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/612c2aa1-cb24-443b-ac28-3ab7272de6f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"612c2aa1-cb24-443b-ac28-3ab7272de6f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Tag Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage tags on entities, without providing access to the entities themselves.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/tags/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-18T23:19:19.2977644Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:20.0172041Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4a9ae827-6dc8-4573-8ac7-8239d42aa03f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Integration Service Environment Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows developers to create and update workflows, integration accounts and API connections in integration service environments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/read\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/*/join/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-20T21:09:00.5627875Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:20.1871986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Integration Service Environment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage integration service environments, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-20T21:10:44.4008319Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:20.3622058Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a41e2c5b-bd99-4a07-88f4-9bf657a760b8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a41e2c5b-bd99-4a07-88f4-9bf657a760b8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read and write Azure Kubernetes Service clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ContainerService/locations/*\",\r\n \"Microsoft.ContainerService/managedClusters/*\",\r\n \"Microsoft.ContainerService/managedclustersnapshots/*\",\r\n \"Microsoft.ContainerService/snapshots/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T19:27:15.073997Z\",\r\n \"updatedOn\": \"2024-06-26T15:35:04.3821443Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Digital Twins Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only role for Digital Twins data-plane properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DigitalTwins/digitaltwins/read\",\r\n \"Microsoft.DigitalTwins/digitaltwins/relationships/read\",\r\n \"Microsoft.DigitalTwins/eventroutes/read\",\r\n \"Microsoft.DigitalTwins/jobs/import/read\",\r\n \"Microsoft.DigitalTwins/jobs/imports/read\",\r\n \"Microsoft.DigitalTwins/jobs/deletions/read\",\r\n \"Microsoft.DigitalTwins/models/read\",\r\n \"Microsoft.DigitalTwins/query/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-10T23:48:14.7057381Z\",\r\n \"updatedOn\": \"2024-01-11T19:37:51.2477819Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d57506d4-4c8d-48b1-8587-93c323f6a5a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d57506d4-4c8d-48b1-8587-93c323f6a5a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Digital Twins Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access role for Digital Twins data-plane\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DigitalTwins/digitaltwins/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/commands/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\r\n \"Microsoft.DigitalTwins/eventroutes/*\",\r\n \"Microsoft.DigitalTwins/jobs/*\",\r\n \"Microsoft.DigitalTwins/models/*\",\r\n \"Microsoft.DigitalTwins/query/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-10T23:49:33.782193Z\",\r\n \"updatedOn\": \"2022-09-08T01:58:14.2969628Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bcd981a7-7f74-457b-83e1-cceb9e632ffe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bcd981a7-7f74-457b-83e1-cceb9e632ffe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hierarchy Settings Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows users to edit and delete Hierarchy Settings\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/settings/write\",\r\n \"Microsoft.Management/managementGroups/settings/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-13T23:55:11.0212387Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:23.0882347Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/350f8d15-c687-4448-8ae1-157740a3936d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"350f8d15-c687-4448-8ae1-157740a3936d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal full access to FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/*\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/smart/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/smart/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:35:04.4949547Z\",\r\n \"updatedOn\": \"2023-08-21T15:00:43.2797853Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5a1fc7df-4bf1-4951-a576-89034ee01acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5a1fc7df-4bf1-4951-a576-89034ee01acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Exporter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and export FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/export/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/export/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:45:01.9764073Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:23.7992557Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3db33094-8700-4567-8da5-1501d4e7e843\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3db33094-8700-4567-8da5-1501d4e7e843\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:49:04.8353499Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:23.9692275Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4c8d0bbc-75d3-4935-991f-5f3c56d81508\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4c8d0bbc-75d3-4935-991f-5f3c56d81508\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and write FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/write\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/delete\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/export/action\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/resourceValidate/action\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/reindex/action\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/convertData/action\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/editProfileDefinitions/action\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/import/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/write\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/delete\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/export/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/resourceValidate/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/reindex/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/convertData/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/editProfileDefinitions/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/import/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:55:35.2413335Z\",\r\n \"updatedOn\": \"2023-07-26T15:17:52.9401577Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3f88fce4-5892-4214-ae73-ba5294559913\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3f88fce4-5892-4214-ae73-ba5294559913\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-25T18:05:14.8375678Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:24.504239Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Object Understanding Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with ingestion capabilities for Azure Object Understanding.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/action\",\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-22T19:15:09.0697923Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:26.8743132Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4dd61c23-6743-42fe-a388-d8bdd41cb745\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4dd61c23-6743-42fe-a388-d8bdd41cb745\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read, write, and delete access to map related data from an Azure maps account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/*/read\",\r\n \"Microsoft.Maps/accounts/*/write\",\r\n \"Microsoft.Maps/accounts/*/delete\",\r\n \"Microsoft.Maps/accounts/*/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-07T20:55:05.064541Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:28.3092598Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to the project, including the ability to view, create, edit, or delete projects.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-08T23:47:07.0779345Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:28.8342655Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Deployment\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Publish, unpublish or export models. Deployment can view the project but can’t update.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/publish/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/export/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/quicktest/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/classify/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/detect/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:31:05.952862Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:29.0142669Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5c4089e1-6d96-4d2f-b296-c1bc7137275f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5c4089e1-6d96-4d2f-b296-c1bc7137275f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Labeler\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, edit training images and create, add, remove, or delete the image tags. Labelers can view the project but can’t update anything other than training images and tags.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/tags/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/suggested/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/tagsandregions/suggestions/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:33:20.8278896Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:29.1892871Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/88424f51-ebe7-446f-bc41-7fa16989e96c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"88424f51-ebe7-446f-bc41-7fa16989e96c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only actions in the project. Readers can’t create or update the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:34:18.5328818Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:29.3642707Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/93586559-c37d-4a6b-ba08-b9f0940c2d73\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93586559-c37d-4a6b-ba08-b9f0940c2d73\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Trainer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, edit projects and train the models, including the ability to publish, unpublish, export the models. Trainers can’t create or delete the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/delete\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/import/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:35:13.8147804Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:29.5442713Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Perform all data plane operations on a key vault and all objects in it, including certificates, keys, and secrets. Cannot manage key vault resources or manage role assignments. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:46.2349235Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:30.2542755Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00482a5a-887f-4fb3-b363-3b7fe8e74483\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Perform cryptographic operations using keys. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/update/action\",\r\n \"Microsoft.KeyVault/vaults/keys/backup/action\",\r\n \"Microsoft.KeyVault/vaults/keys/encrypt/action\",\r\n \"Microsoft.KeyVault/vaults/keys/decrypt/action\",\r\n \"Microsoft.KeyVault/vaults/keys/wrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/unwrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/sign/action\",\r\n \"Microsoft.KeyVault/vaults/keys/verify/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.0699268Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:30.6042921Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/12338af0-0e69-4776-bea7-57ae8d297424\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12338af0-0e69-4776-bea7-57ae8d297424\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Secrets Officer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Perform any action on the secrets of a key vault, except manage permissions. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.1449242Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:30.779347Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b86a8fe4-44ce-4948-aee5-eccb2c155cd7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Secrets User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read secret contents. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2049241Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:30.9542829Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4633458b-17de-408a-b874-0445c86b69e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4633458b-17de-408a-b874-0445c86b69e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Certificates Officer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Perform any action on the certificates of a key vault, except manage permissions. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/certificatecas/*\",\r\n \"Microsoft.KeyVault/vaults/certificates/*\",\r\n \"Microsoft.KeyVault/vaults/certificatecontacts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2499247Z\",\r\n \"updatedOn\": \"2023-06-12T15:03:21.0577597Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a4417e6f-fecd-4de8-b567-7b0420556985\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4417e6f-fecd-4de8-b567-7b0420556985\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read metadata of key vaults and its certificates, keys, and secrets. Cannot read sensitive values such as secret contents or key material. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2949294Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:31.3043292Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/21090545-7ca7-4776-b22c-e363652d74d2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"21090545-7ca7-4776-b22c-e363652d74d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Service Encryption User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read metadata of keys and perform wrap/unwrap operations. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventGrid/eventSubscriptions/write\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/wrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/unwrap/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-20T20:55:19.239847Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:31.8443056Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e147488a-f6f5-4113-8e2d-b22465e65bf6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Viewer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view all resources in cluster/namespace, except secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/deployments/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/replicasets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/batch/jobs/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/configmaps/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/endpoints/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/events/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/deployments/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/pods/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/serviceaccounts/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/services/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:51:12.8801199Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:33.8193353Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/63f0a09d-1495-4db4-a681-037d84835eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"63f0a09d-1495-4db4-a681-037d84835eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you update everything in cluster/namespace, except (cluster)roles and (cluster)role bindings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/deployments/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/replicasets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/batch/jobs/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/configmaps/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/endpoints/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/events/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/deployments/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/pods/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/secrets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/serviceaccounts/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/services/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:53:50.6749823Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:34.0043462Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5b999177-9696-4545-85c7-50de3797e5a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5b999177-9696-4545-85c7-50de3797e5a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources in the cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:55:30.9910462Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:34.1743694Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8393591c-06b9-48a2-a542-1bd6b377f6a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8393591c-06b9-48a2-a542-1bd6b377f6a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/deployments/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/replicasets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/authorization.k8s.io/localsubjectaccessreviews/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/batch/jobs/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/configmaps/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/endpoints/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/events/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/deployments/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/pods/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/rolebindings/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/roles/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/secrets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/serviceaccounts/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/services/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:57:06.0391177Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:34.3593384Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dffb1e0c-446f-4dde-a09f-99eb5cc68b96\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dffb1e0c-446f-4dde-a09f-99eb5cc68b96\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources in the cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:47:24.4071415Z\",\r\n \"updatedOn\": \"2022-10-13T03:34:52.0122969Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/delete\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/write\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:50:30.4020311Z\",\r\n \"updatedOn\": \"2023-05-09T20:10:39.0962004Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3498e952-d568-435e-9b2c-8d77e338d7f7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3498e952-d568-435e-9b2c-8d77e338d7f7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read-only access to see most objects in a namespace. It does not allow viewing roles or role bindings. This role does not allow viewing Secrets, since reading the contents of Secrets enables access to ServiceAccount credentials in the namespace, which would allow API access as any ServiceAccount in the namespace (a form of privilege escalation). Applying this role at cluster scope will give access across all namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/managedClusters/apps/daemonsets/read\",\r\n \"Microsoft.ContainerService/managedClusters/apps/deployments/read\",\r\n \"Microsoft.ContainerService/managedClusters/apps/replicasets/read\",\r\n \"Microsoft.ContainerService/managedClusters/apps/statefulsets/read\",\r\n \"Microsoft.ContainerService/managedClusters/autoscaling/horizontalpodautoscalers/read\",\r\n \"Microsoft.ContainerService/managedClusters/batch/cronjobs/read\",\r\n \"Microsoft.ContainerService/managedClusters/batch/jobs/read\",\r\n \"Microsoft.ContainerService/managedClusters/configmaps/read\",\r\n \"Microsoft.ContainerService/managedClusters/discovery.k8s.io/endpointslices/read\",\r\n \"Microsoft.ContainerService/managedClusters/endpoints/read\",\r\n \"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/managedClusters/events/read\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/daemonsets/read\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/deployments/read\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/ingresses/read\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/networkpolicies/read\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/replicasets/read\",\r\n \"Microsoft.ContainerService/managedClusters/limitranges/read\",\r\n \"Microsoft.ContainerService/managedClusters/metrics.k8s.io/pods/read\",\r\n \"Microsoft.ContainerService/managedClusters/metrics.k8s.io/nodes/read\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/read\",\r\n \"Microsoft.ContainerService/managedClusters/networking.k8s.io/ingresses/read\",\r\n \"Microsoft.ContainerService/managedClusters/networking.k8s.io/networkpolicies/read\",\r\n \"Microsoft.ContainerService/managedClusters/persistentvolumeclaims/read\",\r\n \"Microsoft.ContainerService/managedClusters/pods/read\",\r\n \"Microsoft.ContainerService/managedClusters/policy/poddisruptionbudgets/read\",\r\n \"Microsoft.ContainerService/managedClusters/replicationcontrollers/read\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/read\",\r\n \"Microsoft.ContainerService/managedClusters/serviceaccounts/read\",\r\n \"Microsoft.ContainerService/managedClusters/services/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:53:05.5728294Z\",\r\n \"updatedOn\": \"2023-04-25T15:13:23.734882Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f6c6a51-bcf8-42ba-9220-52d62157d7db\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read/write access to most objects in a namespace.This role does not allow viewing or modifying roles or role bindings. However, this role allows accessing Secrets and running Pods as any ServiceAccount in the namespace, so it can be used to gain the API access levels of any ServiceAccount in the namespace. Applying this role at cluster scope will give access across all namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/managedClusters/apps/daemonsets/*\",\r\n \"Microsoft.ContainerService/managedClusters/apps/deployments/*\",\r\n \"Microsoft.ContainerService/managedClusters/apps/replicasets/*\",\r\n \"Microsoft.ContainerService/managedClusters/apps/statefulsets/*\",\r\n \"Microsoft.ContainerService/managedClusters/autoscaling/horizontalpodautoscalers/*\",\r\n \"Microsoft.ContainerService/managedClusters/batch/cronjobs/*\",\r\n \"Microsoft.ContainerService/managedClusters/coordination.k8s.io/leases/read\",\r\n \"Microsoft.ContainerService/managedClusters/coordination.k8s.io/leases/write\",\r\n \"Microsoft.ContainerService/managedClusters/coordination.k8s.io/leases/delete\",\r\n \"Microsoft.ContainerService/managedClusters/discovery.k8s.io/endpointslices/read\",\r\n \"Microsoft.ContainerService/managedClusters/batch/jobs/*\",\r\n \"Microsoft.ContainerService/managedClusters/configmaps/*\",\r\n \"Microsoft.ContainerService/managedClusters/endpoints/*\",\r\n \"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/managedClusters/events/*\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/daemonsets/*\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/deployments/*\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/ingresses/*\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/networkpolicies/*\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/replicasets/*\",\r\n \"Microsoft.ContainerService/managedClusters/limitranges/read\",\r\n \"Microsoft.ContainerService/managedClusters/metrics.k8s.io/pods/read\",\r\n \"Microsoft.ContainerService/managedClusters/metrics.k8s.io/nodes/read\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/read\",\r\n \"Microsoft.ContainerService/managedClusters/networking.k8s.io/ingresses/*\",\r\n \"Microsoft.ContainerService/managedClusters/networking.k8s.io/networkpolicies/*\",\r\n \"Microsoft.ContainerService/managedClusters/persistentvolumeclaims/*\",\r\n \"Microsoft.ContainerService/managedClusters/pods/*\",\r\n \"Microsoft.ContainerService/managedClusters/policy/poddisruptionbudgets/*\",\r\n \"Microsoft.ContainerService/managedClusters/replicationcontrollers/*\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/read\",\r\n \"Microsoft.ContainerService/managedClusters/secrets/*\",\r\n \"Microsoft.ContainerService/managedClusters/serviceaccounts/*\",\r\n \"Microsoft.ContainerService/managedClusters/services/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:54:51.9644983Z\",\r\n \"updatedOn\": \"2023-04-25T15:13:23.735884Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Services Hub Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Services Hub Operator allows you to perform all read, write, and deletion operations related to Services Hub Connectors.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.ServicesHub/connectors/write\",\r\n \"Microsoft.ServicesHub/connectors/read\",\r\n \"Microsoft.ServicesHub/connectors/delete\",\r\n \"Microsoft.ServicesHub/connectors/checkAssessmentEntitlement/action\",\r\n \"Microsoft.ServicesHub/supportOfferingEntitlement/read\",\r\n \"Microsoft.ServicesHub/workspaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-20T17:57:22.0644902Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:37.5544021Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/82200a5b-e217-47a5-b665-6d8765ee745b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"82200a5b-e217-47a5-b665-6d8765ee745b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Object Understanding Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read ingestion jobs for an object understanding account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-23T19:16:31.9929119Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:37.9070085Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d18777c0-1514-4662-8490-608db7d334b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d18777c0-1514-4662-8490-608db7d334b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR REST API Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to Azure SignalR Service REST APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SignalRService/SignalR/auth/clientToken/action\",\r\n \"Microsoft.SignalRService/SignalR/hub/*\",\r\n \"Microsoft.SignalRService/SignalR/group/*\",\r\n \"Microsoft.SignalRService/SignalR/clientConnection/*\",\r\n \"Microsoft.SignalRService/SignalR/user/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-29T09:35:32.2764751Z\",\r\n \"updatedOn\": \"2023-08-24T15:22:24.7390261Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd53cd77-2268-407a-8f46-7e7863d0f521\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd53cd77-2268-407a-8f46-7e7863d0f521\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Collaborative Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage data packages of a collaborative.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.IndustryDataLifecycle/custodianCollaboratives/*/read\",\r\n \"Microsoft.IndustryDataLifecycle/memberCollaboratives/*/read\",\r\n \"Microsoft.IndustryDataLifecycle/locations/dataPackages/*\",\r\n \"Microsoft.IndustryDataLifecycle/custodianCollaboratives/receivedDataPackages/*\",\r\n \"Microsoft.IndustryDataLifecycle/custodianCollaboratives/rejectDataPackage/action\",\r\n \"Microsoft.IndustryDataLifecycle/memberCollaboratives/sharedDataPackages/*\",\r\n \"Microsoft.IndustryDataLifecycle/custodianCollaboratives/dataModels/*\",\r\n \"Microsoft.IndustryDataLifecycle/custodianCollaboratives/auditLogs/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-14T11:58:31.8973556Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:40.2428145Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/daa9e50b-21df-454c-94a6-a8050adab352\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"daa9e50b-21df-454c-94a6-a8050adab352\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Update Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives you read access to management and content operations, but does not allow making changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/read\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-21T23:40:19.237361Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:40.7922672Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e9dba6fb-3d52-4cf0-bce3-f06ce71b9e0f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e9dba6fb-3d52-4cf0-bce3-f06ce71b9e0f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Update Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives you full access to management and content operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/read\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/write\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/delete\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/read\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/write\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-21T23:56:22.352051Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:40.9672678Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/02ca0879-e8e4-47a5-a61e-5c618b76e64a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"02ca0879-e8e4-47a5-a61e-5c618b76e64a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Update Content Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives you full access to content operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/read\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/write\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-21T23:58:18.42555Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:41.1433368Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0378884a-3af5-44ab-8323-f5b22f9f3c98\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0378884a-3af5-44ab-8323-f5b22f9f3c98\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Update Content Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives you read access to content operations, but does not allow making changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-22T00:02:43.3299181Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:41.6754856Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d1ee9a80-8b14-47f0-bdc2-f4a351625a7b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d1ee9a80-8b14-47f0-bdc2-f4a351625a7b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Metrics Advisor Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to the project, including the system level configuration.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/MetricsAdvisor/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-10T07:46:47.5804491Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:43.6930781Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cb43c632-a144-4ec5-977c-e80c4affc34a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cb43c632-a144-4ec5-977c-e80c4affc34a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Metrics Advisor User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Access to the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/MetricsAdvisor/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/MetricsAdvisor/stats/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-10T07:47:59.6195639Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:43.8780761Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3b20f47b-3825-43cb-8114-4bd2201156a8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3b20f47b-3825-43cb-8114-4bd2201156a8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Schema Registry Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and list Schema Registry groups and schemas.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/namespaces/schemagroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/namespaces/schemas/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-13T06:31:38.027274Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:44.635045Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2c56ea50-c6b3-40a6-83c0-9d98858bc7d2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2c56ea50-c6b3-40a6-83c0-9d98858bc7d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Schema Registry Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, write, and delete Schema Registry groups and schemas.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/namespaces/schemagroups/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/namespaces/schemas/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-13T06:48:26.6032931Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:44.820037Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5dffeca3-4936-4216-b2bc-10343a5abb25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5dffeca3-4936-4216-b2bc-10343a5abb25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AgFood Platform Service Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides read access to AgFood Platform Service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/*/list/action\",\r\n \"Microsoft.AgFoodPlatform/*/read\",\r\n \"Microsoft.AgFoodPlatform/*/search/action\",\r\n \"Microsoft.AgFoodPlatform/*/download/action\",\r\n \"Microsoft.AgFoodPlatform/*/overlap/action\",\r\n \"Microsoft.AgFoodPlatform/*/checkConsent/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-14T10:21:08.913882Z\",\r\n \"updatedOn\": \"2022-12-13T18:12:05.0978624Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7ec7ccdc-f61e-41fe-9aaf-980df0a44eba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ec7ccdc-f61e-41fe-9aaf-980df0a44eba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AgFood Platform Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides contribute access to AgFood Platform Service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/*/action\",\r\n \"Microsoft.AgFoodPlatform/*/read\",\r\n \"Microsoft.AgFoodPlatform/*/write\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/farmers/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/deletionJobs/*/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/datasets/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/datasetRecords/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/datasets/access/*/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-14T10:21:09.7239169Z\",\r\n \"updatedOn\": \"2023-12-04T16:03:50.558376Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8508508a-4469-4e45-963b-2518ee0bb728\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8508508a-4469-4e45-963b-2518ee0bb728\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AgFood Platform Service Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides admin access to AgFood Platform Service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-14T10:21:09.8039209Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:45.3613128Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f8da80de-1ff9-4747-ad80-a19b7f6079e3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f8da80de-1ff9-4747-ad80-a19b7f6079e3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed HSM contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage managed HSM pools, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.KeyVault/managedHSMs/*\",\r\n \"Microsoft.KeyVault/deletedManagedHsms/read\",\r\n \"Microsoft.KeyVault/locations/deletedManagedHsms/read\",\r\n \"Microsoft.KeyVault/locations/deletedManagedHsms/purge/action\",\r\n \"Microsoft.KeyVault/locations/managedHsmOperationResults/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-16T21:47:01.1291104Z\",\r\n \"updatedOn\": \"2022-03-08T02:37:43.9379644Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18500a29-7fe2-46b2-a342-b16a415e101d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18500a29-7fe2-46b2-a342-b16a415e101d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Detonation Chamber Submitter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allowed to create submissions to Security Detonation Chamber\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SecurityDetonation/chambers/submissions/delete\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/write\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/files/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/accesskeyview/read\",\r\n \"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-10-01T08:55:21.3980274Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:47.547135Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0b555d9b-b4a7-4f43-b330-627f0e5be8f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b555d9b-b4a7-4f43-b330-627f0e5be8f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR REST API Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to Azure SignalR Service REST APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SignalRService/SignalR/group/read\",\r\n \"Microsoft.SignalRService/SignalR/clientConnection/read\",\r\n \"Microsoft.SignalRService/SignalR/user/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-10-13T09:19:05.6463616Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:48.790297Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ddde6b66-c0df-4114-a159-3618637b3035\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ddde6b66-c0df-4114-a159-3618637b3035\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR Service Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to Azure SignalR Service REST APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SignalRService/SignalR/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-10-13T09:20:32.150141Z\",\r\n \"updatedOn\": \"2023-08-24T15:22:24.7390261Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7e4f1700-ea5a-4f59-8f37-079cfe29dce3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7e4f1700-ea5a-4f59-8f37-079cfe29dce3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reservation Purchaser\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you purchase reservations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Capacity/catalogs/read\",\r\n \"Microsoft.Capacity/register/action\",\r\n \"Microsoft.Compute/register/action\",\r\n \"Microsoft.Consumption/register/action\",\r\n \"Microsoft.Consumption/reservationRecommendationDetails/read\",\r\n \"Microsoft.Consumption/reservationRecommendations/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.SQL/register/action\",\r\n \"Microsoft.Support/supporttickets/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-10-23T20:22:48.9217751Z\",\r\n \"updatedOn\": \"2022-04-14T04:21:57.2843545Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f7b75c60-3036-4b75-91c3-6b41c27c1689\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f7b75c60-3036-4b75-91c3-6b41c27c1689\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AzureML Metrics Writer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you write metrics to AzureML workspace\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/metrics/*/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-10-27T16:55:19.566495Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:49.8655015Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/635dd51f-9968-44d3-b7fb-6d9a6bd613ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"635dd51f-9968-44d3-b7fb-6d9a6bd613ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you perform backup and restore operations using Azure Backup on the storage account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/locks/read\",\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/locks/delete\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/objectReplicationPolicies/delete\",\r\n \"Microsoft.Storage/storageAccounts/objectReplicationPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/objectReplicationPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/objectReplicationPolicies/restorePointMarkers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/write\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/restoreBlobRanges/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-02T23:32:50.4203469Z\",\r\n \"updatedOn\": \"2022-04-20T07:52:04.6883613Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Metric Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for creation, writes and reads to the metric set via the metrics service APIs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/metricwrite/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/metricwrite/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-10T20:07:53.7535885Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:50.9524177Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6188b7c9-7d01-4f99-a59f-c88b630326c0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6188b7c9-7d01-4f99-a59f-c88b630326c0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Project Babylon Data Curator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The Microsoft.ProjectBabylon data curator can create, read, modify and delete catalog data objects and establish relationships between objects. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ProjectBabylon/accounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ProjectBabylon/accounts/data/read\",\r\n \"Microsoft.ProjectBabylon/accounts/data/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-14T02:31:33.7988825Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:51.4929515Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9ef4ef9c-a049-46b0-82ab-dd8ac094c889\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9ef4ef9c-a049-46b0-82ab-dd8ac094c889\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Project Babylon Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The Microsoft.ProjectBabylon data reader can read catalog data objects. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ProjectBabylon/accounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ProjectBabylon/accounts/data/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-14T02:33:13.5342351Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:51.6729667Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c8d896ba-346d-4f50-bc1d-7d1c84130446\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c8d896ba-346d-4f50-bc1d-7d1c84130446\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Project Babylon Data Source Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The Microsoft.ProjectBabylon data source administrator can manage data sources and data scans. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ProjectBabylon/accounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ProjectBabylon/accounts/scan/read\",\r\n \"Microsoft.ProjectBabylon/accounts/scan/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-14T02:34:01.8401954Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:51.8529643Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/05b7651b-dc44-475e-b74d-df3db49fae0f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"05b7651b-dc44-475e-b74d-df3db49fae0f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Group Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Contributor of the Application Group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/applicationgroups/*\",\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\r\n \"Microsoft.DesktopVirtualization/workspaces/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-03T23:26:00.2784962Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:52.9432015Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ca6382a4-1721-4bcf-a114-ff0c70227b6b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ca6382a4-1721-4bcf-a114-ff0c70227b6b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Reader of Desktop Virtualization.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:36:19.0140629Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:54.0407838Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/49a72310-ab8d-41df-bbb0-79b649203868\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49a72310-ab8d-41df-bbb0-79b649203868\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Contributor of Desktop Virtualization.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:37:16.2910337Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:54.2107872Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/082f0a83-3be5-4ba1-904c-961cca79b387\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"082f0a83-3be5-4ba1-904c-961cca79b387\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Workspace Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Contributor of the Desktop Virtualization Workspace.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/workspaces/*\",\r\n \"Microsoft.DesktopVirtualization/applicationgroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:38:29.6089216Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:54.3907854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/21efdde3-836f-432b-bf3d-3e8e734d4b2b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"21efdde3-836f-432b-bf3d-3e8e734d4b2b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization User Session Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Operator of the Desktop Virtualization User Session.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:39:16.9100273Z\",\r\n \"updatedOn\": \"2024-11-01T14:22:39.4622074Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Session Host Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Operator of the Desktop Virtualization Session Host.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:39:53.2569741Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:54.7508042Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2ad6aaab-ead9-4eaa-8ac5-da422f562408\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2ad6aaab-ead9-4eaa-8ac5-da422f562408\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Host Pool Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Reader of the Desktop Virtualization Host Pool.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/hostpools/*/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:40:33.1430834Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:54.9257967Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ceadfde2-b300-400a-ab7b-6143895aa822\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ceadfde2-b300-400a-ab7b-6143895aa822\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Host Pool Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Contributor of the Desktop Virtualization Host Pool.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/hostpools/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:40:57.2976187Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:55.1057701Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e307426c-f9b6-4e81-87de-d99efb3c32bc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e307426c-f9b6-4e81-87de-d99efb3c32bc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Application Group Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Reader of the Desktop Virtualization Application Group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/applicationgroups/*/read\",\r\n \"Microsoft.DesktopVirtualization/applicationgroups/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:41:18.0287398Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:55.2858006Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/aebf23d0-b568-4e86-b8f9-fe83a2c6ab55\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"aebf23d0-b568-4e86-b8f9-fe83a2c6ab55\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Application Group Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Contributor of the Desktop Virtualization Application Group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/applicationgroups/*\",\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:41:38.6205531Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:55.4677136Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/86240b0e-9422-4c43-887b-b61143f32ba8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86240b0e-9422-4c43-887b-b61143f32ba8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Workspace Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Reader of the Desktop Virtualization Workspace.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/workspaces/read\",\r\n \"Microsoft.DesktopVirtualization/applicationgroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:41:58.1892707Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:55.6577168Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0fa44ee9-7a7d-466b-9bb2-2bf446b1204d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0fa44ee9-7a7d-466b-9bb2-2bf446b1204d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Disk Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permission to backup vault to perform disk backup.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-15T07:39:03.8394514Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:56.0178737Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3e5e47e6-65f7-47ef-90b5-e5dd4d455f24\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3e5e47e6-65f7-47ef-90b5-e5dd4d455f24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Disk Restore Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permission to backup vault to perform disk restore.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-15T12:18:31.8481619Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:56.7408912Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b50d9833-a0cb-478e-945f-707fcc997c13\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Disk Snapshot Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permission to backup vault to manage disk snapshots.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Compute/snapshots/delete\",\r\n \"Microsoft.Compute/snapshots/write\",\r\n \"Microsoft.Compute/snapshots/read\",\r\n \"Microsoft.Compute/snapshots/beginGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/endGetAccess/action\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-15T12:18:51.4471411Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:56.9158814Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7efff54f-a5b4-42b5-a1c5-5411624893ce\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft.Kubernetes connected cluster role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.Kubernetes connected cluster role.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/delete\",\r\n \"Microsoft.Kubernetes/registeredSubscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-07T23:57:10.9923232Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:58.2039838Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5548b2cf-c94c-4228-90ba-30851930a12f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5548b2cf-c94c-4228-90ba-30851930a12f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Detonation Chamber Submission Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allowed to create and manage submissions to Security Detonation Chamber\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SecurityDetonation/chambers/submissions/delete\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/write\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/files/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/accesskeyview/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/adminview/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/analystview/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/publicview/read\",\r\n \"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-18T09:35:36.5739297Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:58.3939604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a37b566d-3efa-4beb-a2f2-698963fa42ce\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a37b566d-3efa-4beb-a2f2-698963fa42ce\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Detonation Chamber Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allowed to publish and modify platforms, workflows and toolsets to Security Detonation Chamber\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SecurityDetonation/chambers/platforms/read\",\r\n \"Microsoft.SecurityDetonation/chambers/platforms/write\",\r\n \"Microsoft.SecurityDetonation/chambers/platforms/delete\",\r\n \"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/workflows/read\",\r\n \"Microsoft.SecurityDetonation/chambers/workflows/write\",\r\n \"Microsoft.SecurityDetonation/chambers/workflows/delete\",\r\n \"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/toolsets/read\",\r\n \"Microsoft.SecurityDetonation/chambers/toolsets/write\",\r\n \"Microsoft.SecurityDetonation/chambers/toolsets/delete\",\r\n \"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/publishRequests/read\",\r\n \"Microsoft.SecurityDetonation/chambers/publishRequests/cancel/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-18T11:43:14.0858184Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:58.5639749Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/352470b3-6a9c-4686-b503-35deb827e500\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"352470b3-6a9c-4686-b503-35deb827e500\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Collaborative Runtime Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage resources created by AICS at runtime\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.IndustryDataLifecycle/derivedModels/*\",\r\n \"Microsoft.IndustryDataLifecycle/pipelineSets/*\",\r\n \"Microsoft.IndustryDataLifecycle/modelMappings/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-19T10:00:27.3464971Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:58.7442136Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7a6f0e70-c033-4fb1-828c-08514e5f4102\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7a6f0e70-c033-4fb1-828c-08514e5f4102\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CosmosRestoreOperator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform restore action for Cosmos DB database account with continuous backup mode\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restore/action\",\r\n \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-21T19:51:35.3884884Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:59.4892686Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5432c526-bc82-444a-b7ba-57c5b0b5b34f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5432c526-bc82-444a-b7ba-57c5b0b5b34f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Converter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to convert data from legacy format to FHIR\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/convertData/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/convertData/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-22T19:39:01.1601069Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:59.8605937Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a1705bd2-3a8f-45a5-8683-466fcfd5cc24\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a1705bd2-3a8f-45a5-8683-466fcfd5cc24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Quota Request Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and create quota requests, get quota request status, and create support tickets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Capacity/resourceProviders/locations/serviceLimits/read\",\r\n \"Microsoft.Capacity/resourceProviders/locations/serviceLimits/write\",\r\n \"Microsoft.Capacity/resourceProviders/locations/serviceLimitsRequests/read\",\r\n \"Microsoft.Capacity/register/action\",\r\n \"Microsoft.Quota/usages/read\",\r\n \"Microsoft.Quota/quotas/read\",\r\n \"Microsoft.Quota/quotas/write\",\r\n \"Microsoft.Quota/quotaRequests/read\",\r\n \"Microsoft.Quota/register/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-02-03T00:06:35.8404575Z\",\r\n \"updatedOn\": \"2022-12-07T23:49:01.9455627Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0e5f05e5-9ab9-446b-b98d-1e2157c94125\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0e5f05e5-9ab9-446b-b98d-1e2157c94125\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage EventGrid operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-02-08T18:46:18.8999557Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:01.6867802Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1e241071-0855-49ea-94dc-649edcd759de\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1e241071-0855-49ea-94dc-649edcd759de\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Detonation Chamber Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allowed to query submission info and files from Security Detonation Chamber\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SecurityDetonation/chambers/submissions/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/files/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-01T14:06:46.2814905Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:03.327409Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/28241645-39f8-410b-ad48-87863e2951d5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"28241645-39f8-410b-ad48-87863e2951d5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Object Anchors Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read ingestion jobs for an object anchors account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-02T01:20:47.0279813Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:03.5006082Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4a167cdf-cb95-4554-9203-2347fe489bd9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4a167cdf-cb95-4554-9203-2347fe489bd9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Object Anchors Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with ingestion capabilities for an object anchors account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/action\",\r\n \"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-02T01:42:02.0014737Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:03.6855873Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ca0835dd-bacc-42dd-8ed2-ed5e7230d15b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ca0835dd-bacc-42dd-8ed2-ed5e7230d15b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"WorkloadBuilder Migration Agent Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"WorkloadBuilder Migration Agent Role.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.WorkloadBuilder/migrationAgents/Read\",\r\n \"Microsoft.WorkloadBuilder/migrationAgents/Write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-11T17:07:20.0828003Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:04.2456706Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d17ce0a2-0697-43bc-aac5-9113337ab61c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d17ce0a2-0697-43bc-aac5-9113337ab61c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Cloud Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allow read access to Azure Spring Cloud Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-25T11:12:12.678601Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:05.3368606Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b5537268-8956-4941-a8f0-646150406f0c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b5537268-8956-4941-a8f0-646150406f0c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Speech Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to Speech projects, including read, write and delete all entities, for real-time speech recognition and batch transcription tasks, real-time speech synthesis and long audio tasks, custom speech and custom voice.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVoice/*\",\r\n \"Microsoft.CognitiveServices/accounts/AudioContentCreation/*\",\r\n \"Microsoft.CognitiveServices/accounts/VideoTranslation/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomAvatar/*\",\r\n \"Microsoft.CognitiveServices/accounts/BatchAvatar/*\",\r\n \"Microsoft.CognitiveServices/accounts/BatchTextToSpeech/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-30T11:28:49.7826633Z\",\r\n \"updatedOn\": \"2024-04-15T15:14:13.2916962Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0e75ca1e-0464-4b4d-8b93-68208a576181\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0e75ca1e-0464-4b4d-8b93-68208a576181\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Face Recognizer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you perform detect, verify, identify, group, and find similar operations on Face API. This role does not allow create or delete operations, which makes it well suited for endpoints that only need inferencing capabilities, following 'least privilege' best practices.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/Face/detect/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/verify/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/identify/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/group/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/findsimilars/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/detectliveness/multimodal/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/detectliveness/singlemodal/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/detectlivenesswithverify/singlemodal/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/*/sessions/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/*/sessions/delete\",\r\n \"Microsoft.CognitiveServices/accounts/Face/*/sessions/read\",\r\n \"Microsoft.CognitiveServices/accounts/Face/*/sessions/audit/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-31T01:51:41.3557295Z\",\r\n \"updatedOn\": \"2023-11-13T16:11:26.3607611Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9894cab4-e18a-44aa-828b-cb588cd6f2d7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9894cab4-e18a-44aa-828b-cb588cd6f2d7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Media Services Account Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete Media Services accounts; read-only access to other Media Services resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Media/mediaservices/*/read\",\r\n \"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\r\n \"Microsoft.Media/mediaservices/write\",\r\n \"Microsoft.Media/mediaservices/delete\",\r\n \"Microsoft.Media/mediaservices/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Media/mediaservices/privateEndpointConnections/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-19T23:20:32.2956636Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:07.1518844Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/054126f8-9a2b-4f1c-a9ad-eca461f08466\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"054126f8-9a2b-4f1c-a9ad-eca461f08466\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Media Services Live Events Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete Live Events, Assets, Asset Filters, and Streaming Locators; read-only access to other Media Services resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Media/mediaservices/*/read\",\r\n \"Microsoft.Media/mediaservices/assets/*\",\r\n \"Microsoft.Media/mediaservices/assets/assetfilters/*\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/*\",\r\n \"Microsoft.Media/mediaservices/liveEvents/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Media/mediaservices/assets/getEncryptionKey/action\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/listContentKeys/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-19T23:21:00.6119555Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:07.3318873Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/532bc159-b25e-42c0-969e-a1d439f60d77\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"532bc159-b25e-42c0-969e-a1d439f60d77\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Media Services Media Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete Assets, Asset Filters, Streaming Locators, and Jobs; read-only access to other Media Services resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Media/mediaservices/*/read\",\r\n \"Microsoft.Media/mediaservices/assets/*\",\r\n \"Microsoft.Media/mediaservices/assets/assetfilters/*\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/*\",\r\n \"Microsoft.Media/mediaservices/transforms/jobs/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Media/mediaservices/assets/getEncryptionKey/action\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/listContentKeys/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-19T23:21:23.2236495Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:07.5068487Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e4395492-1534-4db2-bedf-88c14621589c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e4395492-1534-4db2-bedf-88c14621589c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Media Services Policy Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete Account Filters, Streaming Policies, Content Key Policies, and Transforms; read-only access to other Media Services resources. Cannot create Jobs, Assets or Streaming resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Media/mediaservices/*/read\",\r\n \"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\r\n \"Microsoft.Media/mediaservices/accountFilters/*\",\r\n \"Microsoft.Media/mediaservices/streamingPolicies/*\",\r\n \"Microsoft.Media/mediaservices/contentKeyPolicies/*\",\r\n \"Microsoft.Media/mediaservices/transforms/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Media/mediaservices/contentKeyPolicies/getPolicyPropertiesWithSecrets/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-19T23:21:46.953433Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:07.6968496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c4bba371-dacd-4a26-b320-7250bca963ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c4bba371-dacd-4a26-b320-7250bca963ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Media Services Streaming Endpoints Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete Streaming Endpoints; read-only access to other Media Services resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Media/mediaservices/*/read\",\r\n \"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\r\n \"Microsoft.Media/mediaservices/streamingEndpoints/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-19T23:22:04.4594851Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:07.8718907Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/99dba123-b5fe-44d5-874c-ced7199a5804\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"99dba123-b5fe-44d5-874c-ced7199a5804\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Stream Analytics Query Tester\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you perform query testing without creating a stream analytics job first\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.StreamAnalytics/locations/TestQuery/action\",\r\n \"Microsoft.StreamAnalytics/locations/OperationResults/read\",\r\n \"Microsoft.StreamAnalytics/locations/SampleInput/action\",\r\n \"Microsoft.StreamAnalytics/locations/CompileQuery/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-20T17:33:24.572787Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:08.0481551Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1ec5b3c1-b17e-4e25-8312-2acb3c3c5abf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1ec5b3c1-b17e-4e25-8312-2acb3c3c5abf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AnyBuild Builder\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Basic user role for AnyBuild. This role allows listing of agent information and execution of remote build capabilities.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AnyBuild/clusters/build/write\",\r\n \"Microsoft.AnyBuild/clusters/build/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-20T22:07:00.4963853Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:08.4254134Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a2138dac-4907-4679-a376-736901ed8ad8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a2138dac-4907-4679-a376-736901ed8ad8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"IoT Hub Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full read access to IoT Hub data-plane properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Devices/IotHubs/*/read\",\r\n \"Microsoft.Devices/IotHubs/fileUpload/notifications/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-22T18:03:29.8843192Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:08.6054154Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b447c946-2db7-41ec-983d-d8bf3b1c77e3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b447c946-2db7-41ec-983d-d8bf3b1c77e3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"IoT Hub Twin Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read and write access to all IoT Hub device and module twins.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Devices/IotHubs/twins/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-22T20:36:10.1136903Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:08.7855063Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/494bdba2-168f-4f31-a0a1-191d2f7c028c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494bdba2-168f-4f31-a0a1-191d2f7c028c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"IoT Hub Registry Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to IoT Hub device registry.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Devices/IotHubs/devices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-22T20:36:47.5532704Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:08.9804295Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4ea46cd5-c1b2-4a8e-910b-273211f9ce47\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4ea46cd5-c1b2-4a8e-910b-273211f9ce47\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"IoT Hub Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to IoT Hub data plane operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Devices/IotHubs/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-22T20:37:16.9927761Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:09.1754206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4fc6c259-987e-4a07-842e-c321cc9d413f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fc6c259-987e-4a07-842e-c321cc9d413f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Base Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let you view and download packages and test results.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.TestBase/testBaseAccounts/packages/testResults/getDownloadUrl/action\",\r\n \"Microsoft.TestBase/testBaseAccounts/packages/testResults/getVideoDownloadUrl/action\",\r\n \"Microsoft.TestBase/testBaseAccounts/packages/getDownloadUrl/action\",\r\n \"Microsoft.TestBase/*/read\",\r\n \"Microsoft.TestBase/testBaseAccounts/customerEvents/write\",\r\n \"Microsoft.TestBase/testBaseAccounts/customerEvents/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-05-11T23:41:33.1038367Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:10.8004347Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/15e0f5a1-3450-4248-8e25-e2afe88a9e85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"15e0f5a1-3450-4248-8e25-e2afe88a9e85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Index Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read access to Azure Cognitive Search index data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Search/searchServices/indexes/documents/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-06-01T20:26:13.4850461Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:11.3604371Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1407120a-92aa-4202-b7e9-c0e197c71c8f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1407120a-92aa-4202-b7e9-c0e197c71c8f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Index Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to Azure Cognitive Search index data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Search/searchServices/indexes/documents/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-06-01T22:15:16.5388472Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:11.5504385Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8ebe5a00-799e-43f5-93ac-243d3dce84a7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8ebe5a00-799e-43f5-93ac-243d3dce84a7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Table Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage tables and entities\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/entities/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-06-15T06:40:54.9150717Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:12.1005298Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/76199698-9eea-4c19-bc75-cec21354c6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76199698-9eea-4c19-bc75-cec21354c6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Table Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write and delete access to Azure Storage tables and entities\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/read\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/write\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/entities/read\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/entities/write\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/entities/delete\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/entities/add/action\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/entities/update/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-06-15T06:51:59.820761Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:12.2854966Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DICOM Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and search DICOM data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/workspaces/dicomservices/resources/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-06-17T20:58:30.1630494Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:13.0154948Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e89c7a3c-2f64-4fa1-a847-3e4c9ba4283a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89c7a3c-2f64-4fa1-a847-3e4c9ba4283a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DICOM Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to DICOM data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/workspaces/dicomservices/resources/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-06-17T20:59:30.8659515Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:13.1904985Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/58a3b984-7adf-4c20-983a-32417c86fbc8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"58a3b984-7adf-4c20-983a-32417c86fbc8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows send access to event grid events.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/topics/read\",\r\n \"Microsoft.EventGrid/domains/read\",\r\n \"Microsoft.EventGrid/partnerNamespaces/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.EventGrid/namespaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventGrid/events/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-02T21:55:40.4847495Z\",\r\n \"updatedOn\": \"2023-10-30T15:07:29.583163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d5a91429-5739-47e2-a06b-3470a27159e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d5a91429-5739-47e2-a06b-3470a27159e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Disk Pool Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Used by the StoragePool Resource Provider to manage Disks added to a Disk Pool.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-08T17:26:05.1079972Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:13.9154612Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/60fc6e62-5479-42d4-8bf4-67625fcc2840\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"60fc6e62-5479-42d4-8bf4-67625fcc2840\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AzureML Data Scientist\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform all actions within an Azure Machine Learning workspace, except for creating or deleting compute resources and modifying the workspace itself.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/*/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/*/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/*/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/*/write\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/computes/*/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/computes/*/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/computes/listKeys/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/listKeys/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/hubs/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/hubs/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/featurestores/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/featurestores/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-14T21:51:06.0361218Z\",\r\n \"updatedOn\": \"2023-05-31T15:20:44.7862907Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f6c7c914-8db3-469d-8ca1-694a8f32e121\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f6c7c914-8db3-469d-8ca1-694a8f32e121\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Grafana Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage server-wide settings and manage access to resources such as organizations, users, and licenses.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Dashboard/grafana/ActAsGrafanaAdmin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-15T21:32:35.380234Z\",\r\n \"updatedOn\": \"2024-07-19T04:57:48.3613041Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"22926164-76b3-42b3-bc55-97df8dab3e41\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected SQL Server Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.AzureArcData service role to access the resources of Microsoft.AzureArcData stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureArcData/sqlServerInstances/read\",\r\n \"Microsoft.AzureArcData/sqlServerInstances/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-19T23:52:15.8885739Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:15.1754742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e8113dce-c529-4d33-91fa-e9b972617508\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e8113dce-c529-4d33-91fa-e9b972617508\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Relay Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for send access to Azure Relay resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Relay/*/wcfRelays/read\",\r\n \"Microsoft.Relay/*/hybridConnections/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Relay/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-20T15:37:20.7558643Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:15.5454755Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/26baccc8-eea7-41f1-98f4-1762cc7f685d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"26baccc8-eea7-41f1-98f4-1762cc7f685d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Relay Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Relay resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Relay/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Relay/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-20T15:44:26.3023126Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:15.7154782Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2787bf04-f1f5-4bfe-8383-c8a24483ee38\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2787bf04-f1f5-4bfe-8383-c8a24483ee38\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Relay Listener\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for listen access to Azure Relay resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Relay/*/wcfRelays/read\",\r\n \"Microsoft.Relay/*/hybridConnections/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Relay/*/listen/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-20T18:38:03.1437496Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:15.9005232Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/26e0b698-aa6d-4085-9386-aadae190014d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"26e0b698-aa6d-4085-9386-aadae190014d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Grafana Viewer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View dashboards, playlists, and query data sources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Dashboard/grafana/ActAsGrafanaViewer/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-05T16:36:18.7737511Z\",\r\n \"updatedOn\": \"2024-07-19T05:11:50.7830427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/60921a7e-fef1-4a43-9b16-a26c52ad4769\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"60921a7e-fef1-4a43-9b16-a26c52ad4769\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Grafana Editor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, edit, delete, or view dashboards; create, edit, or delete folders; and edit or view playlists.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Dashboard/grafana/ActAsGrafanaEditor/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-05T16:37:32.5299593Z\",\r\n \"updatedOn\": \"2024-07-19T04:57:48.3613041Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a79a5197-3a5c-4973-a920-486035ffd60f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a79a5197-3a5c-4973-a920-486035ffd60f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage azure automation resources and other resources using azure automation.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/ActionGroups/*\",\r\n \"Microsoft.Insights/ActivityLogAlerts/*\",\r\n \"Microsoft.Insights/MetricAlerts/*\",\r\n \"Microsoft.Insights/ScheduledQueryRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-09T10:18:19.1054699Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:17.7304954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f353d9bd-d4a6-484e-a77a-8050b599b867\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f353d9bd-d4a6-484e-a77a-8050b599b867\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Extension Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can create, update, get, list and delete Kubernetes Extensions, and get extension async operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-09T19:47:50.6828896Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:17.9155393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"85cb6faf-e071-4c9b-8136-154b5a04f717\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Provisioning Service Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full read access to Device Provisioning Service data-plane properties.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Devices/provisioningServices/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-09T19:53:12.1374732Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:18.0905503Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/10745317-c249-44a1-a5ce-3a4353c0bbd8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10745317-c249-44a1-a5ce-3a4353c0bbd8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Provisioning Service Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Device Provisioning Service data-plane operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Devices/provisioningServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-09T19:54:03.2783227Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:18.2605302Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dfce44e4-17b7-4bd1-a6d1-04996ec95633\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dfce44e4-17b7-4bd1-a6d1-04996ec95633\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Trusted Signing Certificate Profile Signer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Sign files with a certificate profile. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CodeSigning/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CodeSigning/certificateProfiles/Sign/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-16T23:17:53.0002693Z\",\r\n \"updatedOn\": \"2024-04-08T15:07:46.2519733Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2837e146-70d7-4cfd-ad55-7efa6464f958\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2837e146-70d7-4cfd-ad55-7efa6464f958\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Cloud Service Registry Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allow read access to Azure Spring Cloud Service Registry\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/eurekaService/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-20T04:40:17.9785063Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:18.9655101Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cff1b556-2399-4e7e-856d-a8f754be7b65\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cff1b556-2399-4e7e-856d-a8f754be7b65\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Cloud Service Registry Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allow read, write and delete access to Azure Spring Cloud Service Registry\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/eurekaService/read\",\r\n \"Microsoft.AppPlatform/Spring/eurekaService/write\",\r\n \"Microsoft.AppPlatform/Spring/eurekaService/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-20T04:42:38.9153779Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:19.1405497Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f5880b48-c26d-48be-b172-7927bfa1c8f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f5880b48-c26d-48be-b172-7927bfa1c8f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Cloud Config Server Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allow read access to Azure Spring Cloud Config Server\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/configService/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-26T01:50:51.5123701Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:19.3155517Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d04c6db6-4947-4782-9e91-30a88feb7be7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d04c6db6-4947-4782-9e91-30a88feb7be7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Cloud Config Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allow read, write and delete access to Azure Spring Cloud Config Server\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/configService/read\",\r\n \"Microsoft.AppPlatform/Spring/configService/write\",\r\n \"Microsoft.AppPlatform/Spring/configService/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-09-06T02:30:47.861158Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:20.0405208Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a06f5c24-21a7-4e1a-aa2b-f19eb6684f5b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a06f5c24-21a7-4e1a-aa2b-f19eb6684f5b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure VM Managed identities restore Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure VM Managed identities restore Contributors are allowed to perform Azure VM Restores with managed identities both user and system\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-09-13T05:27:59.2180214Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:20.5805266Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6ae96244-5829-4925-a7d3-5975537d91dd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6ae96244-5829-4925-a7d3-5975537d91dd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Search and Render Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to very limited set of data APIs for common visual web SDK scenarios. Specifically, render and search data APIs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/services/render/read\",\r\n \"Microsoft.Maps/accounts/services/search/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-10-01T22:17:50.5178931Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:22.045541Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6be48352-4f82-47c9-ad5e-0acacefdb005\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6be48352-4f82-47c9-ad5e-0acacefdb005\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access all Azure Maps resource management.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Maps/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-10-01T22:19:13.1357904Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:22.2455414Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dba33070-676a-4fb0-87fa-064dc56ff7fb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dba33070-676a-4fb0-87fa-064dc56ff7fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc VMware VM Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Arc VMware VM Contributor has permissions to perform all VM actions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ConnectedVMwarevSphere/virtualmachines/*\",\r\n \"Microsoft.ConnectedVMwarevSphere/virtualmachineinstances/*\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/assessPatches/action\",\r\n \"Microsoft.HybridCompute/machines/installPatches/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\r\n \"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/write\",\r\n \"Microsoft.HybridCompute/machines/runcommands/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/licenses/write\",\r\n \"Microsoft.HybridCompute/licenses/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-10-18T20:19:53.0087024Z\",\r\n \"updatedOn\": \"2023-09-01T13:25:44.9439989Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b748a06d-6150-4f8a-aaa9-ce3940cd96cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b748a06d-6150-4f8a-aaa9-ce3940cd96cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc VMware Private Cloud User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Arc VMware Private Cloud User has permissions to use the VMware cloud resources to deploy VMs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ConnectedVMwarevSphere/virtualnetworks/join/action\",\r\n \"Microsoft.ConnectedVMwarevSphere/virtualnetworks/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/virtualmachinetemplates/clone/action\",\r\n \"Microsoft.ConnectedVMwarevSphere/virtualmachinetemplates/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/resourcepools/deploy/action\",\r\n \"Microsoft.ConnectedVMwarevSphere/resourcepools/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/hosts/deploy/action\",\r\n \"Microsoft.ConnectedVMwarevSphere/hosts/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/clusters/deploy/action\",\r\n \"Microsoft.ConnectedVMwarevSphere/clusters/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/datastores/allocateSpace/action\",\r\n \"Microsoft.ConnectedVMwarevSphere/datastores/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-10-18T20:20:46.5105444Z\",\r\n \"updatedOn\": \"2023-11-01T15:17:03.535073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ce551c02-7c42-47e0-9deb-e3b6fc3a9a83\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ce551c02-7c42-47e0-9deb-e3b6fc3a9a83\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc VMware Administrator role \",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Arc VMware VM Contributor has permissions to perform all connected VMwarevSphere actions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ConnectedVMwarevSphere/*\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/assessPatches/action\",\r\n \"Microsoft.HybridCompute/machines/installPatches/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\r\n \"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/write\",\r\n \"Microsoft.HybridCompute/machines/runcommands/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/licenses/write\",\r\n \"Microsoft.HybridCompute/licenses/delete\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-01T17:12:42.6172725Z\",\r\n \"updatedOn\": \"2024-05-22T15:18:10.5637137Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ddc140ed-e463-4246-9145-7c664192013f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ddc140ed-e463-4246-9145-7c664192013f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services LUIS Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \" Has access to all Read, Test, Write, Deploy and Delete functions under LUIS\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/listkeys/action\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LUIS/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T03:28:02.96118Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:25.4884913Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f72c8140-2111-481c-87ff-72b910f6e3f8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f72c8140-2111-481c-87ff-72b910f6e3f8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Language Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has access to Read and Test functions under Language portal\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/projects/export/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*/projects/export/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/query-text/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/query-dataverse/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/analyze-text/jobs/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/analyze-text/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/analyze-text/jobscancel/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/jobscancel/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/jobs/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/query-knowledgebases/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/generate/action\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T03:29:14.7643336Z\",\r\n \"updatedOn\": \"2023-03-01T16:11:03.4080312Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7628b7b8-a8b2-4cdc-b46f-e9b35248918e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7628b7b8-a8b2-4cdc-b46f-e9b35248918e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Language Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \" Has access to all Read, Test, and Write functions under Language Portal\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*\",\r\n \"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LanguageAuthoring/projects/publish/action\",\r\n \"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/projects/deployments/write\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*/projects/delete\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/write\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/delete\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/swap/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T03:29:39.5761019Z\",\r\n \"updatedOn\": \"2022-03-30T00:16:38.3744561Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f2310ca1-dc64-4889-bb49-c8e0fa3d47a8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f2310ca1-dc64-4889-bb49-c8e0fa3d47a8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Language Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has access to all Read, Test, Write, Deploy and Delete functions under Language portal\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/listkeys/action\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*\",\r\n \"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T03:30:07.6173528Z\",\r\n \"updatedOn\": \"2022-03-30T00:16:39.0775846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f07febfe-79bc-46b1-8b37-790e26e6e498\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f07febfe-79bc-46b1-8b37-790e26e6e498\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services LUIS Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has access to Read and Test functions under LUIS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LUIS/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/testdatasets/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T03:30:31.2704834Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:26.2134821Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18e81cdc-4e98-4e29-a639-e7d10c5a6226\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18e81cdc-4e98-4e29-a639-e7d10c5a6226\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services LUIS Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has access to all Read, Test, and Write functions under LUIS\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LUIS/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/delete\",\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/move/action\",\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/publish/action\",\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/settings/write\",\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/azureaccounts/action\",\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/azureaccounts/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T03:31:12.1580052Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:26.3934523Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6322a993-d5c9-4bed-b113-e49bbea25b27\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6322a993-d5c9-4bed-b113-e49bbea25b27\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PlayFab Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides read access to PlayFab resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.PlayFab/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T23:26:57.2248605Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:26.5784834Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a9a19cc5-31f4-447c-901f-56c0bb18fcaf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a9a19cc5-31f4-447c-901f-56c0bb18fcaf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Load Test Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, create, update, delete and execute load tests. View and list load test resources but can not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.LoadTestService/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.LoadTestService/loadtests/*\",\r\n \"Microsoft.LoadTestService/testProfiles/*\",\r\n \"Microsoft.LoadTestService/testProfileRuns/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-09T08:11:21.0936461Z\",\r\n \"updatedOn\": \"2024-05-16T15:24:47.2532254Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/749a398d-560b-491b-bb21-08924219302e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749a398d-560b-491b-bb21-08924219302e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Load Test Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Execute all operations on load test resources and load tests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.LoadTestService/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.LoadTestService/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-09T08:12:24.5500195Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:27.2897153Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/45bb0b16-2f0c-4e78-afaa-a07599b003f6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"45bb0b16-2f0c-4e78-afaa-a07599b003f6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PlayFab Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides contributor access to PlayFab resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.PlayFab/*/read\",\r\n \"Microsoft.PlayFab/*/write\",\r\n \"Microsoft.PlayFab/*/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-10T00:55:37.3326276Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:28.0547167Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0c8b84dc-067c-4039-9615-fa1a4b77c726\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0c8b84dc-067c-4039-9615-fa1a4b77c726\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Load Test Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View and list all load tests and load test resources but can not make any changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.LoadTestService/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.LoadTestService/loadtests/readTest/action\",\r\n \"Microsoft.LoadTestService/testProfiles/read\",\r\n \"Microsoft.LoadTestService/testProfileRuns/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-10T06:14:08.3903105Z\",\r\n \"updatedOn\": \"2024-05-16T15:24:47.2532254Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3ae3fb29-0000-4ccd-bf80-542e7b26e081\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3ae3fb29-0000-4ccd-bf80-542e7b26e081\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Immersive Reader User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to create Immersive Reader sessions and call APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/ImmersiveReader/getcontentmodelforreader/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-10T19:52:14.4487503Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:28.4146975Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b2de6794-95db-4659-8781-7e080d3f2b9d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b2de6794-95db-4659-8781-7e080d3f2b9d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The lab services contributor role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.LabServices/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.LabServices/labPlans/createLab/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-11T00:51:03.3308981Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:28.7792013Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f69b8690-cc87-41d6-b77a-a4bc3c0a966f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f69b8690-cc87-41d6-b77a-a4bc3c0a966f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Services Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The lab services reader role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.LabServices/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-11T00:55:30.4208618Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:28.9592032Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a5c394f-5eb7-4d4f-9c8e-e8eae39faebc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2a5c394f-5eb7-4d4f-9c8e-e8eae39faebc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Assistant\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The lab assistant role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.LabServices/labPlans/images/read\",\r\n \"Microsoft.LabServices/labPlans/read\",\r\n \"Microsoft.LabServices/labs/read\",\r\n \"Microsoft.LabServices/labs/schedules/read\",\r\n \"Microsoft.LabServices/labs/users/read\",\r\n \"Microsoft.LabServices/labs/users/invite/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/read\",\r\n \"Microsoft.LabServices/labs/virtualMachines/start/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/stop/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\r\n \"Microsoft.LabServices/locations/usages/read\",\r\n \"Microsoft.LabServices/skus/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-11T00:56:10.4295443Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:29.144253Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ce40b423-cede-4313-a93f-9b28290b72e1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ce40b423-cede-4313-a93f-9b28290b72e1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The lab operator role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.LabServices/labPlans/images/read\",\r\n \"Microsoft.LabServices/labPlans/read\",\r\n \"Microsoft.LabServices/labPlans/saveImage/action\",\r\n \"Microsoft.LabServices/labs/publish/action\",\r\n \"Microsoft.LabServices/labs/read\",\r\n \"Microsoft.LabServices/labs/schedules/read\",\r\n \"Microsoft.LabServices/labs/schedules/write\",\r\n \"Microsoft.LabServices/labs/schedules/delete\",\r\n \"Microsoft.LabServices/labs/users/read\",\r\n \"Microsoft.LabServices/labs/users/write\",\r\n \"Microsoft.LabServices/labs/users/delete\",\r\n \"Microsoft.LabServices/labs/users/invite/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/read\",\r\n \"Microsoft.LabServices/labs/virtualMachines/start/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/stop/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/resetPassword/action\",\r\n \"Microsoft.LabServices/locations/usages/read\",\r\n \"Microsoft.LabServices/skus/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-11T00:56:41.9942935Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:29.3242664Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a36e6959-b6be-4b12-8e9f-ef4b474d304d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a36e6959-b6be-4b12-8e9f-ef4b474d304d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The lab contributor role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.LabServices/labPlans/images/read\",\r\n \"Microsoft.LabServices/labPlans/read\",\r\n \"Microsoft.LabServices/labPlans/saveImage/action\",\r\n \"Microsoft.LabServices/labs/read\",\r\n \"Microsoft.LabServices/labs/write\",\r\n \"Microsoft.LabServices/labs/delete\",\r\n \"Microsoft.LabServices/labs/publish/action\",\r\n \"Microsoft.LabServices/labs/syncGroup/action\",\r\n \"Microsoft.LabServices/labs/schedules/read\",\r\n \"Microsoft.LabServices/labs/schedules/write\",\r\n \"Microsoft.LabServices/labs/schedules/delete\",\r\n \"Microsoft.LabServices/labs/users/read\",\r\n \"Microsoft.LabServices/labs/users/write\",\r\n \"Microsoft.LabServices/labs/users/delete\",\r\n \"Microsoft.LabServices/labs/users/invite/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/read\",\r\n \"Microsoft.LabServices/labs/virtualMachines/start/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/stop/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/resetPassword/action\",\r\n \"Microsoft.LabServices/locations/usages/read\",\r\n \"Microsoft.LabServices/skus/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.LabServices/labPlans/createLab/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-11T00:57:05.9018065Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:29.4992096Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5daaa2af-1fe8-407c-9122-bba179798270\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5daaa2af-1fe8-407c-9122-bba179798270\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\",\r\n \"Microsoft.Authorization/policyExemptions/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.IoTSecurity/*\",\r\n \"Microsoft.IoTFirmwareDefense/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2023-06-28T15:25:35.2618493Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web PubSub Service Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to Azure Web PubSub Service REST APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SignalRService/WebPubSub/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-24T09:10:11.833518Z\",\r\n \"updatedOn\": \"2023-04-06T15:21:51.7148896Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/12cf5a90-567b-43ae-8102-96cf46c7d9b4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12cf5a90-567b-43ae-8102-96cf46c7d9b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web PubSub Service Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to Azure Web PubSub Service REST APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SignalRService/WebPubSub/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-24T09:11:12.6235436Z\",\r\n \"updatedOn\": \"2023-04-06T15:21:51.6558878Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bfb1c7d2-fb1a-466b-b2ba-aee63b92deaf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfb1c7d2-fb1a-466b-b2ba-aee63b92deaf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR App Server\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets your app server access SignalR Service with AAD auth options.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SignalRService/SignalR/auth/accessKey/action\",\r\n \"Microsoft.SignalRService/SignalR/serverConnection/write\",\r\n \"Microsoft.SignalRService/SignalR/clientConnection/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-29T06:54:40.1201435Z\",\r\n \"updatedOn\": \"2021-11-16T05:19:04.8579948Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/420fcaa2-552c-430f-98ca-3264be4806c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"420fcaa2-552c-430f-98ca-3264be4806c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine User Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as a regular user.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.HybridCompute/machines/*/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/virtualMachines/login/action\",\r\n \"Microsoft.HybridCompute/machines/login/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-09T18:36:13.3315744Z\",\r\n \"updatedOn\": \"2021-11-18T00:55:50.6185845Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fb879df8-f326-4884-b1cf-06f3ad86be52\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb879df8-f326-4884-b1cf-06f3ad86be52\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Administrator Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.HybridCompute/machines/*/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/virtualMachines/login/action\",\r\n \"Microsoft.Compute/virtualMachines/loginAsAdmin/action\",\r\n \"Microsoft.HybridCompute/machines/login/action\",\r\n \"Microsoft.HybridCompute/machines/loginAsAdmin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-09T18:36:13.3315744Z\",\r\n \"updatedOn\": \"2021-11-18T00:56:53.8134295Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1c0163c0-47e6-4577-8991-ea5c82e286e4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1c0163c0-47e6-4577-8991-ea5c82e286e4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Resource Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, write, delete and re-onboard Azure Connected Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/*\",\r\n \"Microsoft.HybridCompute/machines/extensions/*\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/*\",\r\n \"Microsoft.HybridCompute/machines/runCommands/*\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/settings/*\",\r\n \"Microsoft.HybridCompute/gateways/*\",\r\n \"Microsoft.HybridCompute/privateLinkScopes/*\",\r\n \"Microsoft.HybridCompute/licenses/*\",\r\n \"Microsoft.HybridCompute/locations/*\",\r\n \"Microsoft.HybridCompute/*/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T20:24:59.1474607Z\",\r\n \"updatedOn\": \"2025-02-03T16:08:25.0326897Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cd570a14-e51a-42ad-bac8-bafd67325302\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/accessToken/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupTriggerValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperationsStatuses/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/locations/backupAadProperties/read\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrJobs/action\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrJob/action\",\r\n \"Microsoft.RecoveryServices/locations/backupCrossRegionRestore/action\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrOperationResults/read\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrOperationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/write\",\r\n \"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/backupVaults/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/operationStatus/read\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/locations/operationStatus/read\",\r\n \"Microsoft.DataProtection/locations/operationResults/read\",\r\n \"Microsoft.DataProtection/operations/read\",\r\n \"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/crossRegionRestore/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/validateCrossRegionRestore/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJobs/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJob/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchSecondaryRecoveryPoints/action\",\r\n \"Microsoft.DataProtection/locations/checkFeatureSupport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/delete\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/unlockDelete/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/unlockDelete/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/validateForModifyBackup/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2025-01-28T16:08:58.1354386Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Workbook Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can save shared workbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/workbooks/write\",\r\n \"Microsoft.Insights/workbooks/delete\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Insights/workbooks/revisions/read\",\r\n \"Microsoft.Insights/workbooktemplates/write\",\r\n \"Microsoft.Insights/workbooktemplates/delete\",\r\n \"Microsoft.Insights/workbooktemplates/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T20:59:42.4820277Z\",\r\n \"updatedOn\": \"2022-12-12T18:07:19.5792794Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e8ddcd69-c73f-4f9f-9844-4100522f16ad\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e8ddcd69-c73f-4f9f-9844-4100522f16ad\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Workbook Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read workbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.insights/workbooks/read\",\r\n \"microsoft.insights/workbooks/revisions/read\",\r\n \"microsoft.insights/workbooktemplates/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T20:56:17.680814Z\",\r\n \"updatedOn\": \"2022-12-12T18:07:19.5792794Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b279062a-9be3-42a0-92ae-8b3cf002ec4d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b279062a-9be3-42a0-92ae-8b3cf002ec4d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.AlertsManagement/alerts/*\",\r\n \"Microsoft.AlertsManagement/alertsSummary/*\",\r\n \"Microsoft.Insights/actiongroups/*\",\r\n \"Microsoft.Insights/activityLogAlerts/*\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/createNotifications/*\",\r\n \"Microsoft.Insights/dataCollectionEndpoints/*\",\r\n \"Microsoft.Insights/dataCollectionRules/*\",\r\n \"Microsoft.Insights/dataCollectionRuleAssociations/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/metricalerts/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/notificationStatus/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/scheduledqueryrules/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.Insights/workbooktemplates/*\",\r\n \"Microsoft.Insights/privateLinkScopes/*\",\r\n \"Microsoft.Insights/privateLinkScopeOperationStatuses/*\",\r\n \"Microsoft.Monitor/accounts/*\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.OperationalInsights/locations/workspaces/failover/action\",\r\n \"Microsoft.OperationalInsights/workspaces/failback/action\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\r\n \"Microsoft.AlertsManagement/actionRules/*\",\r\n \"Microsoft.AlertsManagement/smartGroups/*\",\r\n \"Microsoft.AlertsManagement/migrateFromSmartDetection/*\",\r\n \"Microsoft.AlertsManagement/investigations/*\",\r\n \"Microsoft.AlertsManagement/prometheusRuleGroups/*\",\r\n \"Microsoft.Monitor/investigations/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2024-09-26T15:23:00.7494092Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Metrics Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables publishing metrics against Azure resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Insights/Metrics/Write\",\r\n \"Microsoft.Insights/Telemetry/Write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-14T00:36:16.5610279Z\",\r\n \"updatedOn\": \"2022-01-04T00:38:04.0289073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3913510d-42f4-4e42-8a64-420c390055eb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Purview role 1 (Deprecated)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Deprecated role.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Purview/accounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Purview/accounts/data/read\",\r\n \"Microsoft.Purview/accounts/data/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-14T02:37:15.0123345Z\",\r\n \"updatedOn\": \"2022-01-04T00:43:15.6924286Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8a3c2885-9b38-4fd2-9d99-91af537c1347\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8a3c2885-9b38-4fd2-9d99-91af537c1347\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Purview role 2 (Deprecated)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Deprecated role.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Purview/accounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Purview/accounts/scan/read\",\r\n \"Microsoft.Purview/accounts/scan/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-14T02:40:05.0975648Z\",\r\n \"updatedOn\": \"2022-01-04T00:47:22.9678219Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/200bba9e-f0c8-430f-892b-6f0794863803\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"200bba9e-f0c8-430f-892b-6f0794863803\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Purview role 3 (Deprecated)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Deprecated role.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Purview/accounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Purview/accounts/data/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-14T02:39:22.234474Z\",\r\n \"updatedOn\": \"2022-01-04T00:48:08.2844802Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ff100721-1b9d-43d8-af52-42b69c1272db\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ff100721-1b9d-43d8-af52-42b69c1272db\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Autonomous Development Platform Data Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permissions to upload and manage new Autonomous Development Platform measurements.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/discoveries/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/uploads/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurements/states/new/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurementCollections/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/accounts/measurementCollections/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/read\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/discoveries/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/uploads/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/classifications/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/dataStreams/classifications/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurementCollections/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurements/states/new/changeState/action\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/changeState/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-15T11:30:01.7459379Z\",\r\n \"updatedOn\": \"2022-09-15T19:15:50.9036822Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b8b15564-4fa6-4a59-ab12-03e1d9594795\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b8b15564-4fa6-4a59-ab12-03e1d9594795\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Autonomous Development Platform Data Owner (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to Autonomous Development Platform data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-15T12:13:59.9702378Z\",\r\n \"updatedOn\": \"2022-01-04T13:20:26.2040404Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/27f8b550-c507-4db9-86f2-f4b8e816d59d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"27f8b550-c507-4db9-86f2-f4b8e816d59d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Autonomous Development Platform Data Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read access to Autonomous Development Platform data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-15T12:11:31.9843256Z\",\r\n \"updatedOn\": \"2022-01-04T13:21:04.3207709Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d63b75f7-47ea-4f27-92ac-e0d173aaf093\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d63b75f7-47ea-4f27-92ac-e0d173aaf093\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Officer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Perform any action on the keys of a key vault, except manage permissions. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/*\",\r\n \"Microsoft.KeyVault/vaults/keyrotationpolicies/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.0099249Z\",\r\n \"updatedOn\": \"2022-01-06T23:21:17.9760884Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/14b46e9e-c2b7-41b4-b07b-48a6ebf60603\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"14b46e9e-c2b7-41b4-b07b-48a6ebf60603\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Update Deployments Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives you read access to management operations, but does not allow making changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/read\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-22T00:01:34.705363Z\",\r\n \"updatedOn\": \"2022-01-13T01:35:51.6463216Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/49e2f5d2-7741-4835-8efa-19e1fe35e47f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49e2f5d2-7741-4835-8efa-19e1fe35e47f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Update Deployments Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives you full access to management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/read\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/write\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/delete\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-21T23:59:52.1001666Z\",\r\n \"updatedOn\": \"2022-01-13T01:59:19.4616366Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e4237640-0e3d-4a46-8fda-70bc94856432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e4237640-0e3d-4a46-8fda-70bc94856432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc VMware Private Clouds Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Arc VMware Private Clouds Onboarding role has permissions to provision all the required resources for onboard and deboard vCenter instances to Azure.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ConnectedVMwarevSphere/vcenters/Write\",\r\n \"Microsoft.ConnectedVMwarevSphere/vcenters/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/vcenters/Delete\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/Write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/Read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/Delete\",\r\n \"Microsoft.KubernetesConfiguration/operations/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Write\",\r\n \"Microsoft.ExtendedLocation/customLocations/Delete\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ResourceConnector/appliances/Read\",\r\n \"Microsoft.ResourceConnector/appliances/Write\",\r\n \"Microsoft.ResourceConnector/appliances/Delete\",\r\n \"Microsoft.ResourceConnector/appliances/listClusterUserCredential/action\",\r\n \"Microsoft.BackupSolutions/vmwareapplications/write\",\r\n \"Microsoft.BackupSolutions/vmwareapplications/delete\",\r\n \"Microsoft.BackupSolutions/vmwareapplications/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-01T22:18:08.4480747Z\",\r\n \"updatedOn\": \"2023-08-21T15:00:43.2807863Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/67d33e57-3129-45e6-bb0b-7cc522f762fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"67d33e57-3129-45e6-bb0b-7cc522f762fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Chamber Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything under your Modeling and Simulation Workbench chamber.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ModSimWorkbench/*/read\",\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/fileRequests/manage/action\",\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/connector/setCopyPaste/action\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/upload/action\",\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/files/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-12-15T20:53:14.4428297Z\",\r\n \"updatedOn\": \"2024-03-29T22:26:19.3515764Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4e9b8407-af2e-495b-ae54-bb60a55b1b5a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e9b8407-af2e-495b-ae54-bb60a55b1b5a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Sentinel Automation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft Sentinel Automation Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Logic/workflows/triggers/read\",\r\n \"Microsoft.Logic/workflows/triggers/listCallbackUrl/action\",\r\n \"Microsoft.Logic/workflows/runs/read\",\r\n \"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/read\",\r\n \"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/listCallbackUrl/action\",\r\n \"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/runs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-24T08:50:52.0382991Z\",\r\n \"updatedOn\": \"2022-01-26T09:25:00.4699337Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f4c81013-99ee-4d62-a7ee-b3f1f648599a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f4c81013-99ee-4d62-a7ee-b3f1f648599a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can't make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Cdn/profiles/afdendpoints/validateCustomDomain/action\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2023-12-08T09:25:10.8320712Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Chamber User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything under your Modeling and Simulation Workbench chamber, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/*/read\",\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/workloads/*\",\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/getUploadUri/action\",\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/fileRequests/getDownloadUri/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/upload/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-12-15T20:51:06.2119764Z\",\r\n \"updatedOn\": \"2023-02-13T16:14:49.7073547Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4447db05-44ed-4da3-ae60-6cbece780e32\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4447db05-44ed-4da3-ae60-6cbece780e32\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Speech User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Access to the real-time speech recognition and batch transcription APIs, real-time speech synthesis and long audio APIs, as well as to read the data/test/model/endpoint for custom models, but can’t create, delete or modify the data/test/model/endpoint for custom models.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/read\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/write\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/delete\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/action\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*/frontend/action\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/text-dependent/*/action\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/text-independent/*/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVoice/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVoice/evaluations/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVoice/longaudiosynthesis/*\",\r\n \"Microsoft.CognitiveServices/accounts/AudioContentCreation/*\",\r\n \"Microsoft.CognitiveServices/accounts/VideoTranslation/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomAvatar/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/BatchAvatar/*\",\r\n \"Microsoft.CognitiveServices/accounts/BatchTextToSpeech/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/files/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/utterances/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-30T11:28:27.4339032Z\",\r\n \"updatedOn\": \"2024-10-21T15:04:46.4452794Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f2dc8367-1007-4938-bd23-fe263f013447\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f2dc8367-1007-4938-bd23-fe263f013447\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Windows Admin Center Administrator Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let's you manage the OS of your resource via Windows Admin Center as an administrator.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/*/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/*\",\r\n \"Microsoft.HybridCompute/machines/upgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\r\n \"Microsoft.Network/networkWatchers/securityGroupView/action\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/write\",\r\n \"Microsoft.HybridConnectivity/endpoints/write\",\r\n \"Microsoft.HybridConnectivity/endpoints/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/write\",\r\n \"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/listManagedProxyDetails/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/patchAssessmentResults/latest/read\",\r\n \"Microsoft.Compute/virtualMachines/patchAssessmentResults/latest/softwarePatches/read\",\r\n \"Microsoft.Compute/virtualMachines/patchInstallationResults/read\",\r\n \"Microsoft.Compute/virtualMachines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/runCommands/read\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/locations/publishers/artifacttypes/types/read\",\r\n \"Microsoft.Compute/locations/publishers/artifacttypes/types/versions/read\",\r\n \"Microsoft.Compute/diskAccesses/read\",\r\n \"Microsoft.Compute/galleries/images/read\",\r\n \"Microsoft.Compute/images/read\",\r\n \"Microsoft.AzureStackHCI/Clusters/Read\",\r\n \"Microsoft.AzureStackHCI/Clusters/ArcSettings/Read\",\r\n \"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Read\",\r\n \"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Write\",\r\n \"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Delete\",\r\n \"Microsoft.AzureStackHCI/Operations/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Extensions/Write\",\r\n \"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Extensions/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HybridCompute/machines/WACLoginAsAdmin/action\",\r\n \"Microsoft.Compute/virtualMachines/WACloginAsAdmin/action\",\r\n \"Microsoft.AzureStackHCI/Clusters/WACloginAsAdmin/Action\",\r\n \"Microsoft.ConnectedVMwarevSphere/virtualmachines/WACloginAsAdmin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-01-12T00:51:19.5581155Z\",\r\n \"updatedOn\": \"2024-01-25T16:40:52.3962677Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a6333a3e-0164-44c3-b281-7a577aff287f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a6333a3e-0164-44c3-b281-7a577aff287f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Policy Add-on Deployment\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Deploy the Azure Policy add-on on Azure Kubernetes Service clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/publicIPPrefixes/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Compute/diskEncryptionSets/read\",\r\n \"Microsoft.Compute/proximityPlacementGroups/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-02-07T20:51:48.5662807Z\",\r\n \"updatedOn\": \"2022-03-16T01:35:31.5373337Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18ed5180-3e48-46fd-8541-4ea054d57064\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Guest Configuration Resource Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, write Guest Configuration Resource.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/write\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/*/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-01-13T21:31:41.9626667Z\",\r\n \"updatedOn\": \"2022-02-10T19:22:44.9057916Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/088ab73d-1256-47ae-bea9-9de8e7131f31\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"088ab73d-1256-47ae-bea9-9de8e7131f31\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Domain Services Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view Azure AD Domain Services and related network configurations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Insights/Logs/Read\",\r\n \"Microsoft.Insights/Metrics/read\",\r\n \"Microsoft.Insights/DiagnosticSettings/read\",\r\n \"Microsoft.Insights/DiagnosticSettingsCategories/Read\",\r\n \"Microsoft.AAD/domainServices/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/azureFirewalls/read\",\r\n \"Microsoft.Network/ddosProtectionPlans/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/*/read\",\r\n \"Microsoft.Network/natGateways/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/routeTables/read\",\r\n \"Microsoft.Network/routeTables/routes/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-02-15T19:38:46.904317Z\",\r\n \"updatedOn\": \"2022-06-27T19:30:44.3629686Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/361898ef-9ed1-48c2-849c-a832951106bb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"361898ef-9ed1-48c2-849c-a832951106bb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Domain Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Azure AD Domain Services and related network configurations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Insights/Logs/Read\",\r\n \"Microsoft.Insights/Metrics/Read\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/DiagnosticSettingsCategories/Read\",\r\n \"Microsoft.AAD/register/action\",\r\n \"Microsoft.AAD/unregister/action\",\r\n \"Microsoft.AAD/domainServices/*\",\r\n \"Microsoft.Network/register/action\",\r\n \"Microsoft.Network/unregister/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworks/peer/action\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\r\n \"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/azureFirewalls/read\",\r\n \"Microsoft.Network/ddosProtectionPlans/read\",\r\n \"Microsoft.Network/ddosProtectionPlans/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/delete\",\r\n \"Microsoft.Network/loadBalancers/*/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/natGateways/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/write\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\r\n \"Microsoft.Network/routeTables/read\",\r\n \"Microsoft.Network/routeTables/write\",\r\n \"Microsoft.Network/routeTables/delete\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Network/routeTables/routes/read\",\r\n \"Microsoft.Network/routeTables/routes/write\",\r\n \"Microsoft.Network/routeTables/routes/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-02-15T19:40:22.3943189Z\",\r\n \"updatedOn\": \"2022-06-27T19:30:44.3629686Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/eeaeda52-9324-47f6-8069-5d5bade478b2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"eeaeda52-9324-47f6-8069-5d5bade478b2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Resolver Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS resolver resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/dnsResolvers/read\",\r\n \"Microsoft.Network/dnsResolvers/write\",\r\n \"Microsoft.Network/dnsResolvers/delete\",\r\n \"Microsoft.Network/dnsResolvers/join/action\",\r\n \"Microsoft.Network/dnsResolvers/inboundEndpoints/read\",\r\n \"Microsoft.Network/dnsResolvers/inboundEndpoints/write\",\r\n \"Microsoft.Network/dnsResolvers/inboundEndpoints/delete\",\r\n \"Microsoft.Network/dnsResolvers/inboundEndpoints/join/action\",\r\n \"Microsoft.Network/dnsResolvers/outboundEndpoints/read\",\r\n \"Microsoft.Network/dnsResolvers/outboundEndpoints/write\",\r\n \"Microsoft.Network/dnsResolvers/outboundEndpoints/delete\",\r\n \"Microsoft.Network/dnsResolvers/outboundEndpoints/join/action\",\r\n \"Microsoft.Network/dnsForwardingRulesets/read\",\r\n \"Microsoft.Network/dnsForwardingRulesets/write\",\r\n \"Microsoft.Network/dnsForwardingRulesets/delete\",\r\n \"Microsoft.Network/dnsForwardingRulesets/join/action\",\r\n \"Microsoft.Network/dnsForwardingRulesets/forwardingRules/read\",\r\n \"Microsoft.Network/dnsForwardingRulesets/forwardingRules/write\",\r\n \"Microsoft.Network/dnsForwardingRulesets/forwardingRules/delete\",\r\n \"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/read\",\r\n \"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/write\",\r\n \"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/delete\",\r\n \"Microsoft.Network/locations/dnsResolverOperationResults/read\",\r\n \"Microsoft.Network/locations/dnsResolverOperationStatuses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Network/virtualNetworks/joinLoadBalancer/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinLoadBalancer/action\",\r\n \"Microsoft.Network/natGateways/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Network/serviceEndpointPolicies/join/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-02-16T23:25:04.4308795Z\",\r\n \"updatedOn\": \"2022-03-12T03:10:56.0891783Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0f2ebee7-ffd4-4fc0-b3b7-664099fdad5d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0f2ebee7-ffd4-4fc0-b3b7-664099fdad5d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Enabled Kubernetes Cluster User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster user credentials action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/listClusterUserCredentials/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-28T17:37:00.7637445Z\",\r\n \"updatedOn\": \"2022-02-17T02:29:05.1000798Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/00493d72-78f6-4148-b6c5-d3ce8e4799dd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00493d72-78f6-4148-b6c5-d3ce8e4799dd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Operator for Managed Disks\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permissions to upload data to empty managed disks, read, or export data of managed disks (not attached to running VMs) and snapshots using SAS URIs and Azure AD authentication.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/disks/download/action\",\r\n \"Microsoft.Compute/disks/upload/action\",\r\n \"Microsoft.Compute/snapshots/download/action\",\r\n \"Microsoft.Compute/snapshots/upload/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-03-01T07:44:08.5420759Z\",\r\n \"updatedOn\": \"2022-03-01T07:44:08.5420759Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/959f8984-c045-4866-89c7-12bf9737be2e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"959f8984-c045-4866-89c7-12bf9737be2e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AgFood Platform Sensor Partner Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides contribute access to manage sensor related entities in AgFood Platform Service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/sensorPartnerScope/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/sensorPartnerScope/sensors/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2022-03-09T11:06:02.2546966Z\",\r\n \"updatedOn\": \"2022-10-27T09:36:05.2105861Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6b77f0a0-0d89-41cc-acd1-579c22c17a67\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6b77f0a0-0d89-41cc-acd1-579c22c17a67\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Compute Gallery Sharing Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role allows user to share gallery to another subscription/tenant or share it to the public.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/galleries/share/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-03-10T06:37:39.5861946Z\",\r\n \"updatedOn\": \"2022-03-26T02:42:25.9674154Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1ef6a3be-d0ac-425d-8c01-acb62866290b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1ef6a3be-d0ac-425d-8c01-acb62866290b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduled Patching Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to manage maintenance configurations with maintenance scope InGuestPatch and corresponding configuration assignments\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Maintenance/maintenanceConfigurations/read\",\r\n \"Microsoft.Maintenance/maintenanceConfigurations/write\",\r\n \"Microsoft.Maintenance/maintenanceConfigurations/delete\",\r\n \"Microsoft.Maintenance/configurationAssignments/read\",\r\n \"Microsoft.Maintenance/configurationAssignments/write\",\r\n \"Microsoft.Maintenance/configurationAssignments/delete\",\r\n \"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/read\",\r\n \"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/write\",\r\n \"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/delete\",\r\n \"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/read\",\r\n \"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/write\",\r\n \"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-03-21T16:36:03.6770776Z\",\r\n \"updatedOn\": \"2022-04-13T14:13:00.6215441Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cd08ab90-6b14-449c-ad9a-8f8e549482c6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cd08ab90-6b14-449c-ad9a-8f8e549482c6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevCenter Dev Box User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to create and manage dev boxes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DevCenter/projects/read\",\r\n \"Microsoft.DevCenter/projects/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DevCenter/projects/users/devboxes/userStop/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userStart/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userGetRemoteConnection/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userRead/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userWrite/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userDelete/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userUpcomingActionRead/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userUpcomingActionManage/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userActionRead/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userActionManage/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userCustomize/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-01T00:43:09.4468117Z\",\r\n \"updatedOn\": \"2023-10-19T19:09:51.437007Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/45d50f46-0b78-4001-a660-4198cbe8cd05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"45d50f46-0b78-4001-a660-4198cbe8cd05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevCenter Project Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to manage project resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DevCenter/projects/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.DevCenter/projects/write\",\r\n \"Microsoft.DevCenter/projects/delete\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.DevCenter/projects/users/devboxes/adminStart/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/adminStop/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/adminRead/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/adminWrite/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/adminDelete/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userStop/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userStart/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userGetRemoteConnection/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userRead/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userWrite/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userDelete/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userActionRead/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userActionManage/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userCustomize/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminRead/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/userWrite/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminWrite/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/userDelete/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminDelete/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminAction/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminActionRead/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminActionManage/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminOutputsRead/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-01T01:58:38.0472365Z\",\r\n \"updatedOn\": \"2024-08-12T16:09:21.8719358Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/331c37c6-af14-46d9-b9f4-e1909e1b95a0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"331c37c6-af14-46d9-b9f4-e1909e1b95a0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Local User Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as a local user configured on the arc server\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/*/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-07T06:13:18.8975022Z\",\r\n \"updatedOn\": \"2022-04-17T01:05:14.2345428Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/602da2ba-a5c2-41da-b01d-5360126ab525\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"602da2ba-a5c2-41da-b01d-5360126ab525\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc ScVmm Private Cloud User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Arc ScVmm Private Cloud User has permissions to use the ScVmm resources to deploy VMs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"microsoft.scvmm/virtualnetworks/join/action\",\r\n \"microsoft.scvmm/virtualnetworks/Read\",\r\n \"microsoft.scvmm/virtualmachinetemplates/clone/action\",\r\n \"microsoft.scvmm/virtualmachinetemplates/Read\",\r\n \"microsoft.scvmm/clouds/deploy/action\",\r\n \"microsoft.scvmm/clouds/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/enabledresourcetypes/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-13T23:34:21.1716375Z\",\r\n \"updatedOn\": \"2023-10-09T15:06:52.9183534Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c0781e91-8102-4553-8951-97c6d4243cda\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c0781e91-8102-4553-8951-97c6d4243cda\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc ScVmm VM Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Arc ScVmm VM Contributor has permissions to perform all VM actions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.scvmm/virtualmachines/*\",\r\n \"microsoft.scvmm/virtualMachineInstances/*\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/assessPatches/action\",\r\n \"Microsoft.HybridCompute/machines/installPatches/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\r\n \"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/write\",\r\n \"Microsoft.HybridCompute/machines/runcommands/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/licenses/write\",\r\n \"Microsoft.HybridCompute/licenses/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-13T23:34:21.1716375Z\",\r\n \"updatedOn\": \"2023-10-09T15:06:52.9193525Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e582369a-e17b-42a5-b10c-874c387c530b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e582369a-e17b-42a5-b10c-874c387c530b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc ScVmm Private Clouds Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Arc ScVmm Private Clouds Onboarding role has permissions to provision all the required resources for onboard and deboard vmm server instances to Azure.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.scvmm/vmmservers/Read\",\r\n \"microsoft.scvmm/vmmservers/Write\",\r\n \"microsoft.scvmm/vmmservers/Delete\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-13T23:34:21.1716375Z\",\r\n \"updatedOn\": \"2023-05-22T15:13:04.902983Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6aac74c4-6311-40d2-bbdd-7d01e7c6e3a9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6aac74c4-6311-40d2-bbdd-7d01e7c6e3a9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc ScVmm Administrator role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Arc ScVmm VM Administrator has permissions to perform all ScVmm actions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ScVmm/*\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/assessPatches/action\",\r\n \"Microsoft.HybridCompute/machines/installPatches/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\r\n \"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/write\",\r\n \"Microsoft.HybridCompute/machines/runcommands/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/licenses/write\",\r\n \"Microsoft.HybridCompute/licenses/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-13T23:34:24.1295963Z\",\r\n \"updatedOn\": \"2023-10-09T15:06:52.9193525Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a92dfd61-77f9-4aec-a531-19858b406c87\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a92dfd61-77f9-4aec-a531-19858b406c87\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight on AKS Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants a user/group the ability to create, delete and manage clusters within a given cluster pool. Cluster Admin can also run workloads, monitor, and manage all user activity on these clusters.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/write\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/delete\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/resize/action\",\r\n \"Microsoft.HDInsight/clusterpools/clusters/instanceviews/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/jobs/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/runjob/action\",\r\n \"Microsoft.HDInsight/clusterpools/clusters/serviceconfigs/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/availableupgrades/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/upgrade/action\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/rollback/action\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/upgradehistories/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/libraries/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/managelibraries/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/*/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/logs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-14T07:38:22.8690141Z\",\r\n \"updatedOn\": \"2024-07-02T15:07:53.5776614Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd036e6b-1266-47a0-b0bb-a05d04831731\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd036e6b-1266-47a0-b0bb-a05d04831731\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight on AKS Cluster Pool Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, create, modify and delete HDInsight on AKS cluster pools and create clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/write\",\r\n \"Microsoft.HDInsight/clusterPools/delete\",\r\n \"Microsoft.HDInsight/clusterPools/read\",\r\n \"Microsoft.HDInsight/clusterPools/write\",\r\n \"Microsoft.HDInsight/clusterpools/availableupgrades/read\",\r\n \"Microsoft.HDInsight/clusterpools/upgrade/action\",\r\n \"Microsoft.HDInsight/clusterPools/upgradehistories/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/*/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/logs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-14T07:38:22.8690141Z\",\r\n \"updatedOn\": \"2024-07-02T15:07:54.2284774Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7656b436-37d4-490a-a4ab-d39f838f0042\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7656b436-37d4-490a-a4ab-d39f838f0042\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Importer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and import FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/import/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-19T14:05:02.2341374Z\",\r\n \"updatedOn\": \"2022-04-21T15:21:45.3114429Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4465e953-8ced-4406-a58e-0f6e3f3b530b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4465e953-8ced-4406-a58e-0f6e3f3b530b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight on AKS Cluster Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants a user/group the ability to read cluster configurations, resize clusters and run jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HDInsight/clusterPools/read\",\r\n \"Microsoft.Hdinsight/clusterpools/clusters/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/resize/action\",\r\n \"Microsoft.HDInsight/clusterpools/clusters/instanceviews/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/jobs/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/runjob/action\",\r\n \"Microsoft.HDInsight/clusterpools/clusters/serviceconfigs/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/availableupgrades/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/upgradehistories/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/libraries/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/managelibraries/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/logs/read\",\r\n \"Microsoft.Insights/diagnosticSettings/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-26T16:16:21.608189Z\",\r\n \"updatedOn\": \"2024-07-02T15:07:53.5776614Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bcf28286-af25-4c81-bb6f-351fcab5dbe9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bcf28286-af25-4c81-bb6f-351fcab5dbe9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Developer Portal Content Editor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can customize the developer portal, edit its content, and publish it.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/portalRevisions/read\",\r\n \"Microsoft.ApiManagement/service/portalRevisions/write\",\r\n \"Microsoft.ApiManagement/service/contentTypes/read\",\r\n \"Microsoft.ApiManagement/service/contentTypes/delete\",\r\n \"Microsoft.ApiManagement/service/contentTypes/write\",\r\n \"Microsoft.ApiManagement/service/contentTypes/contentItems/read\",\r\n \"Microsoft.ApiManagement/service/contentTypes/contentItems/write\",\r\n \"Microsoft.ApiManagement/service/contentTypes/contentItems/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-05-06T23:48:52.0904132Z\",\r\n \"updatedOn\": \"2022-05-11T03:49:58.0615604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c031e6a8-4391-4de0-8d69-4706a7ed3729\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c031e6a8-4391-4de0-8d69-4706a7ed3729\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"VM Scanner Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role that provides access to disk snapshot for security analysis.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Compute/diskEncryptionSets/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-05-15T22:07:11.4824101Z\",\r\n \"updatedOn\": \"2024-09-10T15:22:50.4935371Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d24ecba3-c1f4-40fa-a7bb-4588a071e8fd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic SAN Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to all resources under Azure Elastic SAN including changing network security policies to unblock data path access\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ElasticSan/elasticSans/*\",\r\n \"Microsoft.ElasticSan/locations/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-05-26T14:43:05.0517355Z\",\r\n \"updatedOn\": \"2022-08-23T19:38:11.070975Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/80dcbedb-47ef-405d-95bd-188a1b4ac406\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"80dcbedb-47ef-405d-95bd-188a1b4ac406\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic SAN Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for control path read access to Azure Elastic SAN\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ElasticSan/elasticSans/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-06-01T09:07:18.102055Z\",\r\n \"updatedOn\": \"2022-08-23T19:38:11.070975Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/af6a70f8-3c9f-4105-acf1-d719e9fca4ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"af6a70f8-3c9f-4105-acf1-d719e9fca4ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Power On Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide permission to the Azure Virtual Desktop Resource Provider to start virtual machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/read\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/start/action\",\r\n \"Microsoft.AzureStackHCI/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-06-29T03:46:13.8314771Z\",\r\n \"updatedOn\": \"2024-02-13T16:21:42.6510575Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/489581de-a3bd-480d-9518-53dea7416b33\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"489581de-a3bd-480d-9518-53dea7416b33\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role is in preview and subject to change. Provide permission to the Azure Virtual Desktop Resource Provider to create, delete, update, start, and stop virtual machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/write\",\r\n \"Microsoft.DesktopVirtualization/hostpools/retrieveRegistrationToken/action\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/write\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/delete\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/disconnect/action\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/sendMessage/action\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionHostConfigurations/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/doNotUseInternalAPI/action\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/retryprovisioning/action\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/availabilitySets/write\",\r\n \"Microsoft.Compute/availabilitySets/vmSizes/read\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/galleries/read\",\r\n \"Microsoft.Compute/galleries/images/read\",\r\n \"Microsoft.Compute/galleries/images/versions/read\",\r\n \"Microsoft.Compute/images/read\",\r\n \"Microsoft.Compute/locations/usages/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/skus/read\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/delete\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/runCommand/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/write\",\r\n \"Microsoft.Compute/virtualMachines/extensions/delete\",\r\n \"Microsoft.Compute/virtualMachines/runCommands/read\",\r\n \"Microsoft.Compute/virtualMachines/runCommands/write\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/usages/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Marketplace/offerTypes/publishers/offers/plans/agreements/read\",\r\n \"Microsoft.KeyVault/vaults/deploy/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.DesktopVirtualization/scalingPlans/read\",\r\n \"Microsoft.DesktopVirtualization/scalingPlans/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-06-29T03:46:13.8314771Z\",\r\n \"updatedOn\": \"2024-09-11T15:31:21.7277586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a959dbd1-f747-45e3-8ba6-dd80f235f97c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a959dbd1-f747-45e3-8ba6-dd80f235f97c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Power On Off Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide permission to the Azure Virtual Desktop Resource Provider to start and stop virtual machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.AzureStackHCI/operations/read\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/read\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/restart/action\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/start/action\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/stop/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesCancelOperations/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesExecuteDeallocate/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesExecuteHibernate/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesExecuteStart/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesGetOperationErrors/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesGetOperationStatus/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesSubmitDeallocate/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesSubmitHibernate/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesSubmitStart/action\",\r\n \"Microsoft.ComputeSchedule/register/action\",\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/delete\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/sendMessage/action\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/write\",\r\n \"Microsoft.DesktopVirtualization/hostpools/write\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/eventtypes/values/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-06-29T03:46:13.8314771Z\",\r\n \"updatedOn\": \"2024-08-16T18:32:41.4531347Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/40c5ff49-9181-41f8-ae61-143b0e78555e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"40c5ff49-9181-41f8-ae61-143b0e78555e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Access Review Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you grant Access Review System app permissions to discover and revoke access as needed by the access review process.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Management/getEntities/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-07-04T19:06:39.6698534Z\",\r\n \"updatedOn\": \"2022-07-04T19:06:39.6698534Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/76cc9ee4-d5d3-4a45-a930-26add3d73475\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76cc9ee4-d5d3-4a45-a930-26add3d73475\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic SAN Volume Group Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to a volume group in Azure Elastic SAN including changing network security policies to unblock data path access\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/*\",\r\n \"Microsoft.ElasticSan/locations/asyncoperations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-07-04T19:06:39.6698534Z\",\r\n \"updatedOn\": \"2022-08-23T19:38:11.070975Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a8281131-f312-4f34-8d98-ae12be9f0d23\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a8281131-f312-4f34-8d98-ae12be9f0d23\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Trusted Signing Identity Verifier\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage identity or business verification requests. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CodeSigning/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CodeSigning/IdentityVerification/Read\",\r\n \"Microsoft.CodeSigning/IdentityVerification/Write\",\r\n \"Microsoft.CodeSigning/IdentityVerification/Delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-07-29T09:38:19.4833637Z\",\r\n \"updatedOn\": \"2024-10-25T14:18:04.3435129Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4339b7cf-9826-4e41-b4ed-c7f4505dac08\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4339b7cf-9826-4e41-b4ed-c7f4505dac08\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Video Indexer Restricted Viewer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has access to view and search through all video's insights and transcription in the Video Indexer portal. No access to model customization, embedding of widget, downloading videos, or sharing the account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.VideoIndexer/*/read\",\r\n \"Microsoft.VideoIndexer/accounts/*/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.VideoIndexer/*/write\",\r\n \"Microsoft.VideoIndexer/*/delete\",\r\n \"Microsoft.VideoIndexer/accounts/generateAccessToken/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-09T22:16:43.154985Z\",\r\n \"updatedOn\": \"2022-08-09T22:16:43.154985Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a2c4a527-7dc0-4ee3-897b-403ade70fafb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a2c4a527-7dc0-4ee3-897b-403ade70fafb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can access the data in an Azure Monitor Workspace.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Monitor/accounts/data/metrics/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-22T17:29:10.2888534Z\",\r\n \"updatedOn\": \"2022-10-07T22:54:50.720865Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b0d8363b-8ddd-447d-831f-62ca05bff136\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b0d8363b-8ddd-447d-831f-62ca05bff136\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager RBAC Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read-only access to most Kubernetes resources within a namespace in the fleet-managed hub cluster. It does not allow viewing roles or role bindings. This role does not allow viewing Secrets, since reading the contents of Secrets enables access to ServiceAccount credentials in the namespace, which would allow API access as any ServiceAccount in the namespace (a form of privilege escalation). Applying this role at cluster scope will give access across all namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerService/fleets/read\",\r\n \"Microsoft.ContainerService/fleets/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/read\",\r\n \"Microsoft.ContainerService/fleets/configmaps/read\",\r\n \"Microsoft.ContainerService/fleets/endpoints/read\",\r\n \"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/fleets/events/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/limitranges/read\",\r\n \"Microsoft.ContainerService/fleets/namespaces/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\r\n \"Microsoft.ContainerService/fleets/resourcequotas/read\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/read\",\r\n \"Microsoft.ContainerService/fleets/services/read\",\r\n \"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/internalmemberclusters/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverrides/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverridesnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/works/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-22T19:30:13.8996497Z\",\r\n \"updatedOn\": \"2024-10-24T18:43:37.0074966Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/30b27cfc-9c84-438e-b0ce-70e35255df80\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"30b27cfc-9c84-438e-b0ce-70e35255df80\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager RBAC Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read/write access to all Kubernetes resources in the fleet-managed hub cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerService/fleets/read\",\r\n \"Microsoft.ContainerService/fleets/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/fleets/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-22T19:30:13.8996497Z\",\r\n \"updatedOn\": \"2024-03-28T21:19:22.9674826Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18ab4d3d-a1bf-4477-8ad9-8359bc988f69\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager RBAC Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read/write access to Kubernetes resources within a namespace in the fleet-managed hub cluster - provides write permissions on most objects within a a namespace, with the exception of ResourceQuota object and the namespace object itself. Applying this role at cluster scope will give access across all namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerService/fleets/read\",\r\n \"Microsoft.ContainerService/fleets/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/*\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/*\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/*\",\r\n \"Microsoft.ContainerService/fleets/authorization.k8s.io/localsubjectaccessreviews/write\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/*\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/*\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/*\",\r\n \"Microsoft.ContainerService/fleets/configmaps/*\",\r\n \"Microsoft.ContainerService/fleets/endpoints/*\",\r\n \"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/fleets/events/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/*\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/*\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/*\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/*\",\r\n \"Microsoft.ContainerService/fleets/limitranges/read\",\r\n \"Microsoft.ContainerService/fleets/namespaces/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/*\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/*\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/*\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/*\",\r\n \"Microsoft.ContainerService/fleets/rbac.authorization.k8s.io/rolebindings/*\",\r\n \"Microsoft.ContainerService/fleets/rbac.authorization.k8s.io/roles/*\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/*\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/*\",\r\n \"Microsoft.ContainerService/fleets/resourcequotas/read\",\r\n \"Microsoft.ContainerService/fleets/secrets/*\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/*\",\r\n \"Microsoft.ContainerService/fleets/services/*\",\r\n \"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/internalmemberclusters/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverrides/*\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverridesnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/works/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-22T19:30:13.8996497Z\",\r\n \"updatedOn\": \"2024-10-22T15:14:07.0554269Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/434fb43a-c01c-447e-9f67-c3ad923cfaba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"434fb43a-c01c-447e-9f67-c3ad923cfaba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager RBAC Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read/write access to most Kubernetes resources within a namespace in the fleet-managed hub cluster. This role does not allow viewing or modifying roles or role bindings. However, this role allows accessing Secrets as any ServiceAccount in the namespace, so it can be used to gain the API access levels of any ServiceAccount in the namespace.  Applying this role at cluster scope will give access across all namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerService/fleets/read\",\r\n \"Microsoft.ContainerService/fleets/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/write\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/write\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/write\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/write\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/write\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/read\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/write\",\r\n \"Microsoft.ContainerService/fleets/configmaps/read\",\r\n \"Microsoft.ContainerService/fleets/configmaps/write\",\r\n \"Microsoft.ContainerService/fleets/endpoints/read\",\r\n \"Microsoft.ContainerService/fleets/endpoints/write\",\r\n \"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/fleets/events/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/write\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/write\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/write\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/write\",\r\n \"Microsoft.ContainerService/fleets/limitranges/read\",\r\n \"Microsoft.ContainerService/fleets/namespaces/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/write\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/write\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/write\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/write\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/write\",\r\n \"Microsoft.ContainerService/fleets/resourcequotas/read\",\r\n \"Microsoft.ContainerService/fleets/secrets/read\",\r\n \"Microsoft.ContainerService/fleets/secrets/write\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/read\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/write\",\r\n \"Microsoft.ContainerService/fleets/services/read\",\r\n \"Microsoft.ContainerService/fleets/services/write\",\r\n \"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/internalmemberclusters/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverrides/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverrides/write\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverridesnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/works/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-22T19:30:13.8996497Z\",\r\n \"updatedOn\": \"2024-10-22T15:14:09.1397927Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5af6afb3-c06c-4fa4-8848-71a8aee05683\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5af6afb3-c06c-4fa4-8848-71a8aee05683\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read/write access to Azure resources provided by Azure Kubernetes Fleet Manager, including fleets, fleet members, fleet update strategies, fleet update runs, etc.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/fleets/*\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-22T19:30:13.8996497Z\",\r\n \"updatedOn\": \"2024-03-28T21:19:22.9654862Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/63bb64ad-9799-4770-b5c3-24ed299a07bf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"63bb64ad-9799-4770-b5c3-24ed299a07bf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Namespace User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows a user to read namespace resources and retrieve kubeconfig for the cluster\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.KubernetesConfiguration/namespaces/read\",\r\n \"Microsoft.KubernetesConfiguration/namespaces/listUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-24T10:06:57.4909513Z\",\r\n \"updatedOn\": \"2022-08-24T10:06:57.4909513Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ba79058c-0414-4a34-9e42-c3399d80cd5a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ba79058c-0414-4a34-9e42-c3399d80cd5a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Labeling - Labeler\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can label data in Labeling.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/experiments/runs/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/labeling/projects/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/labeling/projects/summary/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/labeling/labels/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/labeling/labels/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-02T22:35:46.9532934Z\",\r\n \"updatedOn\": \"2022-09-08T23:03:02.1057014Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c6decf44-fd0a-444c-a844-d653c394e7ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c6decf44-fd0a-444c-a844-d653c394e7ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Role Based Access Control Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage access to Azure resources by assigning roles using Azure RBAC. This role does not allow you to manage access using other ways, such as Azure Policy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-07T02:29:29.6592395Z\",\r\n \"updatedOn\": \"2023-11-09T20:56:14.1691995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f58310d9-a9f6-439a-9e8d-f62e7b41a168\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Template Spec Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to Template Specs at the assigned scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/templateSpecs/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-08T01:58:14.2969628Z\",\r\n \"updatedOn\": \"2022-09-08T01:58:14.2969628Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/392ae280-861d-42bd-9ea5-08ee6d83b80e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"392ae280-861d-42bd-9ea5-08ee6d83b80e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Template Spec Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows full access to Template Spec operations at the assigned scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/templateSpecs/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-08T01:58:14.2969628Z\",\r\n \"updatedOn\": \"2022-09-08T01:58:14.2969628Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1c9b6475-caf0-4164-b5a1-2142a7116f4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1c9b6475-caf0-4164-b5a1-2142a7116f4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Sentinel Playbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft Sentinel Playbook Operator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Logic/workflows/read\",\r\n \"Microsoft.Logic/workflows/triggers/listCallbackUrl/action\",\r\n \"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/listCallbackUrl/action\",\r\n \"Microsoft.Web/sites/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-20T19:20:30.6118766Z\",\r\n \"updatedOn\": \"2022-12-07T20:30:39.3980234Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/51d6186e-6489-4900-b93f-92e23144cca5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"51d6186e-6489-4900-b93f-92e23144cca5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Deployment Environments User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to manage environment resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DevCenter/projects/read\",\r\n \"Microsoft.DevCenter/projects/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.DevCenter/projects/pools/read\",\r\n \"Microsoft.DevCenter/projects/pools/schedules/read\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.DevCenter/projects/users/environments/userRead/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/userWrite/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/userDelete/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/userActionManage/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/userOutputsRead/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-22T01:04:20.3753915Z\",\r\n \"updatedOn\": \"2023-11-11T03:17:04.9397265Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18e40d4e-8d2e-438d-97e1-9528336e149c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18e40d4e-8d2e-438d-97e1-9528336e149c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Connect Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Spring Apps Connect Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/apps/deployments/connect/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-23T11:08:28.467483Z\",\r\n \"updatedOn\": \"2022-09-23T11:08:28.467483Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/80558df3-64f9-4c0f-b32d-e5094b036b0b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"80558df3-64f9-4c0f-b32d-e5094b036b0b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Remote Debugging Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Spring Apps Remote Debugging Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/apps/deployments/remotedebugging/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-23T11:23:41.716385Z\",\r\n \"updatedOn\": \"2022-09-23T11:23:41.716385Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a99b0159-1064-4c22-a57b-c9b3caa1c054\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a99b0159-1064-4c22-a57b-c9b3caa1c054\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AzureML Registry User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform all actions on Machine Learning Services Registry assets as well as get Registry resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/registries/read\",\r\n \"Microsoft.MachineLearningServices/registries/assets/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-27T19:16:52.1052938Z\",\r\n \"updatedOn\": \"2022-09-27T19:16:52.1052938Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1823dd4f-9b8c-4ab6-ab4e-7397a3684615\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1823dd4f-9b8c-4ab6-ab4e-7397a3684615\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AzureML Compute Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can access and perform CRUD operations on Machine Learning Services managed compute resources (including Notebook VMs).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/computes/*\",\r\n \"Microsoft.MachineLearningServices/workspaces/notebooks/vm/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-27T19:16:52.1052938Z\",\r\n \"updatedOn\": \"2022-09-27T19:16:52.1052938Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e503ece1-11d0-4e8e-8e2c-7a6c3bf38815\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e503ece1-11d0-4e8e-8e2c-7a6c3bf38815\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Center for SAP solutions reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role provides read access to all capabilities of Azure Center for SAP solutions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Workloads/sapvirtualInstances/*/read\",\r\n \"Microsoft.Workloads/Locations/*/read\",\r\n \"Microsoft.Workloads/Operations/read\",\r\n \"Microsoft.Workloads/Locations/OperationStatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\r\n \"Microsoft.Network/networkInterfaces/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\r\n \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Network/loadBalancers/networkInterfaces/read\",\r\n \"Microsoft.Network/loadBalancers/outboundRules/read\",\r\n \"Microsoft.Network/loadBalancers/virtualMachines/read\",\r\n \"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/privateEndpoints/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/disks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-03T19:05:48.2297299Z\",\r\n \"updatedOn\": \"2024-01-15T16:09:45.4170106Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/05352d14-a920-4328-a0de-4cbe7430e26b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"05352d14-a920-4328-a0de-4cbe7430e26b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Center for SAP solutions service role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Center for SAP solutions service role - This role is intended to be used for providing the permissions to user assigned managed identity. Azure Center for SAP solutions will use this identity to deploy and manage SAP systems.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/write\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/write\",\r\n \"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\r\n \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Network/loadBalancers/networkInterfaces/read\",\r\n \"Microsoft.Network/loadBalancers/outboundRules/read\",\r\n \"Microsoft.Network/loadBalancers/virtualMachines/read\",\r\n \"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\r\n \"Microsoft.Network/networkInterfaces/loadBalancers/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/ipconfigurations/join/action\",\r\n \"Microsoft.Network/privateEndpoints/read\",\r\n \"Microsoft.Network/privateEndpoints/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/frontendIPConfigurations/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinLoadBalancer/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/PrivateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/write\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/availabilitySets/write\",\r\n \"Microsoft.Compute/skus/read\",\r\n \"Microsoft.Compute/sshPublicKeys/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/write\",\r\n \"Microsoft.Compute/virtualMachines/extensions/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-03T19:05:48.2297299Z\",\r\n \"updatedOn\": \"2023-02-03T07:40:22.4872528Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/aabbc5dd-1af0-458b-a942-81af88f9c138\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"aabbc5dd-1af0-458b-a942-81af88f9c138\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Center for SAP solutions administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role provides read and write access to all capabilities of Azure Center for SAP solutions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Workloads/sapvirtualInstances/*/read\",\r\n \"Microsoft.Workloads/sapVirtualInstances/*/write\",\r\n \"Microsoft.Workloads/sapVirtualInstances/*/delete\",\r\n \"Microsoft.Workloads/Locations/*/action\",\r\n \"Microsoft.Workloads/Locations/*/read\",\r\n \"Microsoft.Workloads/sapVirtualInstances/*/start/action\",\r\n \"Microsoft.Workloads/sapVirtualInstances/*/stop/action\",\r\n \"Microsoft.Workloads/connectors/*/read\",\r\n \"Microsoft.Workloads/connectors/*/write\",\r\n \"Microsoft.Workloads/connectors/*/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\r\n \"Microsoft.Network/networkInterfaces/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\r\n \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Network/loadBalancers/networkInterfaces/read\",\r\n \"Microsoft.Network/loadBalancers/outboundRules/read\",\r\n \"Microsoft.Network/loadBalancers/virtualMachines/read\",\r\n \"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/privateEndpoints/read\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/sshPublicKeys/read\",\r\n \"Microsoft.Compute/sshPublicKeys/write\",\r\n \"Microsoft.Compute/sshPublicKeys/*/generateKeyPair/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/delete\",\r\n \"Microsoft.Compute/disks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-04T19:16:18.4584328Z\",\r\n \"updatedOn\": \"2023-06-22T15:42:45.8397465Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7b0c7e81-271f-4c71-90bf-e30bdfdbc2f7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7b0c7e81-271f-4c71-90bf-e30bdfdbc2f7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AppGw for Containers Configuration Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows access and configuration updates to Application Gateway for Containers resource.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceNetworking/trafficControllers/read\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/write\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/delete\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/frontends/read\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/frontends/write\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/frontends/delete\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/associations/read\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/associations/write\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/associations/delete\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/*/read\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/*/write\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/*/delete\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/read\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/write\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-06T05:17:45.6989401Z\",\r\n \"updatedOn\": \"2024-10-30T15:35:07.021944Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fbc52c3f-28ad-4303-a892-8a056630b8f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbc52c3f-28ad-4303-a892-8a056630b8f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR SMART User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user to access FHIR Service according to SMART on FHIR specification\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/smart/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/smart/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-26T19:22:25.1242244Z\",\r\n \"updatedOn\": \"2022-12-07T22:32:44.8392379Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4ba50f17-9666-485c-a643-ff00808643f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4ba50f17-9666-485c-a643-ff00808643f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services OpenAI Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access including the ability to fine-tune, deploy and generate text\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/deployments/write\",\r\n \"Microsoft.CognitiveServices/accounts/deployments/delete\",\r\n \"Microsoft.CognitiveServices/accounts/raiPolicies/read\",\r\n \"Microsoft.CognitiveServices/accounts/raiPolicies/write\",\r\n \"Microsoft.CognitiveServices/accounts/raiPolicies/delete\",\r\n \"Microsoft.CognitiveServices/accounts/commitmentplans/read\",\r\n \"Microsoft.CognitiveServices/accounts/commitmentplans/write\",\r\n \"Microsoft.CognitiveServices/accounts/commitmentplans/delete\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-27T00:27:28.391312Z\",\r\n \"updatedOn\": \"2023-08-28T15:04:12.4261733Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a001fd3d-188f-4b5d-821b-7da978bf7442\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services OpenAI User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Ability to view files, models, deployments. Readers can't make any changes They can inference and create images\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/engines/completions/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/engines/search/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/engines/generate/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/audio/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/search/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/completions/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/chat/completions/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/realtime/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/extensions/chat/completions/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/embeddings/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/images/generations/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/assistants/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/stored-completions/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-27T00:27:28.391312Z\",\r\n \"updatedOn\": \"2024-12-05T16:14:32.5827273Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Impact Reporter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows access to create/report, read and delete impacts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Impact/WorkloadImpacts/*\",\r\n \"Microsoft.Impact/ImpactCategories/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-28T00:36:17.1232767Z\",\r\n \"updatedOn\": \"2022-11-14T18:04:31.5896097Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/36e80216-a7e8-4f42-a7e1-f12c98cbaf8a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36e80216-a7e8-4f42-a7e1-f12c98cbaf8a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Impact Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read-only access to reported impacts and impact categories\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Impact/WorkloadImpacts/read\",\r\n \"Microsoft.Impact/ImpactCategories/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-28T00:51:29.5105806Z\",\r\n \"updatedOn\": \"2022-11-14T18:04:31.5896097Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/68ff5d27-c7f5-4fa9-a21c-785d0df7bd9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"68ff5d27-c7f5-4fa9-a21c-785d0df7bd9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ContainerApp Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View all containerapp resources, but does not allow you to make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.App/containerApps/*/read\",\r\n \"Microsoft.App/containerApps/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-11-14T18:04:30.1574093Z\",\r\n \"updatedOn\": \"2023-01-02T18:11:44.7991494Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster Monitoring User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster monitoring user credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterMonitoringUserCredential/action\",\r\n \"Microsoft.ContainerService/managedClusters/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-11-14T18:04:30.1574093Z\",\r\n \"updatedOn\": \"2023-02-07T16:15:04.0057947Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1afdec4b-e479-420e-99e7-f82237c7c5e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1afdec4b-e479-420e-99e7-f82237c7c5e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Resource Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Custom Role for AzureStackHCI RP to manage hybrid compute machines and hybrid connectivity endpoints in a resource group\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/*/read\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/write\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/*/read\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridConnectivity/endpoints/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/write\",\r\n \"Microsoft.HybridConnectivity/endpoints/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.EdgeMarketplace/locations/operationStatuses/read\",\r\n \"Microsoft.EdgeMarketPlace/offers/getAccessToken/action\",\r\n \"Microsoft.EdgeMarketPlace/offers/generateAccessToken/action\",\r\n \"Microsoft.EdgeMarketplace/publishers/read\",\r\n \"Microsoft.EdgeMarketplace/offers/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.Attestation/attestationProviders/write\",\r\n \"Microsoft.Attestation/attestationProviders/read\",\r\n \"Microsoft.Attestation/attestationProviders/delete\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/write\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-11-15T18:14:23.5051702Z\",\r\n \"updatedOn\": \"2024-08-27T15:13:33.329785Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f5819b54-e033-4d82-ac66-4fec3cbf3f4c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f5819b54-e033-4d82-ac66-4fec3cbf3f4c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SqlDb Migration Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role for SqlDb migration\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/write\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/write\",\r\n \"Microsoft.Sql/servers/databases/delete\",\r\n \"Microsoft.DataMigration/locations/operationResults/read\",\r\n \"Microsoft.DataMigration/locations/operationStatuses/read\",\r\n \"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\",\r\n \"Microsoft.DataMigration/databaseMigrations/write\",\r\n \"Microsoft.DataMigration/databaseMigrations/read\",\r\n \"Microsoft.DataMigration/databaseMigrations/delete\",\r\n \"Microsoft.DataMigration/databaseMigrations/cancel/action\",\r\n \"Microsoft.DataMigration/databaseMigrations/cutover/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/write\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/delete\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/read\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\",\r\n \"Microsoft.DataMigration/register/action\",\r\n \"Microsoft.DataMigration/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-12-08T01:05:20.5512514Z\",\r\n \"updatedOn\": \"2023-02-21T16:08:29.5359253Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/189207d4-bb67-4208-a635-b06afe8b2c57\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"189207d4-bb67-4208-a635-b06afe8b2c57\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services GDU Solution\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to GDU Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-12T12:10:00.3896956Z\",\r\n \"updatedOn\": \"2024-05-29T15:22:21.435313Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c4bc862a-3b64-4a35-a021-a380c159b042\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c4bc862a-3b64-4a35-a021-a380c159b042\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services Imagery Solution\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to Imagery Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-12T12:10:00.3896956Z\",\r\n \"updatedOn\": \"2024-05-29T15:22:21.4373143Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ef29765d-0d37-4119-a4f8-f9f9902c9588\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ef29765d-0d37-4119-a4f8-f9f9902c9588\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Center for SAP solutions Service role for management\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role has permissions that the user assigned managed identity must have to enable registration for the existing systems.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-13T11:09:47.8459997Z\",\r\n \"updatedOn\": \"2023-02-03T07:40:22.4872528Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0105a6b0-4bb9-43d2-982a-12806f9faddb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0105a6b0-4bb9-43d2-982a-12806f9faddb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Center for SAP solutions Management role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role has permissions which allow users to register existing systems, view and manage systems.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-13T11:09:47.8459997Z\",\r\n \"updatedOn\": \"2023-02-03T07:40:22.4872528Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6d949e1d-41e2-46e3-8920-c6e4f31a8310\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d949e1d-41e2-46e3-8920-c6e4f31a8310\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Agentless Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants Microsoft Defender for Cloud access to Azure Kubernetes Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/write\",\r\n \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/read\",\r\n \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/delete\",\r\n \"Microsoft.ContainerService/managedClusters/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/providers/features/register/action\",\r\n \"Microsoft.Security/pricings/securityoperators/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-13T15:12:20.5820146Z\",\r\n \"updatedOn\": \"2023-08-25T15:34:13.2516334Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d5a2ae44-610b-4500-93be-660a0c5f5ca6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Usage Billing Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Usage Billing shared BuiltIn role to be used for all Customer Account Authentication\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.UsageBilling/accounts/inputs/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-13T22:47:11.6100638Z\",\r\n \"updatedOn\": \"2023-01-27T19:26:48.9547723Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f0310ce6-e953-4cf8-b892-fb1c87eaf7f6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f0310ce6-e953-4cf8-b892-fb1c87eaf7f6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Container Registry secure supply chain operator service role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants Microsoft Defender for Cloud access to Azure Container Registry for security assessment of container images\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\",\r\n \"Microsoft.ContainerRegistry/registries/push/write\",\r\n \"Microsoft.ContainerRegistry/registries/artifacts/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/write\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/write\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/delete\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-19T17:59:50.7903056Z\",\r\n \"updatedOn\": \"2024-06-13T15:33:45.0796716Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/96062cf7-95ca-4f89-9b9d-2a2aa47356af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"96062cf7-95ca-4f89-9b9d-2a2aa47356af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SqlMI Migration Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role for SqlMI migration\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sql/managedInstances/read\",\r\n \"Microsoft.Sql/managedInstances/write\",\r\n \"Microsoft.Sql/managedInstances/databases/read\",\r\n \"Microsoft.Sql/managedInstances/databases/write\",\r\n \"Microsoft.Sql/managedInstances/databases/delete\",\r\n \"Microsoft.Sql/managedInstances/metrics/read\",\r\n \"Microsoft.DataMigration/locations/operationResults/read\",\r\n \"Microsoft.DataMigration/locations/operationStatuses/read\",\r\n \"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\",\r\n \"Microsoft.DataMigration/databaseMigrations/write\",\r\n \"Microsoft.DataMigration/databaseMigrations/read\",\r\n \"Microsoft.DataMigration/databaseMigrations/delete\",\r\n \"Microsoft.DataMigration/databaseMigrations/cancel/action\",\r\n \"Microsoft.DataMigration/databaseMigrations/cutover/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/write\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/delete\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/read\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\",\r\n \"Microsoft.DataMigration/register/action\",\r\n \"Microsoft.DataMigration/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-01T16:14:46.1546624Z\",\r\n \"updatedOn\": \"2023-02-21T16:08:31.3805596Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1d335eef-eee1-47fe-a9e0-53214eba8872\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d335eef-eee1-47fe-a9e0-53214eba8872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SqlVM Migration Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role for SqlVM migration\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DataMigration/locations/operationResults/read\",\r\n \"Microsoft.DataMigration/locations/operationStatuses/read\",\r\n \"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\",\r\n \"Microsoft.DataMigration/databaseMigrations/write\",\r\n \"Microsoft.DataMigration/databaseMigrations/read\",\r\n \"Microsoft.DataMigration/databaseMigrations/delete\",\r\n \"Microsoft.DataMigration/databaseMigrations/cancel/action\",\r\n \"Microsoft.DataMigration/databaseMigrations/cutover/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/write\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/delete\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/read\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\",\r\n \"Microsoft.DataMigration/register/action\",\r\n \"Microsoft.DataMigration/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.SqlVirtualMachine/sqlVirtualMachines/read\",\r\n \"Microsoft.SqlVirtualMachine/sqlVirtualMachines/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-01T16:14:48.7360987Z\",\r\n \"updatedOn\": \"2023-02-21T16:08:29.7399332Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ae8036db-e102-405b-a1b9-bae082ea436d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae8036db-e102-405b-a1b9-bae082ea436d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services CWUM Solution\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to CWUM Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-01T16:14:48.7360987Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4430427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a9b99099-ead7-47db-8fcf-072597a61dfa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a9b99099-ead7-47db-8fcf-072597a61dfa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Front Door Domain Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"For internal use within Azure. Can manage Azure Front Door domains, but can't grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Cdn/operationresults/profileresults/customdomainresults/read\",\r\n \"Microsoft.Cdn/profiles/customdomains/read\",\r\n \"Microsoft.Cdn/profiles/customdomains/write\",\r\n \"Microsoft.Cdn/profiles/customdomains/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-03T15:30:15.5041698Z\",\r\n \"updatedOn\": \"2023-12-08T09:25:10.8300706Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0ab34830-df19-4f8c-b84e-aa85b8afa6e8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0ab34830-df19-4f8c-b84e-aa85b8afa6e8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Front Door Secret Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"For internal use within Azure. Can manage Azure Front Door secrets, but can't grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Cdn/operationresults/profileresults/secretresults/read\",\r\n \"Microsoft.Cdn/profiles/secrets/read\",\r\n \"Microsoft.Cdn/profiles/secrets/write\",\r\n \"Microsoft.Cdn/profiles/secrets/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-03T15:30:15.5041698Z\",\r\n \"updatedOn\": \"2023-12-08T08:24:04.8674145Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3f2eb865-5811-4578-b90a-6fc6fa0df8e5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3f2eb865-5811-4578-b90a-6fc6fa0df8e5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Front Door Domain Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"For internal use within Azure. Can view Azure Front Door domains, but can't make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Cdn/operationresults/profileresults/customdomainresults/read\",\r\n \"Microsoft.Cdn/profiles/customdomains/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-03T15:30:15.5041698Z\",\r\n \"updatedOn\": \"2023-12-08T09:25:10.8410705Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0f99d363-226e-4dca-9920-b807cf8e1a5f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0f99d363-226e-4dca-9920-b807cf8e1a5f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Front Door Secret Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"For internal use within Azure. Can view Azure Front Door secrets, but can't make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Cdn/operationresults/profileresults/secretresults/read\",\r\n \"Microsoft.Cdn/profiles/secrets/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-03T15:30:20.1814931Z\",\r\n \"updatedOn\": \"2023-12-08T08:24:04.8674145Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0db238c4-885e-4c4f-a933-aa2cef684fca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0db238c4-885e-4c4f-a933-aa2cef684fca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"MySQL Backup And Export Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage backup and export resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DBforMySQL/flexibleServers/validateBackup/action\",\r\n \"Microsoft.DBforMySQL/flexibleServers/backupAndExport/action\",\r\n \"Microsoft.DBforMySQL/locations/operationResults/read\",\r\n \"Microsoft.DBforMySQL/locations/azureAsyncOperation/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-06T16:01:22.3871138Z\",\r\n \"updatedOn\": \"2023-05-15T15:01:03.12045Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d18ad5f3-1baf-4119-b49b-d944edb1f9d0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d18ad5f3-1baf-4119-b49b-d944edb1f9d0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"LocalNGFirewallAdministrator role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user to create, modify, describe, or delete NGFirewalls.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"PaloAltoNetworks.Cloudngfw/firewalls/*\",\r\n \"PaloAltoNetworks.Cloudngfw/localRulestacks/read\",\r\n \"PaloAltoNetworks.Cloudngfw/globalRulestacks/read\",\r\n \"PaloAltoNetworks.Cloudngfw/Locations/operationStatuses/read\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\",\r\n \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/networkVirtualAppliances/read\",\r\n \"Microsoft.Network/networkVirtualAppliances/write\",\r\n \"Microsoft.Network/networkVirtualAppliances/delete\",\r\n \"Microsoft.Network/virtualHubs/read\",\r\n \"Microsoft.Network/virtualWans/read\",\r\n \"Microsoft.Network/virtualWans/virtualHubs/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-06T16:01:22.3881136Z\",\r\n \"updatedOn\": \"2023-03-14T15:28:19.3614218Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a8835c7d-b5cb-47fa-b6f0-65ea10ce07a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a8835c7d-b5cb-47fa-b6f0-65ea10ce07a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack HCI Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to the cluster and its resources, including the ability to register Azure Stack HCI and assign others as Azure Arc HCI VM Contributor and/or Azure Arc HCI VM Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStackHCI/register/action\",\r\n \"Microsoft.AzureStackHCI/Unregister/Action\",\r\n \"Microsoft.AzureStackHCI/clusters/*\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/Write\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Write\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/Delete\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Delete\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/join/action\",\r\n \"Microsoft.HybridCompute/register/action\",\r\n \"Microsoft.GuestConfiguration/register/action\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.HybridConnectivity/register/action\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.AzureStackHCI/*\",\r\n \"Microsoft.AzureStackHCI/EdgeMachines/*\",\r\n \"Microsoft.AzureStackHCI/DevicePools/*\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/assessPatches/action\",\r\n \"Microsoft.HybridCompute/machines/installPatches/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\r\n \"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/write\",\r\n \"Microsoft.HybridCompute/machines/runcommands/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/licenses/write\",\r\n \"Microsoft.HybridCompute/licenses/delete\",\r\n \"Microsoft.ResourceConnector/register/action\",\r\n \"Microsoft.ResourceConnector/appliances/read\",\r\n \"Microsoft.ResourceConnector/appliances/write\",\r\n \"Microsoft.ResourceConnector/appliances/delete\",\r\n \"Microsoft.ResourceConnector/locations/operationresults/read\",\r\n \"Microsoft.ResourceConnector/locations/operationsstatus/read\",\r\n \"Microsoft.ResourceConnector/appliances/listClusterUserCredential/action\",\r\n \"Microsoft.ResourceConnector/appliances/listKeys/action\",\r\n \"Microsoft.ResourceConnector/operations/read\",\r\n \"Microsoft.ExtendedLocation/register/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/write\",\r\n \"Microsoft.ExtendedLocation/customLocations/delete\",\r\n \"Microsoft.EdgeMarketplace/offers/read\",\r\n \"Microsoft.EdgeMarketplace/publishers/read\",\r\n \"Microsoft.Kubernetes/register/action\",\r\n \"Microsoft.KubernetesConfiguration/register/action\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.KubernetesConfiguration/namespaces/read\",\r\n \"Microsoft.KubernetesConfiguration/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Write\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Read\",\r\n \"Microsoft.HybridContainerService/register/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{f5819b54-e033-4d82-ac66-4fec3cbf3f4c, cd570a14-e51a-42ad-bac8-bafd67325302, b64e21ea-ac4e-4cdf-9dc9-5b892992bee7, 4b3fe76c-f777-4d24-a2d7-b027b0f7b273, 874d1c73-6003-4e60-a13a-cb31ea190a85,865ae368-6a45-4bd1-8fbf-0d5151f56fc1,7b1f81f9-4196-4058-8aae-762e593270df,4633458b-17de-408a-b874-0445c86b69e6,c99c945f-8bd1-4fb1-a903-01460aae6068})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{f5819b54-e033-4d82-ac66-4fec3cbf3f4c, cd570a14-e51a-42ad-bac8-bafd67325302, b64e21ea-ac4e-4cdf-9dc9-5b892992bee7, 4b3fe76c-f777-4d24-a2d7-b027b0f7b273, 874d1c73-6003-4e60-a13a-cb31ea190a85,865ae368-6a45-4bd1-8fbf-0d5151f56fc1,7b1f81f9-4196-4058-8aae-762e593270df,4633458b-17de-408a-b874-0445c86b69e6,c99c945f-8bd1-4fb1-a903-01460aae6068}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-06T16:01:22.3871138Z\",\r\n \"updatedOn\": \"2025-01-31T17:57:03.793784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bda0d508-adf1-4af0-9c28-88919fc3ae06\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bda0d508-adf1-4af0-9c28-88919fc3ae06\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"LocalRulestacksAdministrator role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows users to create, modify, describe, or delete Rulestacks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"PaloAltoNetworks.Cloudngfw/localRulestacks/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-06T16:01:22.3891153Z\",\r\n \"updatedOn\": \"2023-02-21T16:08:31.3805596Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bfc3b73d-c6ff-45eb-9a5f-40298295bf20\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfc3b73d-c6ff-45eb-9a5f-40298295bf20\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Extension for SQL Server Deployment\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.AzureArcData service role to enable deployment of Azure Extension for SQL Server\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-10T19:24:06.0772059Z\",\r\n \"updatedOn\": \"2023-03-16T22:04:26.5984064Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7392c568-9289-4bde-aaaa-b7131215889d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7392c568-9289-4bde-aaaa-b7131215889d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Read and Batch Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role can be used to assign read and batch actions on Azure Maps.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/services/*/read\",\r\n \"Microsoft.Maps/accounts/services/batch/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-16T22:04:26.5974054Z\",\r\n \"updatedOn\": \"2023-05-17T15:23:09.9109438Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d6470a16-71bd-43ab-86b3-6f3a73f4e787\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d6470a16-71bd-43ab-86b3-6f3a73f4e787\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Workspace Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has read-only access to entities in the workspace. This role should be assigned on the workspace scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-22T15:15:20.4542963Z\",\r\n \"updatedOn\": \"2023-03-22T15:15:20.4542963Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ef1c2c96-4a77-49e8-b9a4-6179fe1d2fd2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ef1c2c96-4a77-49e8-b9a4-6179fe1d2fd2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Workspace API Product Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has read access to entities in the workspace and read and write access to entities for publishing APIs. This role should be assigned on the workspace scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/workspaces/*/read\",\r\n \"Microsoft.ApiManagement/service/workspaces/products/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/subscriptions/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/groups/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/tags/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/notifications/*\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-22T15:15:20.4542963Z\",\r\n \"updatedOn\": \"2023-03-22T15:15:20.4542963Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/73c2c328-d004-4c5e-938c-35c6f5679a1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c2c328-d004-4c5e-938c-35c6f5679a1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Workspace API Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has read access to entities in the workspace and read and write access to entities for editing APIs. This role should be assigned on the workspace scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/workspaces/*/read\",\r\n \"Microsoft.ApiManagement/service/workspaces/apis/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/apiVersionSets/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/policies/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/schemas/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/products/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/policyFragments/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/namedValues/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/tags/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/backends/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/certificates/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/diagnostics/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/loggers/*\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-22T15:15:20.4542963Z\",\r\n \"updatedOn\": \"2024-07-22T15:08:54.4352609Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/56328988-075d-4c6a-8766-d93edd6725b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"56328988-075d-4c6a-8766-d93edd6725b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Workspace API Product Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has the same access as API Management Service Workspace API Developer as well as read access to users and write access to allow assigning users to groups. This role should be assigned on the service scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/users/read\",\r\n \"Microsoft.ApiManagement/service/tags/read\",\r\n \"Microsoft.ApiManagement/service/tags/apiLinks/*\",\r\n \"Microsoft.ApiManagement/service/tags/operationLinks/*\",\r\n \"Microsoft.ApiManagement/service/tags/productLinks/*\",\r\n \"Microsoft.ApiManagement/service/products/read\",\r\n \"Microsoft.ApiManagement/service/products/apiLinks/*\",\r\n \"Microsoft.ApiManagement/service/groups/read\",\r\n \"Microsoft.ApiManagement/service/groups/users/*\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/authorizationServers/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-22T15:15:20.4542963Z\",\r\n \"updatedOn\": \"2024-08-30T15:40:51.7523528Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d59a3e9c-6d52-4a5a-aeed-6bf3cf0e31da\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d59a3e9c-6d52-4a5a-aeed-6bf3cf0e31da\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Workspace API Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has read access to tags and products and write access to allow: assigning APIs to products, assigning tags to products and APIs. This role should be assigned on the service scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/tags/read\",\r\n \"Microsoft.ApiManagement/service/tags/apiLinks/*\",\r\n \"Microsoft.ApiManagement/service/tags/operationLinks/*\",\r\n \"Microsoft.ApiManagement/service/tags/productLinks/*\",\r\n \"Microsoft.ApiManagement/service/products/read\",\r\n \"Microsoft.ApiManagement/service/products/apiLinks/*\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/authorizationServers/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-22T15:15:22.2253607Z\",\r\n \"updatedOn\": \"2024-08-30T15:40:51.7523528Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9565a273-41b9-4368-97d2-aeb0c976a9b3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9565a273-41b9-4368-97d2-aeb0c976a9b3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Workspace Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage the workspace and view, but not modify its members. This role should be assigned on the workspace scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/workspaces/*\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-22T15:15:21.2657951Z\",\r\n \"updatedOn\": \"2023-03-22T15:15:21.2657951Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0c34c906-8d99-4cb7-8bb7-33f5b0a1a799\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0c34c906-8d99-4cb7-8bb7-33f5b0a1a799\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data Privileged Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Customer has read access on Azure Storage file shares.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/readFileBackupSemantics/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-24T20:36:33.5999978Z\",\r\n \"updatedOn\": \"2023-04-07T19:31:54.7331401Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b8eda974-7b85-4f76-af95-65846b26df6d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b8eda974-7b85-4f76-af95-65846b26df6d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data Privileged Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Customer has read, write, delete and modify NTFS permission access on Azure Storage file shares.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/readFileBackupSemantics/action\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/writeFileBackupSemantics/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-24T20:51:46.4662516Z\",\r\n \"updatedOn\": \"2023-04-07T19:31:53.4135545Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/69566ab7-960f-475b-8e7c-b3118f30c6bd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"69566ab7-960f-475b-8e7c-b3118f30c6bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Windows 365 Network User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role is used by Windows 365 to read virtual networks and join the designated virtual networks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/usages/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-27T15:08:56.6070697Z\",\r\n \"updatedOn\": \"2023-07-27T15:18:15.2012422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7eabc9a4-85f7-4f71-b8ab-75daaccc1033\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7eabc9a4-85f7-4f71-b8ab-75daaccc1033\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Windows 365 Network Interface Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role is used by Windows 365 to provision required network resources and join Microsoft-hosted VMs to network interfaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourcegroups/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/usages/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/effectiveNetworkSecurityGroups/action\",\r\n \"Microsoft.Network/networkInterfaces/effectiveRouteTable/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-27T15:08:58.3984832Z\",\r\n \"updatedOn\": \"2023-07-27T15:18:15.2012422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1f135831-5bbe-4924-9016-264044c00788\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1f135831-5bbe-4924-9016-264044c00788\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Windows365SubscriptionReader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read subscriptions, images, azure firewalls. This role is used in Windows365 scenarios.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-27T15:08:58.3984832Z\",\r\n \"updatedOn\": \"2023-03-27T15:08:58.3984832Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3d55a8f6-4133-418d-8051-facdb1735758\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3d55a8f6-4133-418d-8051-facdb1735758\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Compliance Automation Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, download, modify and delete reports objects and related other resource objects.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppComplianceAutomation/*\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/write\",\r\n \"Microsoft.Storage/storageAccounts/fileservices/write\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.PolicyInsights/policyStates/queryResults/action\",\r\n \"Microsoft.PolicyInsights/policyStates/triggerEvaluation/action\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/tags/read\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Security/automations/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Security/automations/delete\",\r\n \"Microsoft.Security/automations/write\",\r\n \"Microsoft.Security/register/action\",\r\n \"Microsoft.Security/unregister/action\",\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-04-14T05:39:53.8680786Z\",\r\n \"updatedOn\": \"2023-05-26T04:59:13.9237237Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0f37683f-2463-46b6-9ce7-9b788b988ba2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0f37683f-2463-46b6-9ce7-9b788b988ba2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Compliance Automation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, download the reports objects and related other resource objects.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-04-14T05:39:53.8670787Z\",\r\n \"updatedOn\": \"2023-09-27T15:29:28.845747Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ffc6bbe0-e443-4c3b-bf54-26581bb2f78e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ffc6bbe0-e443-4c3b-bf54-26581bb2f78e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sphere Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user read and write access to Azure Sphere resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureSphere/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/DiagnosticSettingsCategories/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-02T15:22:08.6728628Z\",\r\n \"updatedOn\": \"2023-05-08T15:10:38.0545692Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8b9dfcab-4b77-4632-a6df-94bd07820648\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8b9dfcab-4b77-4632-a6df-94bd07820648\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SaaS Hub Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"SaaS Hub contributor can manage SaaS Hub resource\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.SaaSHub/cloudservices/read\",\r\n \"Microsoft.SaaSHub/cloudservices/write\",\r\n \"Microsoft.SaaSHub/cloudservices/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-03T15:33:04.5437406Z\",\r\n \"updatedOn\": \"2023-05-12T22:22:08.3454165Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e9b8712a-cbcf-4ea7-b0f7-e71b803401e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e9b8712a-cbcf-4ea7-b0f7-e71b803401e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sphere Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user to read Azure Sphere resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureSphere/*/read\",\r\n \"Microsoft.AzureSphere/catalogs/countDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDeviceGroups/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDeviceInsights/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDeployments/action\",\r\n \"Microsoft.AzureSphere/catalogs/products/countDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/products/deviceGroups/countDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/certificates/retrieveCertChain/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/DiagnosticSettings/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-08T15:10:38.0395671Z\",\r\n \"updatedOn\": \"2023-05-12T22:22:08.3454165Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c8ae6279-5a0b-4cb2-b3f0-d4d62845742c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c8ae6279-5a0b-4cb2-b3f0-d4d62845742c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sphere Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user to read and download Azure Sphere resources and upload images.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureSphere/*/read\",\r\n \"Microsoft.AzureSphere/catalogs/countDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDeviceGroups/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDeviceInsights/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/products/countDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/products/deviceGroups/countDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/certificates/retrieveProofOfPossessionNonce/action\",\r\n \"Microsoft.AzureSphere/catalogs/certificates/retrieveCertChain/action\",\r\n \"Microsoft.AzureSphere/catalogs/images/write\",\r\n \"Microsoft.AzureSphere/catalogs/uploadImage/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/DiagnosticSettings/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-08T15:10:38.0395671Z\",\r\n \"updatedOn\": \"2024-01-29T16:00:37.3526635Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6d994134-994b-4a59-9974-f479f0b227fb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d994134-994b-4a59-9974-f479f0b227fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Procurement Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the procurement of products and services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.SaaSHub/cloudservices/read\",\r\n \"Microsoft.SaaSHub/cloudservices/write\",\r\n \"Microsoft.SaaSHub/cloudservices/delete\",\r\n \"Microsoft.SaaSHub/register/action\",\r\n \"Microsoft.SaaS/resources/read\",\r\n \"Microsoft.SaaS/resources/write\",\r\n \"Microsoft.SaaS/resources/delete\",\r\n \"Microsoft.SaaS/register/action\",\r\n \"Microsoft.ProfessionalService/resources/read\",\r\n \"Microsoft.ProfessionalService/resources/write\",\r\n \"Microsoft.ProfessionalService/resources/delete\",\r\n \"Microsoft.ProfessionalService/register/action\",\r\n \"Microsoft.BillingBenefits/register/action\",\r\n \"Microsoft.BillingBenefits/maccs/read\",\r\n \"Microsoft.BillingBenefits/maccs/write\",\r\n \"Microsoft.BillingBenefits/maccs/delete\",\r\n \"Microsoft.BillingBenefits/maccs/cancel/action\",\r\n \"Microsoft.BillingBenefits/maccs/chargeShortfall/action\",\r\n \"Microsoft.BillingBenefits/maccs/contributors/read\",\r\n \"Microsoft.EnterpriseSupport/enterpriseSupports/read\",\r\n \"Microsoft.EnterpriseSupport/enterpriseSupports/write\",\r\n \"Microsoft.EnterpriseSupport/enterpriseSupports/delete\",\r\n \"Microsoft.EnterpriseSupport/register/action\",\r\n \"Microsoft.SoftwarePlan/register/action\",\r\n \"Microsoft.SoftwarePlan/softwareSubscriptions/read\",\r\n \"Microsoft.SoftwarePlan/softwareSubscriptions/write\",\r\n \"Microsoft.SoftwarePlan/softwareSubscriptions/delete\",\r\n \"Microsoft.SoftwarePlan/softwareSubscriptions/cancel/action\",\r\n \"Microsoft.SoftwarePlan/softwareSubscriptions/listKeys/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-10T15:28:24.1871677Z\",\r\n \"updatedOn\": \"2024-08-28T15:23:36.0821031Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/be1a1ac2-09d3-4261-9e57-a73a6e227f53\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"be1a1ac2-09d3-4261-9e57-a73a6e227f53\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Machine Learning Workspace Connection Secrets Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can list workspace connection secrets\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/connections/listsecrets/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/metadata/secrets/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-10T15:28:24.1871677Z\",\r\n \"updatedOn\": \"2023-10-16T15:13:20.5931766Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ea01e6af-a1c1-4350-9563-ad00f8c72ec5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ea01e6af-a1c1-4350-9563-ad00f8c72ec5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Search Serverless Data Reader (Deprecated)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role has been deprecated\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveSearch/indexes/schema/read\",\r\n \"Microsoft.CognitiveSearch/indexes/documents/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-16T15:12:24.3993826Z\",\r\n \"updatedOn\": \"2024-02-07T16:10:08.5177317Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/79b01272-bf9f-4f4c-9517-5506269cf524\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"79b01272-bf9f-4f4c-9517-5506269cf524\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Search Serverless Data Contributor (Deprecated)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role has been deprecated\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveSearch/indexes/schema/*\",\r\n \"Microsoft.CognitiveSearch/indexes/documents/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-16T15:12:24.3943867Z\",\r\n \"updatedOn\": \"2024-02-07T16:10:08.516731Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7ac06ca7-21ca-47e3-a67b-cbd6e6223baf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ac06ca7-21ca-47e3-a67b-cbd6e6223baf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Community Owner Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Community Owner Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/register/action\",\r\n \"Microsoft.Mission/unregister/action\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/read\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/write\",\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/catalogs/read\",\r\n \"Microsoft.Mission/catalogs/write\",\r\n \"Microsoft.Mission/catalogs/delete\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Mission/communities/write\",\r\n \"Microsoft.Mission/communities/delete\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/internalConnections/write\",\r\n \"Microsoft.Mission/internalConnections/delete\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/write\",\r\n \"Microsoft.Mission/virtualEnclaves/delete\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/write\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/write\",\r\n \"Microsoft.Mission/communities/communityEndpoints/delete\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/communities/transitHubs/write\",\r\n \"Microsoft.Mission/communities/transitHubs/delete\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/approvals/read\",\r\n \"Microsoft.Mission/approvals/write\",\r\n \"Microsoft.Mission/approvals/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-26T20:54:56.9528275Z\",\r\n \"updatedOn\": \"2024-09-17T15:06:28.1468173Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e28a61e-8040-49db-b175-bb5b88af6239\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e28a61e-8040-49db-b175-bb5b88af6239\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Firmware Analysis Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Upload and analyze firmware images in Defender for IoT\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.IoTFirmwareDefense/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-06-13T15:14:24.0812321Z\",\r\n \"updatedOn\": \"2023-06-13T15:14:24.0812321Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9c1607d1-791d-4c68-885d-c7b7aaff7c8a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9c1607d1-791d-4c68-885d-c7b7aaff7c8a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Data Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage access to Azure Key Vault by adding or removing role assignments for the Key Vault Administrator, Key Vault Certificates Officer, Key Vault Crypto Officer, Key Vault Crypto Service Encryption User, Key Vault Crypto User, Key Vault Reader, Key Vault Secrets Officer, or Key Vault Secrets User roles. Includes an ABAC condition to constrain role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/vaults/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{00482a5a-887f-4fb3-b363-3b7fe8e74483, a4417e6f-fecd-4de8-b567-7b0420556985, 14b46e9e-c2b7-41b4-b07b-48a6ebf60603, e147488a-f6f5-4113-8e2d-b22465e65bf6, 12338af0-0e69-4776-bea7-57ae8d297424, 21090545-7ca7-4776-b22c-e363652d74d2, b86a8fe4-44ce-4948-aee5-eccb2c155cd7, 4633458b-17de-408a-b874-0445c86b69e6})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{00482a5a-887f-4fb3-b363-3b7fe8e74483, a4417e6f-fecd-4de8-b567-7b0420556985, 14b46e9e-c2b7-41b4-b07b-48a6ebf60603, e147488a-f6f5-4113-8e2d-b22465e65bf6, 12338af0-0e69-4776-bea7-57ae8d297424, 21090545-7ca7-4776-b22c-e363652d74d2, b86a8fe4-44ce-4948-aee5-eccb2c155cd7, 4633458b-17de-408a-b874-0445c86b69e6}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2023-06-20T22:41:17.2192139Z\",\r\n \"updatedOn\": \"2023-12-08T01:46:25.6834412Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8b54135c-b56d-4d72-a534-26097cfdc8d8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8b54135c-b56d-4d72-a534-26097cfdc8d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Defender for Storage Data Scanner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read blobs and update index tags. This role is used by the data scanner of Defender for Storage.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-06-22T15:42:45.8377472Z\",\r\n \"updatedOn\": \"2023-07-11T15:15:59.009472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1e7ca9b1-60d1-4db8-a914-f2ca1ff27c40\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1e7ca9b1-60d1-4db8-a914-f2ca1ff27c40\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Compute Diagnostics Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permissions to execute diagnostics provided by Compute Diagnostic Service for Compute Resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Compute/virtualmachinescalesets/disks/beginGetAccess/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-04T15:09:35.8762293Z\",\r\n \"updatedOn\": \"2023-08-22T15:03:01.3331418Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/df2711a6-406d-41cf-b366-b0250bff9ad1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"df2711a6-406d-41cf-b366-b0250bff9ad1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic SAN Network Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows access to create Private Endpoints on SAN resources, and to read SAN resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ElasticSan/elasticSans/*/read\",\r\n \"Microsoft.ElasticSan/elasticSans/PrivateEndpointConnectionsApproval/action\",\r\n \"Microsoft.ElasticSan/elasticSans/privateEndpointConnections/write\",\r\n \"Microsoft.ElasticSan/elasticSans/privateEndpointConnections/delete\",\r\n \"Microsoft.ElasticSan/locations/asyncoperations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-12T15:16:18.4725463Z\",\r\n \"updatedOn\": \"2023-07-25T15:17:34.8207971Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fa6cecf6-5db3-4c43-8470-c540bcb4eafa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa6cecf6-5db3-4c43-8470-c540bcb4eafa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Usages Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Minimal permission to view Cognitive Services usages.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/locations/usages/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-18T15:21:40.0260836Z\",\r\n \"updatedOn\": \"2023-07-18T15:21:40.0260836Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bba48692-92b0-4667-a9ad-c31c7b334ac2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bba48692-92b0-4667-a9ad-c31c7b334ac2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PostgreSQL Flexible Server Long Term Retention Backup Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role to allow backup vault to access PostgreSQL Flexible Server Resource APIs for Long Term Retention Backup.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/ltrBackupOperations/read\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/ltrPreBackup/action\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/startLtrBackup/action\",\r\n \"Microsoft.DBforPostgreSQL/locations/azureAsyncOperation/read\",\r\n \"Microsoft.DBforPostgreSQL/locations/operationResults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-20T15:49:01.2761474Z\",\r\n \"updatedOn\": \"2023-08-03T22:52:14.0236976Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c088a766-074b-43ba-90d4-1fb21feae531\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c088a766-074b-43ba-90d4-1fb21feae531\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Parameter Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal access to $status and $reindex to update search parameters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/reindex/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/write\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/searchparameter/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-31T15:06:45.6740185Z\",\r\n \"updatedOn\": \"2023-07-31T15:06:45.6740185Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a02f7c31-354d-4106-865a-deedf37fa038\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a02f7c31-354d-4106-865a-deedf37fa038\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Data Access Administrator (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage access to Virtual Machines by adding or removing role assignments for the Virtual Machine Administrator Login and Virtual Machine User Login roles. Includes an ABAC condition to constrain role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.HybridCompute/machines/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{1c0163c0-47e6-4577-8991-ea5c82e286e4, fb879df8-f326-4884-b1cf-06f3ad86be52})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{1c0163c0-47e6-4577-8991-ea5c82e286e4, fb879df8-f326-4884-b1cf-06f3ad86be52}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-08T15:31:17.1728633Z\",\r\n \"updatedOn\": \"2023-11-01T15:17:03.5360733Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/66f75aeb-eabe-4b70-9f1e-c350c4c9ad04\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"66f75aeb-eabe-4b70-9f1e-c350c4c9ad04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic Apps Standard Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"You have read-only access to all resources in a Standard logic app and workflows, including the workflow runs and their history.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-11T18:29:26.2014706Z\",\r\n \"updatedOn\": \"2024-04-04T21:09:40.8283445Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4accf36b-2c05-432f-91c8-5c532dff4c73\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4accf36b-2c05-432f-91c8-5c532dff4c73\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic Apps Standard Developer (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"You can create and edit workflows, connections, and settings for a Standard logic app. You can't make changes outside the workflow scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/*/read\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/customApis/*\",\r\n \"Microsoft.Web/sites/config/list/Action\",\r\n \"microsoft.web/sites/config/Write\",\r\n \"microsoft.web/sites/config/web/appsettings/delete\",\r\n \"microsoft.web/sites/config/web/appsettings/write\",\r\n \"microsoft.web/sites/deployWorkflowArtifacts/action\",\r\n \"microsoft.web/sites/hostruntime/*\",\r\n \"microsoft.web/sites/listworkflowsconnections/action\",\r\n \"Microsoft.Web/sites/publish/Action\",\r\n \"microsoft.web/sites/slots/config/appsettings/write\",\r\n \"Microsoft.Web/sites/slots/config/list/Action\",\r\n \"microsoft.web/sites/slots/config/web/appsettings/delete\",\r\n \"microsoft.web/sites/slots/deployWorkflowArtifacts/action\",\r\n \"microsoft.web/sites/slots/listworkflowsconnections/action\",\r\n \"Microsoft.Web/sites/slots/publish/Action\",\r\n \"microsoft.web/sites/workflows/*\",\r\n \"microsoft.web/sites/workflowsconfiguration/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-11T18:29:26.2014706Z\",\r\n \"updatedOn\": \"2024-04-04T21:09:40.8283445Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/523776ba-4eb2-4600-a3c8-f2dc93da4bdb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"523776ba-4eb2-4600-a3c8-f2dc93da4bdb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic Apps Standard Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"You can manage all aspects of a Standard logic app and workflows. You can't change access or ownership.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/*/read\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/customApis/*\",\r\n \"Microsoft.Web/serverFarms/*\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-11T18:29:26.2014706Z\",\r\n \"updatedOn\": \"2024-04-04T21:09:40.8283445Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ad710c24-b039-4e85-a019-deb4a06e8570\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ad710c24-b039-4e85-a019-deb4a06e8570\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic Apps Standard Operator (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"You can enable and disable the logic app, resubmit workflow runs, as well as create connections. You can't edit workflows or settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/*/read\",\r\n \"Microsoft.Web/sites/applySlotConfig/Action\",\r\n \"microsoft.web/sites/hostruntime/*\",\r\n \"Microsoft.Web/sites/restart/Action\",\r\n \"Microsoft.Web/sites/slots/restart/Action\",\r\n \"Microsoft.Web/sites/slots/slotsswap/Action\",\r\n \"Microsoft.Web/sites/slots/start/Action\",\r\n \"Microsoft.Web/sites/slots/stop/Action\",\r\n \"Microsoft.Web/sites/slotsdiffs/Action\",\r\n \"Microsoft.Web/sites/slotsswap/Action\",\r\n \"Microsoft.Web/sites/start/Action\",\r\n \"Microsoft.Web/sites/stop/Action\",\r\n \"Microsoft.Web/sites/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-11T18:29:26.2014706Z\",\r\n \"updatedOn\": \"2024-04-04T21:09:40.8293422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b70c96e9-66fe-4c09-b6e7-c98e69c98555\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b70c96e9-66fe-4c09-b6e7-c98e69c98555\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"IPAM Pool User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read IPAM Pools and child resources. Create and remove associations. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/networkManagers/ipamPools/*/read\",\r\n \"Microsoft.Network/networkManagers/ipamPools/*/action\",\r\n \"Microsoft.Network/networkManagers/ipamPools/*/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-22T15:03:01.8181632Z\",\r\n \"updatedOn\": \"2024-10-15T15:28:55.9466167Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7b3e853f-ad5d-4fb5-a7b8-56a3581c7037\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7b3e853f-ad5d-4fb5-a7b8-56a3581c7037\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SpatialMapsAccounts Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage data in your account, including deleting them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/spatialMapsAccounts/read\",\r\n \"Microsoft.MixedReality/spatialMapsAccounts/delete\",\r\n \"Microsoft.MixedReality/spatialMapsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-25T22:37:18.9333563Z\",\r\n \"updatedOn\": \"2023-08-25T22:37:18.9333563Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e9c9ed2b-2a99-4071-b2ff-5b113ebf73a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e9c9ed2b-2a99-4071-b2ff-5b113ebf73a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Resource Notifications System Topics Subscriber\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create system topics and event subscriptions on all system topics exposed currently and in the future by Azure Resource Notifications\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ResourceNotifications/systemTopics/subscribeToResources/action\",\r\n \"Microsoft.ResourceNotifications/systemTopics/subscribeToHealthResources/action\",\r\n \"Microsoft.ResourceNotifications/systemTopics/subscribeToMaintenanceResources/action\",\r\n \"Microsoft.ResourceNotifications/systemTopics/subscribeToComputeResources/action\",\r\n \"Microsoft.ResourceNotifications/systemTopics/subscribeToComputeScheduleResources/action\",\r\n \"Microsoft.ResourceNotifications/systemTopics/subscribeToContainerServiceEventResources/action\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\",\r\n \"Microsoft.EventGrid/systemTopics/eventSubscriptions/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-01T18:12:29.6066065Z\",\r\n \"updatedOn\": \"2024-09-24T15:12:30.7727921Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0b962ed2-6d56-471c-bd5f-3477d83a7ba4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b962ed2-6d56-471c-bd5f-3477d83a7ba4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic SAN Snapshot Exporter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for creating and exporting Snapshot of Elastic San Volume\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ElasticSan/elasticSans/*/read\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots/write\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots/delete\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots/beginGetAccess/action\",\r\n \"Microsoft.ElasticSan/locations/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/snapshots/read\",\r\n \"Microsoft.Compute/snapshots/write\",\r\n \"Microsoft.Compute/snapshots/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-07T15:27:01.5795598Z\",\r\n \"updatedOn\": \"2023-09-07T15:27:01.5795598Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1c4770c0-34f7-4110-a1ea-a5855cc7a939\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1c4770c0-34f7-4110-a1ea-a5855cc7a939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic SAN Volume Importer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for Importing Elastic San Volume\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/*/read\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/volumes/write\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/volumes/delete\",\r\n \"Microsoft.ElasticSan/locations/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Compute/disks/endGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/read\",\r\n \"Microsoft.Compute/snapshots/beginGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/endGetAccess/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-07T15:27:01.5805616Z\",\r\n \"updatedOn\": \"2024-10-21T15:04:46.4452794Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/90e8b822-3e73-47b5-868a-787dc80c008f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"90e8b822-3e73-47b5-868a-787dc80c008f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Community Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Community Contributor Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/register/action\",\r\n \"Microsoft.Mission/unregister/action\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/read\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/write\",\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/catalogs/read\",\r\n \"Microsoft.Mission/catalogs/write\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Mission/communities/write\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/internalConnections/write\",\r\n \"Microsoft.Mission/externalConnections/read\",\r\n \"Microsoft.Mission/externalConnections/write\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/write\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/write\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/write\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/communities/transitHubs/write\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/approvals/read\",\r\n \"Microsoft.Mission/approvals/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-15T21:32:17.3120404Z\",\r\n \"updatedOn\": \"2024-09-17T15:06:28.1468173Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/49435da6-99fe-48a5-a235-fc668b9dc04a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49435da6-99fe-48a5-a235-fc668b9dc04a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid TopicSpaces Subscriber\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you subscribe messages on topicspaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventGrid/topicSpaces/subscribe/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-20T15:20:54.9243795Z\",\r\n \"updatedOn\": \"2023-10-23T15:12:07.1288274Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4b0f2fd7-60b4-4eca-896f-4435034f8bf5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b0f2fd7-60b4-4eca-896f-4435034f8bf5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid TopicSpaces Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you publish messages on topicspaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventGrid/topicSpaces/publish/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-20T15:20:54.9383815Z\",\r\n \"updatedOn\": \"2023-10-23T15:12:07.1308307Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a12b0b94-b317-4dcd-84a8-502ce99884c6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a12b0b94-b317-4dcd-84a8-502ce99884c6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Boundary Tenant Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows tenant level administration for data boundaries.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/dataBoundaries/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-26T15:18:40.8881798Z\",\r\n \"updatedOn\": \"2023-09-26T15:18:40.8881798Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d1a38570-4b05-4d70-b8e4-1100bcf76d12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d1a38570-4b05-4d70-b8e4-1100bcf76d12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DeID Batch Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage DeID batch jobs. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthDataAIServices/DeidServices/Batch/write\",\r\n \"Microsoft.HealthDataAIServices/DeidServices/Batch/delete\",\r\n \"Microsoft.HealthDataAIServices/DeidServices/Batch/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-29T20:09:57.8639021Z\",\r\n \"updatedOn\": \"2023-09-29T20:09:57.8639021Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8a90fa6b-6997-4a07-8a95-30633a7c97b9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8a90fa6b-6997-4a07-8a95-30633a7c97b9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DeID Batch Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read DeID batch jobs. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthDataAIServices/DeidServices/Batch/read\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.HealthDataAIServices/DeidServices/Batch/write\",\r\n \"Microsoft.HealthDataAIServices/DeidServices/Batch/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-29T20:09:57.8639021Z\",\r\n \"updatedOn\": \"2023-09-29T20:09:57.8639021Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b73a14ee-91f5-41b7-bd81-920e12466be9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b73a14ee-91f5-41b7-bd81-920e12466be9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DeID Realtime Data User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Execute requests against DeID realtime endpoint. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthDataAIServices/DeidServices/Realtime/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-29T20:09:57.8649032Z\",\r\n \"updatedOn\": \"2023-09-29T20:09:57.8649032Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bb6577c4-ea0a-40b2-8962-ea18cb8ecd4e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bb6577c4-ea0a-40b2-8962-ea18cb8ecd4e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Carbon Optimization Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allow read access to Azure Carbon Optimization data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Carbon/carbonEmissionReports/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-02T15:03:45.0991798Z\",\r\n \"updatedOn\": \"2023-10-02T15:03:45.0991798Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fa0d39e6-28e5-40cf-8521-1eb320653a4c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa0d39e6-28e5-40cf-8521-1eb320653a4c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Landing Zone Management Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.Sovereign Landing Zone Management Owner allowing to review and modify Landing Zone Configurations as well as reading and adding Landing Zone Registrations. Also enables read-access to policies and management groups for enabling the full user experience of the Sovereign Services RP in the Azure Portal (as otherwise some elements might not be accessible to end users).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sovereign/landingZoneConfigurations/*\",\r\n \"Microsoft.Sovereign/landingZoneRegistrations/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-06T08:51:38.7872219Z\",\r\n \"updatedOn\": \"2023-10-06T08:51:38.7872219Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/38863829-c2a4-4f8d-b1d2-2e325973ebc7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"38863829-c2a4-4f8d-b1d2-2e325973ebc7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Landing Zone Management Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.Sovereign Landing Zone Management Reader allowing to review Landing Zone Configurations and corresponding Registrations without the ability to modify. Also enables read-access to policies and management groups for enabling the full user experience of the Sovereign Services RP in the Azure Portal (as otherwise some elements might not be accessible to end users).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sovereign/landingZoneConfigurations/read\",\r\n \"Microsoft.Sovereign/landingZoneRegistrations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-09T15:06:52.9163525Z\",\r\n \"updatedOn\": \"2023-10-09T15:06:52.9163525Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8fe6e843-6d9e-417b-9073-106b048f50bb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8fe6e843-6d9e-417b-9073-106b048f50bb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack HCI Device Management Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.AzureStackHCI Device Management Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStackHCI/Clusters/*\",\r\n \"Microsoft.AzureStackHCI/EdgeDevices/*\",\r\n \"Microsoft.AzureStackHCI/DevicePools/*/read\",\r\n \"Microsoft.AzureStackHCI/EdgeMachines/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.HybridContainerService/register/action\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/read\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/write\",\r\n \"Microsoft.HybridContainerService/skus/read\",\r\n \"Microsoft.HybridContainerService/skus/write\",\r\n \"Microsoft.Authorization/roleassignments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Write\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Read\",\r\n \"Microsoft.AzureStackHCI/Register/Action\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.KubernetesConfiguration/namespaces/read\",\r\n \"Microsoft.KubernetesConfiguration/operations/read\",\r\n \"Microsoft.ResourceConnector/appliances/read\",\r\n \"Microsoft.ResourceConnector/appliances/write\",\r\n \"Microsoft.ResourceConnector/appliances/delete\",\r\n \"Microsoft.ResourceConnector/locations/operationresults/read\",\r\n \"Microsoft.ResourceConnector/locations/operationsstatus/read\",\r\n \"Microsoft.ResourceConnector/appliances/listClusterUserCredential/action\",\r\n \"Microsoft.ResourceConnector/appliances/listKeys/action\",\r\n \"Microsoft.ResourceConnector/appliances/upgradeGraphs/read\",\r\n \"Microsoft.ResourceConnector/telemetryconfig/read\",\r\n \"Microsoft.ResourceConnector/operations/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/write\",\r\n \"Microsoft.ExtendedLocation/customLocations/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-11T15:23:32.489302Z\",\r\n \"updatedOn\": \"2025-02-12T16:18:26.4114893Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/865ae368-6a45-4bd1-8fbf-0d5151f56fc1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"865ae368-6a45-4bd1-8fbf-0d5151f56fc1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Customer Lockbox Approver for Subscription\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can approve Microsoft support requests to access specific resources contained within a subscription, or the subscription itself, when Customer Lockbox for Microsoft Azure is enabled on the tenant where the subscription resides.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.CustomerLockbox/requests/UpdateApproval/action\",\r\n \"Microsoft.CustomerLockbox/requests/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/eventtypes/values/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-13T18:08:34.8008604Z\",\r\n \"updatedOn\": \"2024-08-09T19:11:41.617451Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4dae6930-7baf-46f5-909e-0383bc931c46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4dae6930-7baf-46f5-909e-0383bc931c46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Resource Bridge Deployment Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Resource Bridge Deployment Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleassignments/read\",\r\n \"Microsoft.AzureStackHCI/Register/Action\",\r\n \"Microsoft.ResourceConnector/register/action\",\r\n \"Microsoft.ResourceConnector/appliances/read\",\r\n \"Microsoft.ResourceConnector/appliances/write\",\r\n \"Microsoft.ResourceConnector/appliances/delete\",\r\n \"Microsoft.ResourceConnector/locations/operationresults/read\",\r\n \"Microsoft.ResourceConnector/locations/operationsstatus/read\",\r\n \"Microsoft.ResourceConnector/appliances/listClusterUserCredential/action\",\r\n \"Microsoft.ResourceConnector/appliances/listKeys/action\",\r\n \"Microsoft.ResourceConnector/appliances/upgradeGraphs/read\",\r\n \"Microsoft.ResourceConnector/telemetryconfig/read\",\r\n \"Microsoft.ResourceConnector/operations/read\",\r\n \"Microsoft.ExtendedLocation/register/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/write\",\r\n \"Microsoft.ExtendedLocation/customLocations/delete\",\r\n \"Microsoft.HybridConnectivity/register/action\",\r\n \"Microsoft.Kubernetes/register/action\",\r\n \"Microsoft.KubernetesConfiguration/register/action\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.KubernetesConfiguration/namespaces/read\",\r\n \"Microsoft.KubernetesConfiguration/operations/read\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\r\n \"Microsoft.HybridContainerService/register/action\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/read\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/write\",\r\n \"Microsoft.HybridContainerService/skus/read\",\r\n \"Microsoft.HybridContainerService/skus/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Write\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-17T15:25:28.444621Z\",\r\n \"updatedOn\": \"2024-02-27T16:09:01.7449183Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7b1f81f9-4196-4058-8aae-762e593270df\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7b1f81f9-4196-4058-8aae-762e593270df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack HCI VM Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permissions to perform all VM actions\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStackHCI/VirtualMachines/*\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/*\",\r\n \"Microsoft.AzureStackHCI/NetworkInterfaces/*\",\r\n \"Microsoft.AzureStackHCI/VirtualHardDisks/*\",\r\n \"Microsoft.AzureStackHCI/VirtualNetworks/Read\",\r\n \"Microsoft.AzureStackHCI/VirtualNetworks/join/action\",\r\n \"Microsoft.AzureStackHCI/LogicalNetworks/Read\",\r\n \"Microsoft.AzureStackHCI/LogicalNetworks/join/action\",\r\n \"Microsoft.AzureStackHCI/GalleryImages/Read\",\r\n \"Microsoft.AzureStackHCI/GalleryImages/deploy/action\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Read\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/deploy/action\",\r\n \"Microsoft.AzureStackHCI/MarketplaceGalleryImages/Read\",\r\n \"Microsoft.AzureStackHCI/MarketPlaceGalleryImages/deploy/action\",\r\n \"Microsoft.AzureStackHCI/Clusters/Read\",\r\n \"Microsoft.AzureStackHCI/Clusters/ArcSettings/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/assessPatches/action\",\r\n \"Microsoft.HybridCompute/machines/installPatches/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\r\n \"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/write\",\r\n \"Microsoft.HybridCompute/machines/runcommands/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/licenses/write\",\r\n \"Microsoft.HybridCompute/licenses/delete\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-23T15:12:07.1298324Z\",\r\n \"updatedOn\": \"2024-06-24T15:12:45.8993374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/874d1c73-6003-4e60-a13a-cb31ea190a85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"874d1c73-6003-4e60-a13a-cb31ea190a85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack HCI VM Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permissions to view VMs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStackHCI/VirtualMachines/Read\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/Read\",\r\n \"Microsoft.AzureStackHCI/VirtualMachines/Extensions/Read\",\r\n \"Microsoft.AzureStackHCI/VirtualNetworks/Read\",\r\n \"Microsoft.AzureStackHCI/LogicalNetworks/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkInterfaces/Read\",\r\n \"Microsoft.AzureStackHCI/VirtualHardDisks/Read\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Read\",\r\n \"Microsoft.AzureStackHCI/GalleryImages/Read\",\r\n \"Microsoft.AzureStackHCI/MarketplaceGalleryImages/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Read\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/privateLinkScopes/networkSecurityPerimeterConfigurations/read\",\r\n \"Microsoft.HybridCompute/privateLinkScopes/privateEndpointConnections/read\",\r\n \"Microsoft.HybridCompute/privateLinkScopes/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-23T15:12:07.1288274Z\",\r\n \"updatedOn\": \"2024-06-24T15:12:45.8993374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4b3fe76c-f777-4d24-a2d7-b027b0f7b273\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b3fe76c-f777-4d24-a2d7-b027b0f7b273\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure AI Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform all actions within an Azure AI resource besides managing the resource itself.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/*/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/*/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/*/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/*/write\",\r\n \"Microsoft.MachineLearningServices/locations/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/listKeys/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/hubs/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/hubs/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/featurestores/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/featurestores/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/evaluations/results/labels/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/evaluations/results/reasonings/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/simulations/results/images/read\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/*\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*\",\r\n \"Microsoft.CognitiveServices/accounts/ContentSafety/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-23T15:12:07.1288274Z\",\r\n \"updatedOn\": \"2024-12-18T16:29:45.1510083Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"64702f94-c441-49e6-a78b-ef80e0188fee\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Deployment Environments Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides read access to environment resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DevCenter/projects/read\",\r\n \"Microsoft.DevCenter/projects/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.DevCenter/projects/pools/read\",\r\n \"Microsoft.DevCenter/projects/pools/schedules/read\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.DevCenter/projects/users/environments/adminRead/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminActionRead/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminOutputsRead/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-26T22:28:07.1033006Z\",\r\n \"updatedOn\": \"2023-10-26T22:28:07.1033006Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/eb960402-bf75-4cc3-8d68-35b34f960f72\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"eb960402-bf75-4cc3-8d68-35b34f960f72\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows send and receive access to event grid events.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.EventGrid/topics/read\",\r\n \"Microsoft.EventGrid/domains/read\",\r\n \"Microsoft.EventGrid/partnerNamespaces/read\",\r\n \"Microsoft.EventGrid/namespaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventGrid/events/send/action\",\r\n \"Microsoft.EventGrid/events/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-30T15:07:29.5851627Z\",\r\n \"updatedOn\": \"2023-10-30T15:07:29.5851627Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1d8c3fe3-8864-474b-8749-01e3783e8157\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d8c3fe3-8864-474b-8749-01e3783e8157\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows receive access to event grid events.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.EventGrid/namespaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventGrid/events/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-30T15:07:29.583163Z\",\r\n \"updatedOn\": \"2023-10-30T15:07:29.583163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/78cbd9e7-9798-4e2e-9b5a-547d9ebb31fb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"78cbd9e7-9798-4e2e-9b5a-547d9ebb31fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure AI Inference Deployment Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform all actions required to create a resource deployment within a resource group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/AutoscaleSettings/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-30T18:23:40.794418Z\",\r\n \"updatedOn\": \"2024-03-18T15:10:34.3892458Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3afb7f49-54cb-416e-8c09-6dc049efa503\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3afb7f49-54cb-416e-8c09-6dc049efa503\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Connected Cluster Managed Identity CheckAccess Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Built-in role that allows a Connected Cluster managed identity to call the checkAccess API\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-30T19:24:08.9641127Z\",\r\n \"updatedOn\": \"2023-11-08T16:32:10.4885906Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/65a14201-8f6c-4c28-bec4-12619c5a9aaa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"65a14201-8f6c-4c28-bec4-12619c5a9aaa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Advisor Reviews Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View reviews for a workload and recommendations linked to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Advisor/resiliencyReviews/read\",\r\n \"Microsoft.Advisor/triageRecommendations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-31T15:13:36.689705Z\",\r\n \"updatedOn\": \"2023-10-31T15:13:36.689705Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c64499e0-74c3-47ad-921c-13865957895c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c64499e0-74c3-47ad-921c-13865957895c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Advisor Reviews Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View reviews for a workload and triage recommendations linked to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Advisor/resiliencyReviews/read\",\r\n \"Microsoft.Advisor/triageRecommendations/read\",\r\n \"Microsoft.Advisor/triageRecommendations/approve/action\",\r\n \"Microsoft.Advisor/triageRecommendations/reject/action\",\r\n \"Microsoft.Advisor/triageRecommendations/reset/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-31T15:13:36.689705Z\",\r\n \"updatedOn\": \"2023-10-31T15:13:36.689705Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8aac15f0-d885-4138-8afa-bfb5872f7d13\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8aac15f0-d885-4138-8afa-bfb5872f7d13\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AgFood Platform Dataset Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to Dataset APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/datasets/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/datasetRecords/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-11-07T16:18:43.4932699Z\",\r\n \"updatedOn\": \"2023-11-07T16:18:43.4932699Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a8d4b70f-0fb9-4f72-b267-b87b2f990aec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a8d4b70f-0fb9-4f72-b267-b87b2f990aec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Defender for Storage Scanner Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you enable and configure Microsoft Defender for Storage's malware scanning and sensitive data discovery features on your storage accounts. Includes an ABAC condition to limit role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Security/defenderforstoragesettings/read\",\r\n \"Microsoft.Security/defenderforstoragesettings/write\",\r\n \"Microsoft.Security/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Security/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Security/datascanners/read\",\r\n \"Microsoft.Security/datascanners/write\",\r\n \"Microsoft.Security/dataScanners/delete\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.EventGrid/topics/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\",\r\n \"Microsoft.EventGrid/eventSubscriptions/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{1e7ca9b1-60d1-4db8-a914-f2ca1ff27c40, d5a91429-5739-47e2-a06b-3470a27159e7})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{1e7ca9b1-60d1-4db8-a914-f2ca1ff27c40, d5a91429-5739-47e2-a06b-3470a27159e7}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2023-11-13T16:11:26.3567622Z\",\r\n \"updatedOn\": \"2024-07-01T15:03:42.5850186Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0f641de8-0b88-4198-bdef-bd8b45ceba96\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0f641de8-0b88-4198-bdef-bd8b45ceba96\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Front Door Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view AFD standard and premium profiles and their endpoints, but can't make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Cdn/operationresults/profileresults/afdendpointresults/CheckCustomDomainDNSMappingStatus/action\",\r\n \"Microsoft.Cdn/profiles/queryloganalyticsmetrics/action\",\r\n \"Microsoft.Cdn/profiles/queryloganalyticsrankings/action\",\r\n \"Microsoft.Cdn/profiles/querywafloganalyticsmetrics/action\",\r\n \"Microsoft.Cdn/profiles/querywafloganalyticsrankings/action\",\r\n \"Microsoft.Cdn/profiles/afdendpoints/CheckCustomDomainDNSMappingStatus/action\",\r\n \"Microsoft.Cdn/profiles/Usages/action\",\r\n \"Microsoft.Cdn/profiles/afdendpoints/Usages/action\",\r\n \"Microsoft.Cdn/profiles/origingroups/Usages/action\",\r\n \"Microsoft.Cdn/profiles/rulesets/Usages/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-11-16T16:40:45.3765181Z\",\r\n \"updatedOn\": \"2024-01-29T16:00:37.3536665Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/662802e2-50f6-46b0-aed2-e834bacc6d12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"662802e2-50f6-46b0-aed2-e834bacc6d12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Enclave Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enclave Reader Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/catalogs/read\",\r\n \"Microsoft.Mission/catalogs/write\",\r\n \"Microsoft.Mission/catalogs/delete\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/approvals/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-11-29T16:10:05.7109858Z\",\r\n \"updatedOn\": \"2024-09-17T15:06:28.1478182Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/86fede04-b259-4277-8c3e-e26b9865abd8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86fede04-b259-4277-8c3e-e26b9865abd8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Hybrid Cluster Admin Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster admin credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/listAdminKubeconfig/action\",\r\n \"Microsoft.Kubernetes/connectedClusters/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-01T16:27:57.0085632Z\",\r\n \"updatedOn\": \"2023-12-01T16:27:57.0085632Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b5092dac-c796-4349-8681-1a322a31c3f9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b5092dac-c796-4349-8681-1a322a31c3f9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Hybrid Cluster User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster user credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/listUserKubeconfig/action\",\r\n \"Microsoft.Kubernetes/connectedClusters/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-01T16:27:57.023565Z\",\r\n \"updatedOn\": \"2023-12-01T16:27:57.023565Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fc3f91a1-40bf-4439-8c46-45edbd83563a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fc3f91a1-40bf-4439-8c46-45edbd83563a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Hybrid Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read and write Azure Kubernetes Services hybrid clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridContainerService/Locations/operationStatuses/read\",\r\n \"Microsoft.HybridContainerService/Operations/read\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/read\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/write\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/delete\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/write\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/delete\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/write\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/delete\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/upgradeProfiles/read\",\r\n \"Microsoft.HybridContainerService/skus/read\",\r\n \"Microsoft.HybridContainerService/skus/write\",\r\n \"Microsoft.HybridContainerService/skus/delete\",\r\n \"Microsoft.HybridContainerService/virtualNetworks/read\",\r\n \"Microsoft.HybridContainerService/virtualNetworks/write\",\r\n \"Microsoft.HybridContainerService/virtualNetworks/delete\",\r\n \"Microsoft.Kubernetes/connectedClusters/Read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/Delete\",\r\n \"Microsoft.Kubernetes/connectedClusters/listClusterUserCredential/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-01T16:27:57.0645659Z\",\r\n \"updatedOn\": \"2023-12-01T16:27:57.0645659Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e7037d40-443a-4434-a3fb-8cd202011e1d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e7037d40-443a-4434-a3fb-8cd202011e1d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Enclave Owner Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enclave Owner Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/Locations/OperationStatuses/read\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/write\",\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/catalogs/read\",\r\n \"Microsoft.Mission/catalogs/write\",\r\n \"Microsoft.Mission/catalogs/delete\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/internalConnections/write\",\r\n \"Microsoft.Mission/internalConnections/delete\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/write\",\r\n \"Microsoft.Mission/virtualEnclaves/delete\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/write\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/delete\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/enclaveConnections/write\",\r\n \"Microsoft.Mission/enclaveConnections/delete\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/write\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/delete\",\r\n \"Microsoft.Mission/approvals/read\",\r\n \"Microsoft.Mission/approvals/write\",\r\n \"Microsoft.Mission/approvals/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-06T16:25:52.526304Z\",\r\n \"updatedOn\": \"2024-09-17T15:06:28.1488186Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3d5f3eff-eb94-473d-91e3-7aac74d6c0bb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3d5f3eff-eb94-473d-91e3-7aac74d6c0bb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Community Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Community Reader Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/Locations/OperationStatuses/read\",\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/catalogs/read\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/externalConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/approvals/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-11T16:01:29.0551066Z\",\r\n \"updatedOn\": \"2024-09-17T15:06:28.1488186Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e6aadb6b-e64f-41c0-9392-d2bba3bc3ebc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e6aadb6b-e64f-41c0-9392-d2bba3bc3ebc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Enclave Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enclave Contributor Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/register/action\",\r\n \"Microsoft.Mission/unregister/action\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/read\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/write\",\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/catalogs/read\",\r\n \"Microsoft.Mission/catalogs/write\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/internalConnections/write\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/write\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/write\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/enclaveConnections/write\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/write\",\r\n \"Microsoft.Mission/approvals/read\",\r\n \"Microsoft.Mission/approvals/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-11T16:01:29.1699004Z\",\r\n \"updatedOn\": \"2024-09-17T15:06:28.1478182Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/19feefae-eacc-4106-81fd-ac34c0671f14\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19feefae-eacc-4106-81fd-ac34c0671f14\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Operator Nexus Key Vault Writer Service Role (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Provides Azure Operator Nexus services the ability to write to a Key Vault. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.KeyVault/vaults/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/setSecret/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-12T16:08:00.7618939Z\",\r\n \"updatedOn\": \"2024-08-15T19:26:12.0732073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/44f0a1a8-6fea-4b35-980a-8ff50c487c97\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"44f0a1a8-6fea-4b35-980a-8ff50c487c97\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Encryption Scope Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows management of Encryption Scopes on a Storage Account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/encryptionScopes/read\",\r\n \"Microsoft.Storage/storageAccounts/encryptionScopes/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-12T16:08:00.75889Z\",\r\n \"updatedOn\": \"2024-01-11T19:07:46.4940261Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a316ed6d-1efe-48ac-ac08-f7995a9c26fb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a316ed6d-1efe-48ac-ac08-f7995a9c26fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Service Release User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Release keys. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/release/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-15T22:59:10.4382726Z\",\r\n \"updatedOn\": \"2023-12-15T22:59:10.4382726Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/08bbd89e-9f13-488c-ac41-acfcb10c90ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08bbd89e-9f13-488c-ac41-acfcb10c90ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Runtime Storage Class Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, write, and delete Kubernetes Runtime storage classes in an Arc connected Kubernetes cluster\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.KubernetesRuntime/storageClasses/read\",\r\n \"Microsoft.KubernetesRuntime/storageClasses/write\",\r\n \"Microsoft.KubernetesRuntime/storageClasses/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-18T16:14:19.6296161Z\",\r\n \"updatedOn\": \"2024-08-20T15:22:00.2579913Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0cd9749a-3aaf-4ae5-8803-bd217705bf3b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0cd9749a-3aaf-4ae5-8803-bd217705bf3b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Programmable Connectivity Gateway User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows access to all Gateway dataplane APIs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-08T16:07:20.7530393Z\",\r\n \"updatedOn\": \"2024-01-08T16:07:20.7530393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/609c0c20-e0a0-4a71-b99f-e7e755ac493d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"609c0c20-e0a0-4a71-b99f-e7e755ac493d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Certificate User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read certificate contents. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/certificates/read\",\r\n \"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\",\r\n \"Microsoft.KeyVault/vaults/keys/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-11T16:37:07.6107024Z\",\r\n \"updatedOn\": \"2024-01-11T16:37:07.6107024Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/db79e9a7-68ee-4b58-9aeb-b90e7c24fcba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db79e9a7-68ee-4b58-9aeb-b90e7c24fcba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Spring Cloud Gateway Log Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read real-time logs for Spring Cloud Gateway in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppPlatform/Spring/read\",\r\n \"Microsoft.AppPlatform/Spring/gateways/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/SpringCloudGateway/logstream/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-12T08:25:35.9674075Z\",\r\n \"updatedOn\": \"2024-01-12T08:25:35.9674075Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4301dc2a-25a9-44b0-ae63-3636cf7f2bd2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4301dc2a-25a9-44b0-ae63-3636cf7f2bd2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Managed Components Log Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read real-time logs for all managed components in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/managedComponents/logstream/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-12T08:25:35.9674075Z\",\r\n \"updatedOn\": \"2024-01-12T08:25:35.9674075Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/52fd16bd-6ed5-46af-9c40-29cbd7952a29\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"52fd16bd-6ed5-46af-9c40-29cbd7952a29\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Application Configuration Service Log Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read real-time logs for Application Configuration Service in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppPlatform/Spring/read\",\r\n \"Microsoft.AppPlatform/Spring/configurationServices/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/ApplicationConfigurationService/logstream/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-12T08:25:35.9674075Z\",\r\n \"updatedOn\": \"2024-01-12T08:25:35.9674075Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6593e776-2a30-40f9-8a32-4fe28b77655d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6593e776-2a30-40f9-8a32-4fe28b77655d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Edge On-Site Deployment Engineer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants you access to take actions as an on-site person to assist in the provisioning of an edge device\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EdgeOrder/orderItems/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-12T11:13:31.4650719Z\",\r\n \"updatedOn\": \"2024-09-02T15:07:07.8729009Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/207bcc4b-86a6-4487-9141-d6c1f4c238aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"207bcc4b-86a6-4487-9141-d6c1f4c238aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure API Center Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for access to Azure API Center data plane read operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ApiCenter/services/*/read\",\r\n \"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/exportSpecification/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-12T20:39:09.6504931Z\",\r\n \"updatedOn\": \"2024-04-30T15:20:16.9299516Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c7244dfb-f447-457d-b2ba-3999044d1706\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7244dfb-f447-457d-b2ba-3999044d1706\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure impact-insight reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"built-in role for azure impact-insight read access\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Impact/WorkloadImpacts/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-22T16:09:33.1745465Z\",\r\n \"updatedOn\": \"2024-01-22T16:09:33.1745465Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dfb2f09d-25f8-4558-8986-497084006d7a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dfb2f09d-25f8-4558-8986-497084006d7a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Defender Kubernetes Agent Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants Microsoft Defender for Cloud permissions to provision the Kubernetes defender security agent\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"Microsoft.OperationalInsights/workspaces/listKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedkeys/action\",\r\n \"Microsoft.Kubernetes/register/action\",\r\n \"Microsoft.KubernetesConfiguration/register/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-30T16:11:35.3297751Z\",\r\n \"updatedOn\": \"2024-04-09T15:14:10.7703257Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8bb6f106-b146-4ee6-a3f9-b9c5a96e0ae5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8bb6f106-b146-4ee6-a3f9-b9c5a96e0ae5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Storage Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions to set OpenShift cluster-wide storage defaults. It ensures a default storageclass exists for clusters. It also installs Container Storage Interface (CSI) drivers which enable your cluster to use various storage backends.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/snapshots/write\",\r\n \"Microsoft.Compute/snapshots/read\",\r\n \"Microsoft.Compute/snapshots/delete\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/DiskOperations/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.5179336Z\",\r\n \"updatedOn\": \"2024-07-31T16:34:05.5954092Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5b7237c5-45e1-49d6-bc18-a1f62f400748\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5b7237c5-45e1-49d6-bc18-a1f62f400748\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The ARO Operator is responsible for maintaining features, checks, and resources that are specific to an Azure Red Hat OpenShift cluster's continued functionality as a managed service. This includes, but is not limited to, machine management and health, network configuration, and monitoring.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/natGateways/join/action\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.5179336Z\",\r\n \"updatedOn\": \"2024-08-09T22:45:04.3090537Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4436bae4-7702-4c84-919b-c4069ff25ee2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4436bae4-7702-4c84-919b-c4069ff25ee2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Azure Files Storage Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions to set OpenShift cluster-wide storage defaults. It ensures a default storageclass exists for clusters. It also installs Container Storage Interface (CSI) drivers which enable your cluster to use Azure Files.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/write\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.5229316Z\",\r\n \"updatedOn\": \"2024-07-31T16:34:05.5934089Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0d7aedc0-15fd-4a67-a412-efad370c947e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Image Registry Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions for the operator to manage a singleton instance of the OpenShift image registry. It manages all configuration of the registry, including creating storage.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/delete\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Resources/tags/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/move/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.5089317Z\",\r\n \"updatedOn\": \"2024-07-31T16:34:05.5934089Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8b32b316-c2f5-4ddf-b05b-83dacd2d08b5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8b32b316-c2f5-4ddf-b05b-83dacd2d08b5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Network Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions to install and upgrade the networking components on an OpenShift cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Compute/virtualMachines/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.524932Z\",\r\n \"updatedOn\": \"2024-07-31T16:34:05.5944092Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/be7a6435-15ae-4171-8f30-4a343eff9e8f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"be7a6435-15ae-4171-8f30-4a343eff9e8f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Cloud Controller Manager Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions for the operator to manage and update the cloud controller managers deployed on top of OpenShift.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/write\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/networkInterfaces/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.5239321Z\",\r\n \"updatedOn\": \"2024-07-31T16:34:05.5944092Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a1f96423-95ce-4224-ab27-4e3dc72facd4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a1f96423-95ce-4224-ab27-4e3dc72facd4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Machine API Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions for the operator to manage the lifecycle of specific purpose custom resource definitions (CRD), controllers, and RBAC objects that extend the Kubernetes API. This declares the desired state of machines in a cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/availabilitySets/delete\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/availabilitySets/write\",\r\n \"Microsoft.Compute/diskEncryptionSets/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/galleries/images/versions/read\",\r\n \"Microsoft.Compute/skus/read\",\r\n \"Microsoft.Compute/virtualMachines/delete\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/capacityReservationGroups/deploy/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\r\n \"Microsoft.Network/applicationSecurityGroups/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/write\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/routeTables/read\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.524932Z\",\r\n \"updatedOn\": \"2024-10-04T14:57:20.4946948Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0358943c-7e01-48ba-8889-02cc51d78637\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0358943c-7e01-48ba-8889-02cc51d78637\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Cluster Ingress Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions for the operator to configure and manage the OpenShift router.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/dnsZones/A/delete\",\r\n \"Microsoft.Network/dnsZones/A/write\",\r\n \"Microsoft.Network/privateDnsZones/A/delete\",\r\n \"Microsoft.Network/privateDnsZones/A/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:02.1193285Z\",\r\n \"updatedOn\": \"2024-07-31T16:34:05.5934089Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0336e1d3-7a87-462b-b6db-342b63f7802c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0336e1d3-7a87-462b-b6db-342b63f7802c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sphere Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user read and write access to Azure Sphere resources and RBAC configuration, includes an ABAC condition to constrain role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureSphere/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/DiagnosticSettingsCategories/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{8b9dfcab4b774632a6df94bd07820648,c8ae62795a0b4cb2b3f0d4d62845742c,6d994134994b4a599974f479f0b227fb,5a382001fe3641ffbba48bf06bd54da9,749f88d5cbae40b8bcfce573ddc772fa,43d0d8ad25c7471493378ba259a9fe05}\"\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{8b9dfcab4b774632a6df94bd07820648,c8ae62795a0b4cb2b3f0d4d62845742c,6d994134994b4a599974f479f0b227fb,5a382001fe3641ffbba48bf06bd54da9,749f88d5cbae40b8bcfce573ddc772fa,43d0d8ad25c7471493378ba259a9fe05}\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-02T23:44:55.2967178Z\",\r\n \"updatedOn\": \"2024-03-13T15:20:21.9497129Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5a382001-fe36-41ff-bba4-8bf06bd54da9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5a382001-fe36-41ff-bba4-8bf06bd54da9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"GroupQuota Request Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and create GroupQuota requests, get GroupQuota request status, and get groupQuotaLimits.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"MICROSOFT.QUOTA/QUOTAS/WRITE\",\r\n \"MICROSOFT.QUOTA/QUOTAS/READ\",\r\n \"MICROSOFT.QUOTA/USAGES/READ\",\r\n \"MICROSOFT.QUOTA/QUOTAREQUESTS/READ\",\r\n \"MICROSOFT.QUOTA/REGISTER/ACTION\",\r\n \"Microsoft.Quota/GROUPQUOTAS/*/READ\",\r\n \"Microsoft.Quota/GROUPQUOTAS/*/WRITE\",\r\n \"Microsoft.Quota/GROUPQUOTAS/*/DELETE\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-12T16:11:24.3956386Z\",\r\n \"updatedOn\": \"2025-02-05T16:24:28.8596243Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e2217c0e-04bb-4724-9580-91cf9871bc01\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e2217c0e-04bb-4724-9580-91cf9871bc01\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"GroupQuota Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read GroupQuota requests, get GroupQuota request status, and get groupQuotaLimits.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"MICROSOFT.QUOTA/QUOTAS/READ\",\r\n \"MICROSOFT.QUOTA/USAGES/READ\",\r\n \"MICROSOFT.QUOTA/QUOTAREQUESTS/READ\",\r\n \"MICROSOFT.QUOTA/REGISTER/ACTION\",\r\n \"Microsoft.Quota/GROUPQUOTAS/READ\",\r\n \"Microsoft.Quota/GROUPQUOTAS/subscriptions/READ\",\r\n \"Microsoft.Quota/GROUPQUOTAS/groupQuotaLimits/READ\",\r\n \"Microsoft.Quota/GROUPQUOTAS/quotaAllocations/READ\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-12T16:11:24.3956386Z\",\r\n \"updatedOn\": \"2024-02-12T16:11:24.3956386Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d0f495dc-44ef-4140-aeb0-b89110e6a7c1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d0f495dc-44ef-4140-aeb0-b89110e6a7c1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services Smart Boundary Solution User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to Smart Boundary Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-19T16:01:01.7948885Z\",\r\n \"updatedOn\": \"2024-05-29T15:22:21.4343125Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/539283cd-c185-4a9a-9503-d35217a1db7b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"539283cd-c185-4a9a-9503-d35217a1db7b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Defender for Cloud administrator (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you enable and configure Defender for Cloud capabilities on an Azure subscription. Includes an ABAC condition to constrain role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{1e241071085549ea94dc649edcd759de, d24ecba3c1f440faa7bb4588a071e8fd, d5a2ae44610b450093be660a0c5f5ca6, acdd72a7338548efbd42f606fba81ae7, 8480c0f04509422993397c10018cb8c4, 0f641de80b884198bdefbd8b45ceba96})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{1e241071085549ea94dc649edcd759de, d24ecba3c1f440faa7bb4588a071e8fd, d5a2ae44610b450093be660a0c5f5ca6, acdd72a7338548efbd42f606fba81ae7, 8480c0f04509422993397c10018cb8c4, 0f641de80b884198bdefbd8b45ceba96}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-26T16:08:39.4157774Z\",\r\n \"updatedOn\": \"2024-02-26T16:08:39.4157774Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/87a87389-f3af-4c43-a694-f6e5efec8582\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a87389-f3af-4c43-a694-f6e5efec8582\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Defender CSPM Storage Scanner Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you enable and configure Microsoft Defender CSPM's sensitive data discovery feature on your storage accounts. Includes an ABAC condition to limit role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Security/datascanners/read\",\r\n \"Microsoft.Security/datascanners/write\",\r\n \"Microsoft.Security/dataScanners/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{2a2b9908-6ea1-4ae2-8e65-a410df84e7d1, b8eda974-7b85-4f76-af95-65846b26df6d}\"\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{2a2b9908-6ea1-4ae2-8e65-a410df84e7d1, b8eda974-7b85-4f76-af95-65846b26df6d}\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-26T16:08:39.4167778Z\",\r\n \"updatedOn\": \"2024-10-01T15:07:21.7821657Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8480c0f0-4509-4229-9339-7c10018cb8c4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8480c0f0-4509-4229-9339-7c10018cb8c4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Advisor Recommendations Contributor (Assessments and Reviews)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View assessment recommendations, accepted review recommendations, and manage the recommendations lifecycle (mark recommendations as completed, postponed or dismissed, in progress, or not started).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Advisor/recommendations/write\",\r\n \"Microsoft.Advisor/recommendations/available/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-27T16:09:01.7439167Z\",\r\n \"updatedOn\": \"2024-03-14T23:14:57.0882716Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6b534d80-e337-47c4-864f-140f5c7f593d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6b534d80-e337-47c4-864f-140f5c7f593d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"GeoCatalog Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage GeoCatalogs, but does not allow you to assign roles in Azure RBAC.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Orbital/operations/read\",\r\n \"Microsoft.Orbital/geoCatalogs/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-28T16:09:25.0275812Z\",\r\n \"updatedOn\": \"2024-02-28T16:09:25.0275812Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c9c97b9c-105d-4bb5-a2a7-7d15666c2484\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c9c97b9c-105d-4bb5-a2a7-7d15666c2484\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"GeoCatalog Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View GeoCatalogs, but does not allow you to make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Orbital/operations/read\",\r\n \"Microsoft.Orbital/geoCatalogs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-28T16:09:25.026582Z\",\r\n \"updatedOn\": \"2024-02-28T16:09:25.026582Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b7b8f583-43d0-40ae-b147-6b46f53661c1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b7b8f583-43d0-40ae-b147-6b46f53661c1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Health Bot Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Users with reader access can sign in, have read-only access to the bot resources, scenarios and configuration setting except for the bot instance keys & secrets (including Authentication, Data Connection and Channels keys) and the end-user inputs (including Feedback, Unrecognized utterances and Conversation logs).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthBot/healthBots/Reader/Action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-29T16:10:59.0383279Z\",\r\n \"updatedOn\": \"2024-02-29T16:10:59.0383279Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/eb5a76d5-50e7-4c33-a449-070e7c9c4cf2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"eb5a76d5-50e7-4c33-a449-070e7c9c4cf2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Health Bot Editor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Users with editor access can sign in, view and edit all the bot resources, scenarios and configuration setting except for the bot instance keys & secrets and the end-user inputs (including Feedback, Unrecognized utterances and Conversation logs). A read-only access to the bot skills and channels.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthBot/healthBots/Editor/Action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-29T16:10:59.0803245Z\",\r\n \"updatedOn\": \"2024-02-29T16:10:59.0803245Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/af854a69-80ce-4ff7-8447-f1118a2e0ca8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"af854a69-80ce-4ff7-8447-f1118a2e0ca8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Health Bot Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Users with admin access can sign in, view and edit all of the bot resources, scenarios and configuration setting including the bot instance keys & secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthBot/healthBots/Admin/Action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-29T16:11:01.3963426Z\",\r\n \"updatedOn\": \"2024-02-29T16:11:01.3963426Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f1082fec-a70f-419f-9230-885d2550fb38\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f1082fec-a70f-419f-9230-885d2550fb38\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Programmable Connectivity Gateway Dataplane User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows access to all Gateway dataplane APIs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ProgrammableConnectivity/Gateways/NetworkAPIAccess\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-29T16:11:01.3963426Z\",\r\n \"updatedOn\": \"2024-03-19T15:23:13.6716091Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c20923c5-b089-47a5-bf67-fd89569c4ad9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c20923c5-b089-47a5-bf67-fd89569c4ad9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure AI Enterprise Network Connection Approver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can approve private endpoint connections to Azure AI common dependency resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/privateEndpointConnections/read\",\r\n \"Microsoft.ApiManagement/service/privateEndpointConnections/write\",\r\n \"Microsoft.ApiManagement/service/privateLinkResources/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/read\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/write\",\r\n \"Microsoft.Cache/redis/read\",\r\n \"Microsoft.Cache/redis/privateEndpointConnections/read\",\r\n \"Microsoft.Cache/redis/privateEndpointConnections/write\",\r\n \"Microsoft.Cache/redis/privateLinkResources/read\",\r\n \"Microsoft.Cache/redis/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Cache/redisEnterprise/read\",\r\n \"Microsoft.Cache/redisEnterprise/privateEndpointConnections/read\",\r\n \"Microsoft.Cache/redisEnterprise/privateEndpointConnections/write\",\r\n \"Microsoft.Cache/redisEnterprise/privateLinkResources/read\",\r\n \"Microsoft.Cache/redisEnterprise/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.CognitiveServices/accounts/read\",\r\n \"Microsoft.CognitiveServices/accounts/privateEndpointConnections/read\",\r\n \"Microsoft.CognitiveServices/accounts/privateEndpointConnections/write\",\r\n \"Microsoft.CognitiveServices/accounts/privateLinkResources/read\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/privateEndpointConnections/read\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/privateEndpointConnections/write\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/privateLinkResources/read\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/read\",\r\n \"Microsoft.DBforPostgreSQL/serverGroupsv2/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.DBforPostgreSQL/serverGroupsv2/privateEndpointConnections/read\",\r\n \"Microsoft.DBforPostgreSQL/serverGroupsv2/privateEndpointConnections/write\",\r\n \"Microsoft.DBforPostgreSQL/serverGroupsv2/privateLinkResources/read\",\r\n \"Microsoft.DBforMySQL/flexibleServers/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.DBforMySQL/flexibleServers/privateEndpointConnections/read\",\r\n \"Microsoft.DBforMySQL/flexibleServers/privateEndpointConnections/write\",\r\n \"Microsoft.DBforMySQL/flexibleServers/privateLinkResources/read\",\r\n \"Microsoft.DBforMySQL/flexibleServers/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/privateLinkResources/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"Microsoft.KeyVault/vaults/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.KeyVault/vaults/privateEndpointConnections/read\",\r\n \"Microsoft.KeyVault/vaults/privateEndpointConnections/write\",\r\n \"Microsoft.KeyVault/vaults/privateLinkResources/read\",\r\n \"Microsoft.KeyVault/vaults/read\",\r\n \"Microsoft.MachineLearningServices/registries/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.MachineLearningServices/registries/privateEndpointConnections/read\",\r\n \"Microsoft.MachineLearningServices/registries/privateEndpointConnections/write\",\r\n \"Microsoft.MachineLearningServices/registries/privateLinkResources/read\",\r\n \"Microsoft.MachineLearningServices/registries/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/privateEndpointConnections/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/privateEndpointConnections/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/privateLinkResources/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/read\",\r\n \"Microsoft.Storage/storageAccounts/privateEndpointConnections/read\",\r\n \"Microsoft.Storage/storageAccounts/privateEndpointConnections/write\",\r\n \"Microsoft.Storage/storageAccounts/privateLinkResources/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/PrivateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Sql/servers/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Sql/servers/privateEndpointConnections/read\",\r\n \"Microsoft.Sql/servers/privateEndpointConnections/write\",\r\n \"Microsoft.Sql/servers/privateLinkResources/read\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.EventHub/namespaces/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.EventHub/namespaces/privateEndpointConnections/read\",\r\n \"Microsoft.EventHub/namespaces/privateEndpointConnections/write\",\r\n \"Microsoft.EventHub/namespaces/privateLinkResources/read\",\r\n \"Microsoft.EventHub/namespaces/read\",\r\n \"Microsoft.Search/searchServices/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Search/searchServices/privateEndpointConnections/read\",\r\n \"Microsoft.Search/searchServices/privateEndpointConnections/write\",\r\n \"Microsoft.Search/searchServices/sharedPrivateLinkResources/read\",\r\n \"Microsoft.Search/searchServices/read\",\r\n \"Microsoft.Insights/privatelinkscopes/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Insights/privatelinkscopes/privateEndpointConnections/read\",\r\n \"Microsoft.Insights/privatelinkscopes/privateEndpointConnections/write\",\r\n \"Microsoft.Insights/privatelinkscopes/privateLinkResources/read\",\r\n \"Microsoft.Insights/privatelinkscopes/read\",\r\n \"Microsoft.Network/privateLinkServices/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Network/privateLinkServices/privateEndpointConnections/read\",\r\n \"Microsoft.Network/privateLinkServices/privateEndpointConnections/write\",\r\n \"Microsoft.Network/privateLinkServices/read\",\r\n \"Microsoft.Network/applicationGateways/privateEndpointConnections/read\",\r\n \"Microsoft.Network/applicationGateways/privateEndpointConnections/write\",\r\n \"Microsoft.Network/applicationGateways/privateLinkResources/read\",\r\n \"Microsoft.Network/applicationGateways/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-01T22:44:57.9174008Z\",\r\n \"updatedOn\": \"2025-01-30T21:18:01.5034976Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b556d68e-0be0-4f35-a333-ad7ee1ce17ea\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b556d68e-0be0-4f35-a333-ad7ee1ce17ea\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Container Storage Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role required by a Managed Identity for Azure Container Storage operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ElasticSan/elasticSans/*\",\r\n \"Microsoft.ElasticSan/locations/asyncoperations/read\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\r\n \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/virtualNetworks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-07T18:16:04.1237431Z\",\r\n \"updatedOn\": \"2024-03-22T22:01:01.7377883Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/08d4c71a-cc63-4ce4-a9c8-5dd251b4d619\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08d4c71a-cc63-4ce4-a9c8-5dd251b4d619\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Container Storage Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you install Azure Container Storage and manage its storage resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{08d4c71acc634ce4a9c85dd251b4d619})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{08d4c71acc634ce4a9c85dd251b4d619}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-07T18:46:25.1162285Z\",\r\n \"updatedOn\": \"2024-03-29T20:10:38.4259849Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/95dd08a6-00bd-4661-84bf-f6726f83a4d0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"95dd08a6-00bd-4661-84bf-f6726f83a4d0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Container Storage Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you install Azure Container Storage and grants access to its storage resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ElasticSan/elasticSans/*\",\r\n \"Microsoft.ElasticSan/locations/*\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/*\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/volumes/*\",\r\n \"Microsoft.ElasticSan/locations/asyncoperations/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{08d4c71acc634ce4a9c85dd251b4d619})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{08d4c71acc634ce4a9c85dd251b4d619}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-07T18:46:25.1172293Z\",\r\n \"updatedOn\": \"2024-03-29T20:10:38.4259849Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/95de85bd-744d-4664-9dde-11430bc34793\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"95de85bd-744d-4664-9dde-11430bc34793\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Arc Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read and write Azure Kubernetes Services hybrid clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridContainerService/Locations/operationStatuses/read\",\r\n \"Microsoft.HybridContainerService/Operations/read\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/read\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/write\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/delete\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/write\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/delete\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/write\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/delete\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/upgradeProfiles/read\",\r\n \"Microsoft.HybridContainerService/skus/read\",\r\n \"Microsoft.HybridContainerService/skus/write\",\r\n \"Microsoft.HybridContainerService/skus/delete\",\r\n \"Microsoft.HybridContainerService/virtualNetworks/read\",\r\n \"Microsoft.HybridContainerService/virtualNetworks/write\",\r\n \"Microsoft.HybridContainerService/virtualNetworks/delete\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/Delete\",\r\n \"Microsoft.Kubernetes/connectedClusters/listClusterUserCredential/action\",\r\n \"Microsoft.AzureStackHCI/clusters/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-08T00:33:15.790369Z\",\r\n \"updatedOn\": \"2024-04-17T15:24:13.1719241Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d3f1697-4507-4d08-bb4a-477695db5f82\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d3f1697-4507-4d08-bb4a-477695db5f82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Arc Cluster User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster user credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/listUserKubeconfig/action\",\r\n \"Microsoft.Kubernetes/connectedClusters/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-08T00:33:16.7231724Z\",\r\n \"updatedOn\": \"2024-03-08T00:33:16.7231724Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/233ca253-b031-42ff-9fba-87ef12d6b55f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"233ca253-b031-42ff-9fba-87ef12d6b55f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Arc Cluster Admin Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster admin credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/listAdminKubeconfig/action\",\r\n \"Microsoft.Kubernetes/connectedClusters/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-08T00:33:16.7341721Z\",\r\n \"updatedOn\": \"2024-03-08T00:33:16.7341721Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b29efa5f-7782-4dc3-9537-4d5bc70a5e9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b29efa5f-7782-4dc3-9537-4d5bc70a5e9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup MUA Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Backup MultiUser-Authorization. Can create/delete ResourceGuard \",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DataProtection/*/read\",\r\n \"Microsoft.DataProtection/*/resourceGuards/write\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/resourceGuards/write\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/resourceGuards/delete\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/resourceGuards/read\",\r\n \"Microsoft.DataProtection/locations/operationResults/read\",\r\n \"Microsoft.DataProtection/locations/operationStatus/read\",\r\n \"Microsoft.DataProtection/locations/getBackupStatus/action\",\r\n \"Microsoft.DataProtection/locations/checkFeatureSupport/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/operationStatus/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/unlockDelete/action\",\r\n \"Microsoft.DataProtection/subscriptions/providers/resourceGuards/read\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/resourceGuards/{operationName}/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-11T15:04:28.0520383Z\",\r\n \"updatedOn\": \"2024-03-11T15:04:28.0520383Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c2a970b4-16a7-4a51-8c84-8a8ea6ee0bb8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c2a970b4-16a7-4a51-8c84-8a8ea6ee0bb8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup MUA Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Backup MultiUser-Authorization. Allows user to perform critical operation protected by resourceguard\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DataProtection/*/action\",\r\n \"Microsoft.DataProtection/*/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-11T15:04:28.0520383Z\",\r\n \"updatedOn\": \"2024-03-11T15:04:28.0520383Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f54b6d04-23c6-443e-b462-9c16ab7b4a52\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f54b6d04-23c6-443e-b462-9c16ab7b4a52\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Savings plan Purchaser\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you purchase savings plans\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Capacity/register/action\",\r\n \"Microsoft.Capacity/catalogs/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.BillingBenefits/savingsPlanOrders/write\",\r\n \"Microsoft.BIllingBenefits/register/action\",\r\n \"Microsoft.Support/supporttickets/write\",\r\n \"Microsoft.Billing/billingProperty/read\",\r\n \"Microsoft.CostManagement/benefitRecommendations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-18T15:10:34.3862485Z\",\r\n \"updatedOn\": \"2024-03-18T15:10:34.3862485Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3d24a3a0-c154-4f6f-a5ed-adc8e01ddb74\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3d24a3a0-c154-4f6f-a5ed-adc8e01ddb74\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CrossConnectionManager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write access to ExpressRoute CrossConnections\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicNetwork/expressRouteCrossConnections/*\",\r\n \"Microsoft.Network/expressRouteCrossConnections/*\",\r\n \"Microsoft.Features/providers/features/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Network/expressRouteCrossConnections/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-19T15:23:13.6726125Z\",\r\n \"updatedOn\": \"2024-03-19T15:23:13.6726125Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/399c3b2b-64c2-4ff1-af34-571db925b068\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"399c3b2b-64c2-4ff1-af34-571db925b068\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CrossConnectionReader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to ExpressRoute CrossConnections\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicNetwork/expressRouteCrossConnections/*/read\",\r\n \"Microsoft.Network/expressRouteCrossConnections/*/read\",\r\n \"Microsoft.Features/providers/features/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-19T15:23:13.6446077Z\",\r\n \"updatedOn\": \"2024-03-19T15:23:13.6446077Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b6ee44de-fe58-4ddc-b5c2-ab174eb23f05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b6ee44de-fe58-4ddc-b5c2-ab174eb23f05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Agent Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants Microsoft Defender for Cloud access to Azure Kubernetes Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.ContainerService/managedClusters/read\",\r\n \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/delete\",\r\n \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/read\",\r\n \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/write\",\r\n \"Microsoft.ContainerService/managedClusters/write\",\r\n \"Microsoft.Security/pricings/securityoperators/read\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"Microsoft.OperationalInsights/workspaces/listKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedkeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedkeys/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-21T15:42:52.8028925Z\",\r\n \"updatedOn\": \"2024-12-06T16:25:12.4547515Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e93ba01-8f92-4c7a-b12a-801e3df23824\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure API Center Compliance Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows managing API compliance in Azure API Center service.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiCenter/services/*/read\",\r\n \"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/updateAnalysisState/action\",\r\n \"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/exportSpecification/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-25T15:06:22.7412927Z\",\r\n \"updatedOn\": \"2024-03-25T15:06:22.7412927Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ede9aaa3-4627-494e-be13-4aa7c256148d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ede9aaa3-4627-494e-be13-4aa7c256148d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure API Center Service Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read-only access to Azure API Center service.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiCenter/services/*/read\",\r\n \"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/exportSpecification/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-25T15:06:22.7402909Z\",\r\n \"updatedOn\": \"2024-03-25T15:06:22.7402909Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6cba8790-29c5-48e5-bab1-c7541b01cb04\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6cba8790-29c5-48e5-bab1-c7541b01cb04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure API Center Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows managing Azure API Center service.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiCenter/services/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/updateAnalysisState/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-25T15:06:22.7412927Z\",\r\n \"updatedOn\": \"2024-03-25T15:06:22.7412927Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dd24193f-ef65-44e5-8a7e-6fa6e03f7713\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dd24193f-ef65-44e5-8a7e-6fa6e03f7713\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services Historical Weather Data Solution User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to Historical Weather Data Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-26T15:15:04.8792612Z\",\r\n \"updatedOn\": \"2024-08-09T17:11:19.7209693Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b5b192c1-773c-4543-bfb0-6c59254b74a9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b5b192c1-773c-4543-bfb0-6c59254b74a9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Oracle Subscriptions Manager Built-in Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all Oracle Subscriptions resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Oracle.Database/oracleSubscriptions/*/read\",\r\n \"Oracle.Database/oracleSubscriptions/*/write\",\r\n \"Oracle.Database/oracleSubscriptions/*/delete\",\r\n \"Oracle.Database/oracleSubscriptions/*/action\",\r\n \"Oracle.Database/Locations/*/read\",\r\n \"Oracle.Database/Locations/*/write\",\r\n \"Oracle.Database/Operations/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-26T15:15:04.8802611Z\",\r\n \"updatedOn\": \"2024-04-08T15:07:44.8273943Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4caf51ec-f9f5-413f-8a94-b9f5fddba66b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4caf51ec-f9f5-413f-8a94-b9f5fddba66b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Oracle.Database Owner Built-in Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all Oracle.Database resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Oracle.Database/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Compute/sshPublicKeys/read\",\r\n \"Microsoft.Compute/sshPublicKeys/write\",\r\n \"Microsoft.Compute/sshPublicKeys/generateKeyPair/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-26T15:15:05.077072Z\",\r\n \"updatedOn\": \"2024-04-05T21:31:52.1474736Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4562aac9-b209-4bd7-a144-6d7f3bb516f4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4562aac9-b209-4bd7-a144-6d7f3bb516f4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Oracle.Database Reader Built-in Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read access to all Oracle.Database resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Oracle.Database/Locations/*/read\",\r\n \"Oracle.Database/Operations/read\",\r\n \"Oracle.Database/oracleSubscriptions/*/read\",\r\n \"Oracle.Database/cloudExadataInfrastructures/*/read\",\r\n \"Oracle.Database/cloudVmClusters/*/read\",\r\n \"Oracle.Database/cloudVmClusters/listPrivateIpAddresses/action\",\r\n \"Oracle.Database/oracleSubscriptions/listCloudAccountDetails/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-26T15:15:05.077072Z\",\r\n \"updatedOn\": \"2024-04-08T15:07:44.8263947Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d623d097-b882-4e1e-a26f-ac60e31065a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d623d097-b882-4e1e-a26f-ac60e31065a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Oracle.Database VmCluster Administrator Built-in Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all VmCluster resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Oracle.Database/cloudVmClusters/*/read\",\r\n \"Oracle.Database/cloudVmClusters/*/write\",\r\n \"Oracle.Database/cloudVmClusters/*/delete\",\r\n \"Oracle.Database/cloudExadataInfrastructures/write\",\r\n \"Oracle.Database/cloudExadataInfrastructures/*/read\",\r\n \"Oracle.Database/Locations/*/read\",\r\n \"Oracle.Database/Locations/*/write\",\r\n \"Oracle.Database/Operations/read\",\r\n \"Oracle.Database/oracleSubscriptions/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Compute/sshPublicKeys/read\",\r\n \"Microsoft.Compute/sshPublicKeys/write\",\r\n \"Microsoft.Compute/sshPublicKeys/generateKeyPair/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-26T15:15:05.083071Z\",\r\n \"updatedOn\": \"2024-04-08T15:07:46.2529727Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e9ce8739-6fa2-4123-a0a2-0ef41a67806f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e9ce8739-6fa2-4123-a0a2-0ef41a67806f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Oracle.Database Exadata Infrastructure Administrator Built-in Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all Exadata Infrastructure resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Oracle.Database/cloudExadataInfrastructures/*/read\",\r\n \"Oracle.Database/cloudExadataInfrastructures/*/write\",\r\n \"Oracle.Database/cloudExadataInfrastructures/*/delete\",\r\n \"Oracle.Database/cloudVmClusters/*/read\",\r\n \"Oracle.Database/cloudVmClusters/*/write\",\r\n \"Oracle.Database/cloudVmClusters/*/delete\",\r\n \"Oracle.Database/cloudVmClusters/*/action\",\r\n \"Oracle.Database/Locations/*/read\",\r\n \"Oracle.Database/Locations/*/write\",\r\n \"Oracle.Database/Operations/read\",\r\n \"Oracle.Database/oracleSubscriptions/*/read\",\r\n \"Oracle.Database/oracleSubscriptions/listCloudAccountDetails/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Compute/sshPublicKeys/read\",\r\n \"Microsoft.Compute/sshPublicKeys/write\",\r\n \"Microsoft.Compute/sshPublicKeys/generateKeyPair/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-26T15:15:05.3035903Z\",\r\n \"updatedOn\": \"2024-04-08T15:07:46.2539738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4cfdd23b-aece-4fd1-b614-ad3a06c53453\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4cfdd23b-aece-4fd1-b614-ad3a06c53453\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Application Configuration Service Config File Pattern Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read content of config file pattern for Application Configuration Service in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppPlatform/Spring/read\",\r\n \"Microsoft.AppPlatform/Spring/configurationServices/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/ApplicationConfigurationService/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-28T15:27:28.8416423Z\",\r\n \"updatedOn\": \"2024-03-28T15:27:28.8416423Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/25211fc6-dc78-40b6-b205-e4ac934fd9fd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"25211fc6-dc78-40b6-b205-e4ac934fd9fd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Messaging Catalog Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Messaging Catalog resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MessagingCatalog/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MessagingCatalog/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-28T15:27:28.8416423Z\",\r\n \"updatedOn\": \"2024-03-28T15:27:28.8416423Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f27b7598-bc64-41f7-8a44-855ff16326c2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f27b7598-bc64-41f7-8a44-855ff16326c2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Hybrid Database Administrator - Read Only Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read only access to Azure hybrid database services resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureArcData/*/read\",\r\n \"Microsoft.AzureArcData/sqlServerInstances/getTelemetry/action\",\r\n \"Microsoft.AzureArcData/sqlServerInstances/availabilityGroups/getDetailView/action\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-04T17:22:37.1908565Z\",\r\n \"updatedOn\": \"2024-04-04T17:22:37.1908565Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d9c6a55-fc0e-4e21-ae6f-f7b095497342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d9c6a55-fc0e-4e21-ae6f-f7b095497342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Sentinel Business Applications Agent Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List and update actions on a business applications system. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/read\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/write\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/systems/read\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/systems/write\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/systems/listActions/action\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/systems/reportActionStatus/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-05T08:06:44.3219877Z\",\r\n \"updatedOn\": \"2024-06-06T15:32:14.8579262Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c18f9900-27b8-47c7-a8f0-5b3b3d4c2bc2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c18f9900-27b8-47c7-a8f0-5b3b3d4c2bc2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Quantum Workspace Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows creating an Azure Quantum Workspace with a linked Storage Account with any Providers. Includes an ABAC condition to constrain role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Quantum/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Solutions/applications/read\",\r\n \"Microsoft.Solutions/register/action\",\r\n \"Microsoft.MarketplaceOrdering/offertypes/publishers/offers/plans/agreements/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{17d1049b-9a84-46fb-8f53-869881c3d3ab}\"\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{17d1049b-9a84-46fb-8f53-869881c3d3ab}\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-05T19:46:30.3992366Z\",\r\n \"updatedOn\": \"2024-06-21T17:26:18.9053878Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/30b3bcf2-670a-4bdc-8669-7e0ae0c0dfda\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"30b3bcf2-670a-4bdc-8669-7e0ae0c0dfda\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure ContainerApps Session Executor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and execute sessions in a sessionPool\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/sessionPools/*/read\",\r\n \"Microsoft.App/sessionPools/sessions/generatesessions/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.App/sessionPools/*/read\",\r\n \"Microsoft.App/sessionPools/interpreters/execute/action\",\r\n \"Microsoft.App/sessionPools/interpreters/read\",\r\n \"Microsoft.App/sessionPools/executions/*\",\r\n \"Microsoft.App/sessionPools/files/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-08T15:07:44.8193956Z\",\r\n \"updatedOn\": \"2024-11-06T16:01:16.6620491Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0fb8eba5-a2bb-4abe-b1c1-49dfad359bb0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0fb8eba5-a2bb-4abe-b1c1-49dfad359bb0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft.Edge Winfields federated subscription read access role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.Edge Winfields role for read access on federated subscriptions\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-15T15:14:13.2886992Z\",\r\n \"updatedOn\": \"2024-07-16T15:12:08.3117167Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/83ee7727-862c-4213-8ed8-2ce6c5d69a40\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"83ee7727-862c-4213-8ed8-2ce6c5d69a40\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Federated Credential Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role grants the permissions required in order to patch cluster managed identities with the federated credential to build a trust relationship between the managed identity, OIDC, and the service account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-15T15:14:13.2906962Z\",\r\n \"updatedOn\": \"2024-04-15T15:14:13.2906962Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ef318e2a-8334-4a05-9e4a-295a196c6a6e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services Crop Id Solution User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to Crop Id Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-22T15:03:58.3512473Z\",\r\n \"updatedOn\": \"2024-05-16T15:24:47.2532254Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/39138f76-04e6-41f0-ba6b-c411b59081a9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39138f76-04e6-41f0-ba6b-c411b59081a9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduled Events Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to scheduled event actions\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Maintenance/scheduledevents/acknowledge/action\",\r\n \"Microsoft.Compute/VirtualMachines/read\",\r\n \"Microsoft.Compute/VirtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/AvailabilitySets/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-24T15:11:03.2385683Z\",\r\n \"updatedOn\": \"2024-05-06T15:07:27.9162114Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b67fe603-310e-4889-b9ee-8257d09d353d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b67fe603-310e-4889-b9ee-8257d09d353d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Compute Recommendations Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permissions to call Compute Recommendations APIs provided by Compute Diagnostic Resource Provider service.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/locations/placementScores/generate/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-01T15:29:03.4064531Z\",\r\n \"updatedOn\": \"2024-07-03T15:20:29.2192889Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e82342c9-ac7f-422b-af64-e426d2e12b2d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e82342c9-ac7f-422b-af64-e426d2e12b2d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Job Log Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read real-time logs for jobs in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppPlatform/Spring/read\",\r\n \"Microsoft.AppPlatform/Spring/jobs/read\",\r\n \"Microsoft.AppPlatform/Spring/jobs/executions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/jobs/executions/logstream/action\",\r\n \"Microsoft.AppPlatform/Spring/jobs/executions/listInstances/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-03T02:44:23.2142297Z\",\r\n \"updatedOn\": \"2024-05-03T02:44:23.2142297Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b459aa1d-e3c8-436f-ae21-c0531140f43e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b459aa1d-e3c8-436f-ae21-c0531140f43e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Job Execution Instance List Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List instances for job executions in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/jobs/executions/listInstances/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-03T02:44:23.2139801Z\",\r\n \"updatedOn\": \"2024-05-03T02:44:23.2139801Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/91422e52-bb88-4415-bb4a-90f5b71f6dcb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"91422e52-bb88-4415-bb4a-90f5b71f6dcb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Nexus Network Fabric Service Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-write access to Nexus Network Fabric Service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedNetworkFabric/*/read\",\r\n \"Microsoft.ManagedNetworkFabric/*/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-13T15:04:37.4782279Z\",\r\n \"updatedOn\": \"2024-05-13T15:04:37.4782279Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a5eb8433-97a5-4a06-80b2-a877e1622c31\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a5eb8433-97a5-4a06-80b2-a877e1622c31\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Nexus Network Fabric Service Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to Nexus Network Fabric Service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedNetworkFabric/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-13T15:04:37.4782279Z\",\r\n \"updatedOn\": \"2024-05-13T15:04:37.4782279Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/05fdd44c-adc6-4aff-981c-61041f0c929a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"05fdd44c-adc6-4aff-981c-61041f0c929a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Deployment Stack Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows a user to manage deployment stacks, including those with deny assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deploymentStacks/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-16T23:13:29.6757377Z\",\r\n \"updatedOn\": \"2024-05-16T23:13:29.6757377Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/adb29209-aa1d-457b-a786-c913953d2891\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"adb29209-aa1d-457b-a786-c913953d2891\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Deployment Stack Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows a user to manage deployment stacks, but cannot create or delete deny assignments within the deployment stack.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deploymentStacks/write\",\r\n \"Microsoft.Resources/deploymentStacks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-16T23:13:29.6757377Z\",\r\n \"updatedOn\": \"2024-05-16T23:13:29.6757377Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bf7f8882-3383-422a-806a-6526c631a88a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bf7f8882-3383-422a-806a-6526c631a88a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Group Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Manage Resource Group Operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-21T18:03:26.7015785Z\",\r\n \"updatedOn\": \"2024-05-21T18:03:26.7015785Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/94877a25-7520-40c5-9c42-68e02e4758bd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"94877a25-7520-40c5-9c42-68e02e4758bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Spring Cloud Config Server Log Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read real-time logs for Spring Cloud Config Server in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppPlatform/Spring/read\",\r\n \"Microsoft.AppPlatform/Spring/configServers/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/configService/logstream/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-30T15:22:33.0533129Z\",\r\n \"updatedOn\": \"2024-05-30T15:22:33.0533129Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/74252426-c508-480e-9345-4607bbebead4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"74252426-c508-480e-9345-4607bbebead4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Repository Catalog Lister\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for listing all repositories in an Azure Container Registry. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/catalog/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-06T15:32:14.9109269Z\",\r\n \"updatedOn\": \"2024-08-20T15:22:00.2589914Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bfdb9389-c9a5-478a-bb2f-ba9ca092c3c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfdb9389-c9a5-478a-bb2f-ba9ca092c3c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Repository Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access to Azure Container Registry repositories, but excluding catalog listing. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/write\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/write\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/delete\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-06T15:47:34.3399996Z\",\r\n \"updatedOn\": \"2024-08-20T15:22:00.2599913Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2efddaa5-3f1f-4df3-97df-af3f13818f4c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Repository Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Container Registry repositories, but excluding catalog listing. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-06T15:47:34.3399996Z\",\r\n \"updatedOn\": \"2024-08-20T15:22:00.2579913Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b93aa761-3e63-49ed-ac28-beffa264f7ac\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b93aa761-3e63-49ed-ac28-beffa264f7ac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Repository Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read and write access to Azure Container Registry repositories, but excluding catalog listing. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/write\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-06T15:47:34.3399996Z\",\r\n \"updatedOn\": \"2024-08-20T15:22:02.2893272Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a1e307c-b015-4ebd-883e-5b7698a07328\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2a1e307c-b015-4ebd-883e-5b7698a07328\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DeID Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to DeID data. This role is in preview and subject to change\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthDataAIServices/DeidServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-07T21:23:54.9017124Z\",\r\n \"updatedOn\": \"2024-06-07T21:23:54.9017124Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/78e4b983-1a0b-472e-8b7d-8d770f7c5890\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"78e4b983-1a0b-472e-8b7d-8d770f7c5890\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Locks Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Manage Locks Operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/locks/read\",\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/locks/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-07T22:55:15.2914829Z\",\r\n \"updatedOn\": \"2024-06-07T22:55:15.2914829Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/28bf596f-4eb7-45ce-b5bc-6cf482fec137\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"28bf596f-4eb7-45ce-b5bc-6cf482fec137\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kusto Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Manage Kusto Operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Kusto/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-10T15:10:25.9460001Z\",\r\n \"updatedOn\": \"2024-06-14T19:14:18.9510936Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8ca4f98b-e38b-4784-9fc0-7aefa970cc5b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8ca4f98b-e38b-4784-9fc0-7aefa970cc5b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CloudTest Leased VM Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CloudTest leased VM's credentials\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.CloudTest/pools/leases/action\",\r\n \"Microsoft.CloudTest/pools/leases/complete/action\",\r\n \"Microsoft.CloudTest/pools/leases/extend/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-13T21:05:25.3085384Z\",\r\n \"updatedOn\": \"2025-01-30T19:16:58.167536Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b1e6a0dd-ea0f-4108-8925-7047693f2cfe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b1e6a0dd-ea0f-4108-8925-7047693f2cfe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Standby Container Group Pool Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows users to manage standby container group pool resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ContainerInstance/containerGroupProfiles/read\",\r\n \"Microsoft.ContainerInstance/containerGroupProfiles/revisions/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.StandbyPool/Locations/OperationStatuses/read\",\r\n \"Microsoft.StandbyPool/Operations/read\",\r\n \"Microsoft.StandbyPool/standbyContainerGroupPools/delete\",\r\n \"Microsoft.StandbyPool/standbyContainerGroupPools/read\",\r\n \"Microsoft.StandbyPool/standbyContainerGroupPools/runtimeViews/read\",\r\n \"Microsoft.StandbyPool/standbyContainerGroupPools/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-18T15:22:31.7393554Z\",\r\n \"updatedOn\": \"2024-06-18T15:22:31.7393554Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/39fcb0de-8844-4706-b050-c28ddbe3ff83\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39fcb0de-8844-4706-b050-c28ddbe3ff83\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Compute Gallery Artifacts Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This is the role for publishing gallery artifacts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/galleries/*\",\r\n \"Microsoft.Compute/locations/capsOperations/read\",\r\n \"Microsoft.Compute/locations/communityGalleries/*\",\r\n \"Microsoft.Compute/locations/sharedGalleries/*\",\r\n \"Microsoft.Compute/images/*\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/galleries/share/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-21T00:16:23.240823Z\",\r\n \"updatedOn\": \"2024-06-21T00:16:23.240823Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/85a2d0d9-2eba-4c9c-b355-11c2cc0788ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"85a2d0d9-2eba-4c9c-b355-11c2cc0788ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ToolchainOrchestrator Viewer Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grant access to view all Toolchain orchestrator resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ToolchainOrchestrator/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-21T07:53:15.2955453Z\",\r\n \"updatedOn\": \"2024-07-01T15:03:41.8457839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c5826735-177b-4a0d-a9a3-d0e4b4bda107\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c5826735-177b-4a0d-a9a3-d0e4b4bda107\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ToolchainOrchestrator Admin Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grant full access to manage all Toolchain orchestrator resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ToolchainOrchestrator/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-21T08:08:21.7019434Z\",\r\n \"updatedOn\": \"2024-07-01T15:03:41.8477821Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2ccf8795-8983-4912-8036-1c45212c95e8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2ccf8795-8983-4912-8036-1c45212c95e8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ProviderHub Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows you to create and manage Microsoft.ProviderHub resources through the Resource Provider Platform. Does not allow you to assign roles in Azure RBAC.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ProviderHub/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-03T15:20:27.4637413Z\",\r\n \"updatedOn\": \"2024-07-03T15:20:27.4637413Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a3ab03bc-5350-42ff-b0d5-00207672db55\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a3ab03bc-5350-42ff-b0d5-00207672db55\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ProviderHub Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows you to view all Microsoft.ProviderHub resources created through the Resource Provider Platform, but does not allow you to make any changes to the resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ProviderHub/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-03T15:20:27.7899871Z\",\r\n \"updatedOn\": \"2024-07-03T15:20:27.7899871Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d8c6f2e-3fd6-4d40-826e-93e3dc4c3fc1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d8c6f2e-3fd6-4d40-826e-93e3dc4c3fc1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack HCI Connected InfraVMs\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role of Arc Integration for Azure Stack HCI Infrastructure Virtual Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/*/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-04T15:33:28.3954303Z\",\r\n \"updatedOn\": \"2024-07-16T15:12:08.313718Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c99c945f-8bd1-4fb1-a903-01460aae6068\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c99c945f-8bd1-4fb1-a903-01460aae6068\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"VM Restore Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Delete resources during VM Restore. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Compute/disks/endGetAccess/action\",\r\n \"Microsoft.Compute/locations/diskOperations/read\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/delete\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/write\",\r\n \"Microsoft.Compute/virtualMachines/extensions/delete\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/locations/usages/read\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/checkNameAvailability/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-04T15:33:28.3964297Z\",\r\n \"updatedOn\": \"2024-07-04T15:33:28.3964297Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dfce8971-25e3-42e3-ba33-6055438e3080\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dfce8971-25e3-42e3-ba33-6055438e3080\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, create, modify and delete HDInsight clusters, configuration, extensions, etc.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/APPLICATIONS/DELETE\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/APPLICATIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/APPLICATIONS/WRITE\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/AZUREASYNCOPERATIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/CONFIGURATIONS/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/CONFIGURATIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/DELETE\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/EXECUTESCRIPTACTIONS/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/EXTENSIONS/DELETE\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/EXTENSIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/EXTENSIONS/WRITE\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/GETGATEWAYSETTINGS/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/LISTHOSTS/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/OPERATIONRESULTS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/PRIVATEENDPOINTCONNECTIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/PRIVATELINKRESOURCES/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/RESOLVEPRIVATELINKSERVICEID/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/RESTARTHOSTS/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/ROLES/AUTOSCALE/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/ROLES/RESIZE/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/SCRIPTACTIONS/DELETE\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/SCRIPTACTIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/SCRIPTEXECUTIONHISTORY/PROMOTE/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/SCRIPTEXECUTIONHISTORY/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/UPDATEGATEWAYSETTINGS/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/WRITE\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/AVAILABLECLUSTERVERSIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/AZUREASYNCOPERATIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/BILLINGSPECS/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/CAPABILITIES/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/CHECKNAMEAVAILABILITY/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/OPERATIONRESULTS/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/OPERATIONSTATUSES/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/OPERATIONSTATUSES/WRITE\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/USAGES/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/VALIDATECREATEREQUEST/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/OPERATIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/REGISTER/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/RESOURCETYPES/READ\",\r\n \"MICROSOFT.HDINSIGHT/UNREGISTER/ACTION\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-05T05:57:31.8286631Z\",\r\n \"updatedOn\": \"2024-07-05T05:57:31.8286631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0847e196-2fd2-4c2f-a48c-fca6fd030f44\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0847e196-2fd2-4c2f-a48c-fca6fd030f44\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Operator Nexus Compute Contributor Role (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Manage and configure Azure Operator Nexus infrastructure resources. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/classicAdministrators/operationstatuses/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/denyAssignments/read\",\r\n \"Microsoft.Authorization/diagnosticSettings/read\",\r\n \"Microsoft.Authorization/diagnosticSettingsCategories/read\",\r\n \"Microsoft.Authorization/locks/read\",\r\n \"Microsoft.Authorization/operations/read\",\r\n \"Microsoft.Authorization/permissions/read\",\r\n \"Microsoft.Authorization/policyAssignments/read\",\r\n \"Microsoft.Authorization/policyAssignments/privateLinkAssociations/read\",\r\n \"Microsoft.Authorization/policyAssignments/resourceManagementPrivateLinks/read\",\r\n \"Microsoft.Authorization/policyAssignments/resourceManagementPrivateLinks/privateEndpointConnectionProxies/read\",\r\n \"Microsoft.Authorization/policyAssignments/resourceManagementPrivateLinks/privateEndpointConnections/read\",\r\n \"Microsoft.Authorization/policyDefinitions/read\",\r\n \"Microsoft.Authorization/policyExemptions/read\",\r\n \"Microsoft.Authorization/policySetDefinitions/read\",\r\n \"Microsoft.Authorization/providerOperations/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleAssignmentScheduleInstances/read\",\r\n \"Microsoft.Authorization/roleAssignmentScheduleRequests/read\",\r\n \"Microsoft.Authorization/roleAssignmentSchedules/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"Microsoft.Authorization/roleEligibilityScheduleInstances/read\",\r\n \"Microsoft.Authorization/roleEligibilityScheduleRequests/read\",\r\n \"Microsoft.Authorization/roleEligibilitySchedules/read\",\r\n \"Microsoft.Authorization/roleManagementPolicies/read\",\r\n \"Microsoft.Authorization/roleManagementPolicyAssignments/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.Insights/alertRules/activated/action\",\r\n \"Microsoft.Insights/alertRules/delete\",\r\n \"Microsoft.Insights/alertRules/incidents/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Insights/alertRules/resolved/action\",\r\n \"Microsoft.Insights/alertRules/throttled/action\",\r\n \"Microsoft.Insights/alertRules/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.ManagedNetworkFabric/networkFabricControllers/join/action\",\r\n \"Microsoft.ManagedNetworkFabric/networkFabrics/join/action\",\r\n \"Microsoft.ManagedNetworkFabric/networkRacks/join/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/cordon/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/delete\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/powerOff/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/read\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/reimage/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/replace/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/restart/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/runDataExtracts/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/runReadCommands/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/start/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/uncordon/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/write\",\r\n \"Microsoft.NetworkCloud/clusterManagers/delete\",\r\n \"Microsoft.NetworkCloud/clusterManagers/read\",\r\n \"Microsoft.NetworkCloud/clusterManagers/write\",\r\n \"Microsoft.NetworkCloud/clusters/bareMetalMachineKeySets/read\",\r\n \"Microsoft.NetworkCloud/clusters/bmcKeySets/read\",\r\n \"Microsoft.NetworkCloud/clusters/continueUpdateVersion/action\",\r\n \"Microsoft.NetworkCloud/clusters/delete\",\r\n \"Microsoft.NetworkCloud/clusters/deploy/action\",\r\n \"Microsoft.NetworkCloud/clusters/metricsConfigurations/delete\",\r\n \"Microsoft.NetworkCloud/clusters/metricsConfigurations/read\",\r\n \"Microsoft.NetworkCloud/clusters/metricsConfigurations/write\",\r\n \"Microsoft.NetworkCloud/clusters/read\",\r\n \"Microsoft.NetworkCloud/clusters/scanRuntime/action\",\r\n \"Microsoft.NetworkCloud/clusters/updateVersion/action\",\r\n \"Microsoft.NetworkCloud/clusters/write\",\r\n \"Microsoft.NetworkCloud/locations/operationStatuses/read\",\r\n \"Microsoft.NetworkCloud/operations/read\",\r\n \"Microsoft.NetworkCloud/rackSkus/read\",\r\n \"Microsoft.NetworkCloud/racks/delete\",\r\n \"Microsoft.NetworkCloud/racks/join/action\",\r\n \"Microsoft.NetworkCloud/racks/read\",\r\n \"Microsoft.NetworkCloud/racks/write\",\r\n \"Microsoft.NetworkCloud/register/action\",\r\n \"Microsoft.NetworkCloud/registeredSubscriptions/read\",\r\n \"Microsoft.NetworkCloud/storageAppliances/read\",\r\n \"Microsoft.NetworkCloud/unregister/action\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-11T15:42:35.0703776Z\",\r\n \"updatedOn\": \"2024-07-11T15:42:35.0703776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4aa368ec-fba9-4e93-81ed-396b3d461cc5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4aa368ec-fba9-4e93-81ed-396b3d461cc5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Container Instances Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read/write access to container groups provided by Azure Container Instances\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerInstance/containerGroups/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-11T17:43:35.3935391Z\",\r\n \"updatedOn\": \"2024-07-11T17:43:35.3935391Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d977122-f97e-4b4d-a52f-6b43003ddb4d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d977122-f97e-4b4d-a52f-6b43003ddb4d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Connector Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read connectors and their associated resources, such as impacts and insights.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Impact/Connectors/Read\",\r\n \"Microsoft.Impact/WorkloadImpacts/Read\",\r\n \"Microsoft.Impact/WorkloadImpacts/Insights/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-12T08:35:40.76413Z\",\r\n \"updatedOn\": \"2024-07-12T08:35:40.76413Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6cdbb904-5ff3-429d-8169-7d7818b91bd8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6cdbb904-5ff3-429d-8169-7d7818b91bd8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Databases ARM Management Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage Azure Databases\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/*/join/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"microsoft.insights/metrics/read\",\r\n \"microsoft.Compute/virtualMachineScaleSets/networkInterfaces/read\",\r\n \"Microsoft.VirtualMachineImages/locations/operations/read\",\r\n \"Microsoft.VirtualMachineImages/imageTemplates/write\",\r\n \"Microsoft.VirtualMachineImages/imageTemplates/run/action\",\r\n \"Microsoft.VirtualMachineImages/imageTemplates/read\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/sharedIdentities/write\",\r\n \"Microsoft.Storage/storageAccounts/sharedIdentities/read\",\r\n \"Microsoft.Storage/storageAccounts/regenerateKey/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/privateEndpointConnections/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/locations/usages/read\",\r\n \"Microsoft.Storage/checkNameAvailability/read\",\r\n \"Microsoft.Sql/register/action\",\r\n \"Microsoft.ServiceFabric/register/action\",\r\n \"Microsoft.ServiceFabric/locations/operations/read\",\r\n \"Microsoft.ServiceFabric/locations/operationResults/read\",\r\n \"Microsoft.ServiceFabric/clusters/write\",\r\n \"Microsoft.ServiceFabric/clusters/read\",\r\n \"Microsoft.ServiceFabric/clusters/delete\",\r\n \"Microsoft.Security/assessments/read\",\r\n \"Microsoft.Resources/tags/write\",\r\n \"Microsoft.Resources/tags/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/moveResources/action\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationStatuses/read\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworkGateways/delete\",\r\n \"Microsoft.Network/trafficmanagerprofiles/write\",\r\n \"Microsoft.Network/trafficmanagerprofiles/read\",\r\n \"Microsoft.Network/routeTables/write\",\r\n \"Microsoft.Network/routeTables/delete\",\r\n \"Microsoft.Network/register/action\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"Microsoft.Network/privateEndpoints/write\",\r\n \"Microsoft.Network/privateEndpoints/read\",\r\n \"Microsoft.Network/privateEndpoints/privateDnsZoneGroups/write\",\r\n \"Microsoft.Network/privateEndpoints/delete\",\r\n \"Microsoft.Network/privateDnsOperationStatuses/read\",\r\n \"Microsoft.Network/networkWatchers/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/write\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/loadBalancers/write\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/delete\",\r\n \"Microsoft.Network/azureFirewalls/write\",\r\n \"Microsoft.Network/azureFirewalls/read\",\r\n \"Microsoft.Network/azureFirewalls/delete\",\r\n \"Microsoft.Network/VirtualNetworkGateways/write\",\r\n \"Microsoft.Network/VirtualNetworkGateways/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.MachineLearningServices/locations/registryOperationsStatus/read\",\r\n \"Microsoft.Insights/register/action\",\r\n \"Microsoft.EventHub/register/action\",\r\n \"Microsoft.EventHub/namespaces/read\",\r\n \"Microsoft.EventHub/namespaces/delete\",\r\n \"Microsoft.EventHub/locations/namespaceOperationResults/read\",\r\n \"Microsoft.DocumentDB/locations/operationsStatus/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/failoverPriorityChange/action\",\r\n \"Microsoft.DocumentDB/databaseAccounts/delete\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/start/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/reimage/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/extensions/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/delete/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/delete\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/deallocate/action\",\r\n \"Microsoft.Compute/register/action\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/capsOperations/read\",\r\n \"Microsoft.Compute/locations/DiskOperations/read\",\r\n \"Microsoft.Compute/galleries/write\",\r\n \"Microsoft.Compute/galleries/read\",\r\n \"Microsoft.Compute/galleries/images/write\",\r\n \"Microsoft.Compute/galleries/images/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.ClassicStorage/storageAccounts/validateMigration/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/prepareMigration/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/operationStatuses/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/commitMigration/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/abortMigration/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicNetwork/register/action\",\r\n \"Microsoft.Chaos/targets/write\",\r\n \"Microsoft.Chaos/targets/capabilities/write\",\r\n \"Microsoft.Chaos/register/action\",\r\n \"Microsoft.Chaos/experiments/write\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/locks/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{ba92f5b4-2d11-453d-a403-e96b0029c9fe, 2a2b9908-6ea1-4ae2-8e65-a410df84e7d1})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{ba92f5b4-2d11-453d-a403-e96b0029c9fe, 2a2b9908-6ea1-4ae2-8e65-a410df84e7d1}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-15T15:01:50.9578552Z\",\r\n \"updatedOn\": \"2024-08-15T17:39:04.6571111Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b7ef99e8-10af-4a7c-8b15-5b6c352a8378\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b7ef99e8-10af-4a7c-8b15-5b6c352a8378\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Migrate Management Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role will let users grant permission to HybridOnboarding RP to manage extensions on their infrastructure. \",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Resource[HasObotoken] boolequals true\"\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Resource[HasObotoken] boolequals true AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{85cb6faf-e071-4c9b-8136-154b5a04f717})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{85cb6faf-e071-4c9b-8136-154b5a04f717}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-18T15:20:14.8932717Z\",\r\n \"updatedOn\": \"2024-07-18T15:20:14.8932717Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c20ab07d-648c-4fed-977e-f917d8095dfc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c20ab07d-648c-4fed-977e-f917d8095dfc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Transparency Logs Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage Transparency Log resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sovereign/transparencyLogs/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-18T17:06:03.4011538Z\",\r\n \"updatedOn\": \"2024-07-18T17:06:03.4011538Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8ad4d0ee-9bfb-49e8-93fc-01abb8db6240\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8ad4d0ee-9bfb-49e8-93fc-01abb8db6240\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Grafana Limited Viewer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View home page.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Dashboard/grafana/ActAsGrafanaLimitedViewer/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-19T05:11:50.7830427Z\",\r\n \"updatedOn\": \"2024-07-19T05:11:50.7830427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/41e04612-9dac-4699-a02b-c82ff2cc3fb5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41e04612-9dac-4699-a02b-c82ff2cc3fb5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Disk Encryption Set Operator for Managed Disks\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permissions to read, write or delete disk encryption sets which are used for encrypting managed disks with customer managed keys\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/diskEncryptionSets/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-19T21:32:25.1095326Z\",\r\n \"updatedOn\": \"2024-07-19T21:32:25.1095326Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/136d308c-0937-4a49-9bd7-edfb42adbffc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"136d308c-0937-4a49-9bd7-edfb42adbffc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic Autopilot Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage 1p EAP resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.Storage/*\",\r\n \"Microsoft.Maintenance/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*\",\r\n \"Microsoft.KeyVault/vaults/*\",\r\n \"Microsoft.ManagedIdentity/*\",\r\n \"Microsoft.Resources/subscriptions/*/read\",\r\n \"Microsoft.KeyVault/*/read\",\r\n \"Microsoft.Authorization/locks/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/checkZonePeers/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"\",\r\n \"condition\": \"\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-29T16:10:19.733575Z\",\r\n \"updatedOn\": \"2024-10-22T15:14:07.0554269Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/753ceed7-553b-434b-a2e5-78da1a8379d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"753ceed7-553b-434b-a2e5-78da1a8379d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Register Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you Register / Unregister any Azure service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/register/action\",\r\n \"*/unregister/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-29T16:10:19.733575Z\",\r\n \"updatedOn\": \"2024-07-29T16:10:19.733575Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1cbe04d4-3fa3-4559-a406-71584a32cacb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1cbe04d4-3fa3-4559-a406-71584a32cacb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PowerBI Dedicated Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all resources within Power BI Dedicated RP\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.PowerBIDedicated/register/action\",\r\n \"Microsoft.PowerBIDedicated/autoScaleVCores/read\",\r\n \"Microsoft.PowerBIDedicated/autoScaleVCores/write\",\r\n \"Microsoft.PowerBIDedicated/autoScaleVCores/delete\",\r\n \"Microsoft.PowerBIDedicated/capacities/read\",\r\n \"Microsoft.PowerBIDedicated/capacities/write\",\r\n \"Microsoft.PowerBIDedicated/capacities/delete\",\r\n \"Microsoft.PowerBIDedicated/capacities/suspend/action\",\r\n \"Microsoft.PowerBIDedicated/capacities/resume/action\",\r\n \"Microsoft.PowerBIDedicated/capacities/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.PowerBIDedicated/capacities/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.PowerBIDedicated/capacities/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.PowerBIDedicated/capacities/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.PowerBIDedicated/capacities/skus/read\",\r\n \"Microsoft.PowerBIDedicated/locations/checkNameAvailability/action\",\r\n \"Microsoft.PowerBIDedicated/locations/operationresults/read\",\r\n \"Microsoft.PowerBIDedicated/locations/operationstatuses/read\",\r\n \"Microsoft.PowerBIDedicated/operations/read\",\r\n \"Microsoft.PowerBIDedicated/skus/read\",\r\n \"Microsoft.PowerBIDedicated/servers/read\",\r\n \"Microsoft.PowerBIDedicated/servers/write\",\r\n \"Microsoft.PowerBIDedicated/servers/delete\",\r\n \"Microsoft.PowerBIDedicated/servers/suspend/action\",\r\n \"Microsoft.PowerBIDedicated/servers/resume/action\",\r\n \"Microsoft.PowerBIDedicated/servers/skus/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-01T23:18:09.5320383Z\",\r\n \"updatedOn\": \"2024-08-01T23:18:09.5320383Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/10550c65-218e-4de9-9e52-0200c8ed4748\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10550c65-218e-4de9-9e52-0200c8ed4748\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Subscription Migrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform operations related to the transfer of managed identities and their associated authorization policies from one Entra ID tenant to another\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/migrateIdentities/action\",\r\n \"Microsoft.Authorization/migrateRbac/action\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/denyAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"Microsoft.managedIdentities/identities/read\",\r\n \"Microsoft.managedIdentities/userAssignedIdentities/read\",\r\n \"Microsoft.KeyVault.vaults/accessPolicies/read\",\r\n \"Microsoft.KeyVault.vaults/accessPolicies/write\",\r\n \"Microsoft.KeyVault.vaults/accessPolicies/delete\",\r\n \"Microsoft.Authorization/policyAssignments/read\",\r\n \"Microsoft.Authorization/policyAssignments/write\",\r\n \"Microsoft.Authorization/policyAssignments/delete\",\r\n \"Microsoft.Authorization/policyDefinitions/read\",\r\n \"Microsoft.Authorization/policyDefinitions/write\",\r\n \"Microsoft.Authorization/policyDefinitions/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-02T00:04:08.5098911Z\",\r\n \"updatedOn\": \"2024-12-06T19:13:26.6910904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cd7709b9-d129-4dc4-ac27-d215a1be1e07\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cd7709b9-d129-4dc4-ac27-d215a1be1e07\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services Field Imagery Solution Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to Field Imagery Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/scenes/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-02T08:28:42.2829274Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4380427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1af232de-e806-426f-8ca1-c36142449755\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1af232de-e806-426f-8ca1-c36142449755\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Edge Hardware Center Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants you access to take actions as an edge order administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EdgeOrder/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-07T15:26:18.9896197Z\",\r\n \"updatedOn\": \"2024-08-07T15:26:18.9896197Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9295f069-25d0-4f44-bb6a-3da70d11aa00\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9295f069-25d0-4f44-bb6a-3da70d11aa00\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PostgreSQL Flexible Management Service Contributor (Deprecated)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role is deprecated.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"Microsoft.Storage/locations/usages/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/skus/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/delete\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/privateEndpointConnections/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/sharedIdentities/write\",\r\n \"Microsoft.Storage/storageAccounts/sharedIdentities/read\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/read\",\r\n \"Microsoft.Security/assessments/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/write\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"microsoft.insights/diagnosticSettings/write\",\r\n \"microsoft.insights/metrics/read\",\r\n \"Microsoft.KeyVault/vaults/read\",\r\n \"Microsoft.KeyVault/vaults/write\",\r\n \"Microsoft.KeyVault/vaults/delete\",\r\n \"Microsoft.KeyVault/vaults/deploy/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/write\",\r\n \"Microsoft.Network/loadBalancers/delete\",\r\n \"Microsoft.Network/loadBalancers/probes/read\",\r\n \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"Microsoft.Network/loadBalancers/outboundRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/write\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/delete\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/health/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/write\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/delete\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/backendPoolAddresses/read\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/locations/serviceTags/read\",\r\n \"Microsoft.Network/locations/supportedVirtualMachineSizes/read\",\r\n \"Microsoft.Network/locations/usages/read\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkWatchers/read\",\r\n \"Microsoft.Network/privateDnsOperationStatuses/read\",\r\n \"Microsoft.Network/privateDnsZones/delete\",\r\n \"Microsoft.Network/privateDnsZones/read\",\r\n \"Microsoft.Network/privateDnsZones/write\",\r\n \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/remoteVirtualNetworkPeeringProxies/delete\",\r\n \"Microsoft.Network/virtualNetworks/remoteVirtualNetworkPeeringProxies/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/Details/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/validate/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Compute/disks/endGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/read\",\r\n \"Microsoft.Compute/snapshots/write\",\r\n \"Microsoft.Compute/snapshots/delete\",\r\n \"Microsoft.Compute/snapshots/beginGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/endGetAccess/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/write\",\r\n \"Microsoft.Compute/virtualMachines/extensions/delete\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/delete\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/runCommand/action\",\r\n \"Microsoft.Compute/diskEncryptionSets/delete\",\r\n \"Microsoft.Compute/diskEncryptionSets/read\",\r\n \"Microsoft.Compute/diskEncryptionSets/*\",\r\n \"Microsoft.Compute/diskEncryptionSets/write\",\r\n \"Microsoft.Compute/galleries/images/versions/read\",\r\n \"Microsoft.Compute/locations/DiskOperations/read\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/usages/read\",\r\n \"Microsoft.Compute/skus/read\",\r\n \"Microsoft.Storage/storageAccounts/fileservices/read\",\r\n \"Microsoft.Storage/storageAccounts/regenerateKey/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals {ba92f5b4-2d11-453d-a403-e96b0029c9fe, c12c1c16-33a1-487b-954d-41c89c60f349})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals {ba92f5b4-2d11-453d-a403-e96b0029c9fe, c12c1c16-33a1-487b-954d-41c89c60f349}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-07T15:26:18.9896197Z\",\r\n \"updatedOn\": \"2024-08-21T15:29:35.0128869Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a60b64c0-1adf-4051-956a-78f3ae578c7d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a60b64c0-1adf-4051-956a-78f3ae578c7d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure AI Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"A Built-In Role that has all control plane permissions to work with Azure AI and its dependencies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.CognitiveServices/*\",\r\n \"Microsoft.ContainerRegistry/registries/*\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/providers/features/register/action\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/generateLiveToken/read\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/scheduledqueryrules/*\",\r\n \"Microsoft.Insights/topology/read\",\r\n \"Microsoft.Insights/transactions/read\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.MachineLearningServices/workspaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Search/searchServices/write\",\r\n \"Microsoft.Search/searchServices/read\",\r\n \"Microsoft.Search/searchServices/delete\",\r\n \"Microsoft.Search/searchServices/indexes/*\",\r\n \"Microsoft.DataFactory/factories/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-08T23:54:27.5831229Z\",\r\n \"updatedOn\": \"2024-10-03T15:31:17.7702779Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b78c5d69-af96-48a3-bf8d-a8b4d589de94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b78c5d69-af96-48a3-bf8d-a8b4d589de94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Compute Gallery Image Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This is the role for reading gallery images.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/galleries/images/read\",\r\n \"Microsoft.Compute/galleries/images/versions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-12T16:09:21.7547431Z\",\r\n \"updatedOn\": \"2024-08-28T15:23:36.0811004Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cf7c76d2-98a3-4358-a134-615aa78bf44d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cf7c76d2-98a3-4358-a134-615aa78bf44d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps Jobs Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read access to ContainerApps jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.app/jobs/read\",\r\n \"Microsoft.App/jobs/*/read\",\r\n \"Microsoft.App/managedenvironments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.4380427Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4380427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/edd66693-d32a-450b-997d-0158c03976b0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"edd66693-d32a-450b-997d-0158c03976b0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full management of Container Apps, including creation, deletion, and updates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/containerApps/*/read\",\r\n \"Microsoft.App/containerApps/*/write\",\r\n \"Microsoft.App/containerApps/*/delete\",\r\n \"Microsoft.App/containerApps/*/action\",\r\n \"Microsoft.App/managedEnvironments/read\",\r\n \"Microsoft.App/managedEnvironments/*/read\",\r\n \"Microsoft.App/managedEnvironments/join/action\",\r\n \"Microsoft.App/managedEnvironments/checknameavailability/action\",\r\n \"Microsoft.App/connectedEnvironments/read\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.App/connectedEnvironments/join/action\",\r\n \"Microsoft.App/connectedEnvironments/checknameavailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.4390439Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4390439Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/358470bc-b998-42bd-ab17-a7e34c199c0f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"358470bc-b998-42bd-ab17-a7e34c199c0f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, logstream and exec into Container Apps.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/containerApps/*/read\",\r\n \"Microsoft.App/containerApps/*/action\",\r\n \"Microsoft.App/managedEnvironments/read\",\r\n \"Microsoft.App/managedEnvironments/*/read\",\r\n \"Microsoft.App/managedEnvironments/join/action\",\r\n \"Microsoft.App/managedEnvironments/checknameavailability/action\",\r\n \"Microsoft.App/connectedEnvironments/read\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.App/connectedEnvironments/join/action\",\r\n \"Microsoft.App/connectedEnvironments/checknameavailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.App/containerApps/logstream/action\",\r\n \"Microsoft.App/containerApps/exec/action\",\r\n \"Microsoft.App/containerApps/debug/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.4380427Z\",\r\n \"updatedOn\": \"2024-11-14T16:17:08.9697226Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f3bd1b5c-91fa-40e7-afe7-0c11d331232c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f3bd1b5c-91fa-40e7-afe7-0c11d331232c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps SessionPools Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read access to ContainerApps sessionpools.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/sessionPools/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.440043Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.440043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/af61e8fc-2633-4b95-bed3-421ad6826515\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"af61e8fc-2633-4b95-bed3-421ad6826515\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps SessionPools Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full management of Container Apps SessionPools, including creation, deletion, and updates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/sessionPools/*/read\",\r\n \"Microsoft.App/sessionPools/*/write\",\r\n \"Microsoft.App/sessionPools/*/delete\",\r\n \"Microsoft.App/sessionPools/*/action\",\r\n \"microsoft.App/managedEnvironments/read\",\r\n \"Microsoft.App/managedEnvironments/*/read\",\r\n \"Microsoft.App/managedEnvironments/join/action\",\r\n \"Microsoft.App/managedEnvironments/checknameavailability/action\",\r\n \"microsoft.App/connectedEnvironments/read\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.App/connectedEnvironments/join/action\",\r\n \"Microsoft.App/connectedEnvironments/checknameavailability/action\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.4420428Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4420428Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f7669afb-68b2-44b4-9c5f-6d2a47fddda0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f7669afb-68b2-44b4-9c5f-6d2a47fddda0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps ManagedEnvironments Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full management of Container Apps ManagedEnvironments, including creation, deletion, and updates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/managedEnvironments/*/read\",\r\n \"Microsoft.App/managedEnvironments/*/write\",\r\n \"Microsoft.App/managedEnvironments/*/delete\",\r\n \"Microsoft.App/managedEnvironments/*/action\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.4410422Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4410422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/57cc5028-e6a7-4284-868d-0611c5923f8d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"57cc5028-e6a7-4284-868d-0611c5923f8d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps ManagedEnvironments Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read access to ContainerApps managedenvironments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/managedEnvironments/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.4410422Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4410422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1b32c00b-7eff-4c22-93e6-93d11d72d2d8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1b32c00b-7eff-4c22-93e6-93d11d72d2d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps Jobs Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full management of Container Apps jobs, including creation, deletion, and updates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"microsoft.app/jobs/read\",\r\n \"Microsoft.App/jobs/*/read\",\r\n \"Microsoft.App/jobs/*/action\",\r\n \"Microsoft.App/jobs/write\",\r\n \"Microsoft.App/jobs/delete\",\r\n \"Microsoft.app/managedenvironments/read\",\r\n \"Microsoft.App/managedenvironments/*/read\",\r\n \"Microsoft.App/managedenvironments/join/action\",\r\n \"Microsoft.App/managedenvironments/checknameavailability/action\",\r\n \"Microsoft.app/connectedEnvironments/read\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.App/connectedEnvironments/join/action\",\r\n \"Microsoft.App/connectedEnvironments/checknameavailability/action\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:29.078965Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:29.078965Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4e3d2b60-56ae-4dc6-a233-09c8e5a82e68\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e3d2b60-56ae-4dc6-a233-09c8e5a82e68\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Durable Task Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Durable Task role for all data access operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DurableTask/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-16T21:35:11.3906589Z\",\r\n \"updatedOn\": \"2024-08-16T21:35:11.3906589Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0ad04412-c4d5-4796-b79c-f76d14c8d402\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0ad04412-c4d5-4796-b79c-f76d14c8d402\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"KubernetesRuntime Load Balancer Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, write, and delete load balancers in an Arc connected Kubernetes cluster\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.KubernetesRuntime/loadBalancers/read\",\r\n \"Microsoft.KubernetesRuntime/loadBalancers/write\",\r\n \"Microsoft.KubernetesRuntime/loadBalancers/delete\",\r\n \"Microsoft.KubernetesRuntime/bgpPeers/read\",\r\n \"Microsoft.KubernetesRuntime/bgpPeers/write\",\r\n \"Microsoft.KubernetesRuntime/bgpPeers/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-27T15:13:33.329785Z\",\r\n \"updatedOn\": \"2024-08-27T15:13:33.329785Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1a5682fc-4f12-4b25-927e-e8cfed0c539e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1a5682fc-4f12-4b25-927e-e8cfed0c539e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AVS Orchestrator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Custom role for AVS to manage customer resources used for AVS scenarios.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/operationStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Network/virtualHubs/delete\",\r\n \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"Microsoft.Network/networkIntentPolicies/read\",\r\n \"Microsoft.Network/networkIntentPolicies/delete\",\r\n \"Microsoft.Network/networkIntentPolicies/write\",\r\n \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/write\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/unprepareNetworkPolicies/action\",\r\n \"Microsoft.Network/virtualHubs/write\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualHubs/ipConfigurations/write\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/virtualHubs/ipConfigurations/read\",\r\n \"Microsoft.Network/virtualHubs/bgpConnections/write\",\r\n \"Microsoft.Network/virtualHubs/bgpConnections/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\r\n \"Microsoft.Network/virtualNetworks/peer/action\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/routeTables/read\",\r\n \"Microsoft.Network/routeTables/write\",\r\n \"Microsoft.Network/routeTables/delete\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Network/routeTables/routes/read\",\r\n \"Microsoft.Network/routeTables/routes/write\",\r\n \"Microsoft.Network/routeTables/routes/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"(!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR @Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{d715fb95a0f04f1c8be65ad2d2767f67, 4d97b98b1d4f4787a291c67834d212e7}\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-28T15:23:36.0811004Z\",\r\n \"updatedOn\": \"2024-08-28T15:23:36.0811004Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d715fb95-a0f0-4f1c-8be6-5ad2d2767f67\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d715fb95-a0f0-4f1c-8be6-5ad2d2767f67\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Service Connector Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Manage Service Connector.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceLinker/linkers/read\",\r\n \"Microsoft.ServiceLinker/linkers/delete\",\r\n \"Microsoft.ServiceLinker/linkers/write\",\r\n \"Microsoft.ServiceLinker/linkers/listConfigurations/action\",\r\n \"Microsoft.ServiceLinker/linkers/validateLinker/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-29T15:27:16.4040041Z\",\r\n \"updatedOn\": \"2024-08-29T15:27:16.4040041Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/db7003cd-07a9-490c-bfa5-23e40314f8d7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db7003cd-07a9-490c-bfa5-23e40314f8d7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PostgreSQL Flexible Management Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete required resources objects to be used by Azure PostgreSQL Flexible servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listKeys/action\",\r\n \"Microsoft.Storage/locations/usages/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/skus/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/delete\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/privateEndpointConnections/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/sharedIdentities/write\",\r\n \"Microsoft.Storage/storageAccounts/sharedIdentities/read\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/read\",\r\n \"Microsoft.Security/assessments/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/write\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"microsoft.insights/diagnosticSettings/write\",\r\n \"microsoft.insights/metrics/read\",\r\n \"Microsoft.KeyVault/vaults/read\",\r\n \"Microsoft.KeyVault/vaults/write\",\r\n \"Microsoft.KeyVault/vaults/delete\",\r\n \"Microsoft.KeyVault/vaults/deploy/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/write\",\r\n \"Microsoft.Network/loadBalancers/delete\",\r\n \"Microsoft.Network/loadBalancers/probes/read\",\r\n \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"Microsoft.Network/loadBalancers/outboundRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/write\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/delete\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/health/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/write\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/delete\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/backendPoolAddresses/read\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/locations/serviceTags/read\",\r\n \"Microsoft.Network/locations/supportedVirtualMachineSizes/read\",\r\n \"Microsoft.Network/locations/usages/read\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkWatchers/read\",\r\n \"Microsoft.Network/privateDnsOperationStatuses/read\",\r\n \"Microsoft.Network/privateDnsZones/delete\",\r\n \"Microsoft.Network/privateDnsZones/read\",\r\n \"Microsoft.Network/privateDnsZones/write\",\r\n \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/remoteVirtualNetworkPeeringProxies/delete\",\r\n \"Microsoft.Network/virtualNetworks/remoteVirtualNetworkPeeringProxies/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/Details/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/validate/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Compute/disks/endGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/read\",\r\n \"Microsoft.Compute/snapshots/write\",\r\n \"Microsoft.Compute/snapshots/delete\",\r\n \"Microsoft.Compute/snapshots/beginGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/endGetAccess/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/write\",\r\n \"Microsoft.Compute/virtualMachines/extensions/delete\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/delete\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/runCommand/action\",\r\n \"Microsoft.Compute/diskEncryptionSets/delete\",\r\n \"Microsoft.Compute/diskEncryptionSets/read\",\r\n \"Microsoft.Compute/diskEncryptionSets/*\",\r\n \"Microsoft.Compute/diskEncryptionSets/write\",\r\n \"Microsoft.Compute/galleries/images/versions/read\",\r\n \"Microsoft.Compute/locations/DiskOperations/read\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/usages/read\",\r\n \"Microsoft.Compute/locations/capsOperations/read\",\r\n \"Microsoft.Compute/skus/read\",\r\n \"Microsoft.Compute/capacityReservationGroups/share/action\",\r\n \"Microsoft.Compute/capacityReservationGroups/read\",\r\n \"Microsoft.Compute/capacityReservationGroups/deploy/action\",\r\n \"Microsoft.Compute/capacityReservationGroups/write\",\r\n \"Microsoft.Compute/capacityReservationGroups/capacityReservations/read\",\r\n \"Microsoft.Compute/capacityReservationGroups/capacityReservations/write\",\r\n \"Microsoft.Storage/storageAccounts/fileservices/read\",\r\n \"Microsoft.Storage/storageAccounts/regenerateKey/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\r\n \"Microsoft.RecoveryServices/backupprotecteditems/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals {ba92f5b4-2d11-453d-a403-e96b0029c9fe, c12c1c16-33a1-487b-954d-41c89c60f349})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals {ba92f5b4-2d11-453d-a403-e96b0029c9fe, c12c1c16-33a1-487b-954d-41c89c60f349}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-02T15:07:07.8698996Z\",\r\n \"updatedOn\": \"2025-01-14T16:18:32.7217624Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cc3c084f-9a2e-4664-b2bc-47a6685a5f99\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cc3c084f-9a2e-4664-b2bc-47a6685a5f99\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Device Update Agent\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide full access to all Azure Device Update agent operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/updateAccounts/agents/requestUpdate/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-02T15:07:07.8698996Z\",\r\n \"updatedOn\": \"2024-09-02T15:07:07.8698996Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a740172-0fc2-4039-972c-b31864cd47d6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2a740172-0fc2-4039-972c-b31864cd47d6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Enclave Approver Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read all resources in Azure Virtual Enclaves and Approve approval requests within the Enclave\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/approvals/read\",\r\n \"Microsoft.Mission/approvals/write\",\r\n \"Microsoft.Mission/enclaveConnections/approvalCallback/action\",\r\n \"Microsoft.Mission/virtualEnclaves/approvalCallback/action\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/approvalCallback/action\",\r\n \"Microsoft.Mission/communities/communityEndpoints/approvalCallback/action\",\r\n \"Microsoft.Mission/approvals/initiatorCallback/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-02T15:07:07.8698996Z\",\r\n \"updatedOn\": \"2025-01-14T16:18:32.7067643Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2142ea27-02ad-4094-bfea-2dbac6d24934\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2142ea27-02ad-4094-bfea-2dbac6d24934\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Purge Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows permanent deletion of soft-deleted vaults.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\",\r\n \"Microsoft.KeyVault/locations/operationResults/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-03T15:18:11.2327233Z\",\r\n \"updatedOn\": \"2024-09-03T15:18:11.2327233Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a68e7c17-0ab2-4c09-9a58-125dae29748c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a68e7c17-0ab2-4c09-9a58-125dae29748c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Face Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to perform all Face APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/Face/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-04T15:25:04.7461682Z\",\r\n \"updatedOn\": \"2024-09-04T15:25:04.7461682Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b5b0c71d-aca9-4081-aee2-9b1bb335fc1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b5b0c71d-aca9-4081-aee2-9b1bb335fc1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps Jobs Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, start, and stop Container Apps jobs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"microsoft.app/jobs/read\",\r\n \"Microsoft.App/jobs/*/read\",\r\n \"Microsoft.App/jobs/*/action\",\r\n \"Microsoft.app/managedenvironments/read\",\r\n \"Microsoft.App/managedenvironments/*/read\",\r\n \"Microsoft.App/managedenvironments/join/action\",\r\n \"Microsoft.App/managedenvironments/checknameavailability/action\",\r\n \"Microsoft.app/connectedEnvironments/read\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.App/connectedEnvironments/join/action\",\r\n \"Microsoft.App/connectedEnvironments/checknameavailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.App/jobs/logstream/action\",\r\n \"Microsoft.App/jobs/exec/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-09T15:09:55.0632221Z\",\r\n \"updatedOn\": \"2024-09-09T15:09:55.0632221Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b9a307c4-5aa3-4b52-ba60-2b17c136cd7b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b9a307c4-5aa3-4b52-ba60-2b17c136cd7b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Operator Nexus Owner (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) This role allows full access to Azure Operator Nexus Network Cloud resources. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.NetworkCloud/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-10T15:22:50.4935371Z\",\r\n \"updatedOn\": \"2024-09-10T15:22:50.4935371Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/77be276d-fb44-4f3b-beb5-9bf03c4cd2d3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"77be276d-fb44-4f3b-beb5-9bf03c4cd2d3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CloudTest Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, write, delete and perform actions on CloudTest Accounts, CloudTest Pools, 1ES Hosted Pools and 1ES Images.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CloudTest/*/read\",\r\n \"Microsoft.CloudTest/hostedpools/write\",\r\n \"Microsoft.CloudTest/hostedpools/delete\",\r\n \"Microsoft.CloudTest/images/write\",\r\n \"Microsoft.CloudTest/images/delete\",\r\n \"Microsoft.CloudTest/images/cancel/action\",\r\n \"Microsoft.CloudTest/images/refresh/action\",\r\n \"Microsoft.CloudTest/pools/write\",\r\n \"Microsoft.CloudTest/pools/delete\",\r\n \"Microsoft.CloudTest/accounts/write\",\r\n \"Microsoft.CloudTest/accounts/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-11T15:31:21.7257585Z\",\r\n \"updatedOn\": \"2024-10-03T16:47:55.6838934Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4e9d0bd4-5aab-4f91-92df-9def33fe287c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e9d0bd4-5aab-4f91-92df-9def33fe287c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Automanage Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Automanage Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automanage/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-11T15:31:21.7247588Z\",\r\n \"updatedOn\": \"2024-09-11T15:31:21.7247588Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8d6517c1-e434-405c-9f3f-e0ae65085d76\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d6517c1-e434-405c-9f3f-e0ae65085d76\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Bot Service Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"To perform actions on the bots by copilot studio platform and extensibility team\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.BotService/listAuthServiceProviders/action\",\r\n \"Microsoft.BotService/listauthserviceproviders/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/botServices/read\",\r\n \"Microsoft.BotService/botServices/write\",\r\n \"Microsoft.BotService/botServices/delete\",\r\n \"Microsoft.BotService/botServices/channels/write\",\r\n \"Microsoft.BotService/botServices/channels/read\",\r\n \"Microsoft.BotService/botServices/channels/listchannelwithkeys/action\",\r\n \"Microsoft.BotService/botServices/channels/delete\",\r\n \"Microsoft.BotService/botServices/channels/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/botServices/connections/read\",\r\n \"Microsoft.BotService/botServices/connections/write\",\r\n \"Microsoft.BotService/botServices/connections/delete\",\r\n \"Microsoft.BotService/botServices/connections/listwithsecrets/write\",\r\n \"Microsoft.BotService/botServices/connections/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/botServices/createemailsigninurl/action\",\r\n \"Microsoft.BotService/botServices/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.BotService/botServices/joinPerimeter/action\",\r\n \"Microsoft.BotService/botServices/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/checknameavailability/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/hostsettings/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/botServices/privateEndpointConnectionProxies/write\",\r\n \"Microsoft.BotService/botServices/privateEndpointConnectionProxies/delete\",\r\n \"Microsoft.BotService/botServices/privateEndpointConnectionProxies/validate/action\",\r\n \"Microsoft.BotService/botServices/privateEndpointConnections/write\",\r\n \"Microsoft.BotService/botServices/privateEndpointConnections/delete\",\r\n \"Microsoft.BotService/listqnamakerendpointkeys/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/botServices/networkSecurityPerimeterConfigurations/reconcile/action\",\r\n \"Microsoft.BotService/botServices/networkSecurityPerimeterAssociationProxies/write\",\r\n \"Microsoft.BotService/botServices/networkSecurityPerimeterAssociationProxies/delete\",\r\n \"Microsoft.BotService/locations/notifyNetworkSecurityPerimeterUpdatesAvailable/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.BotService/botServices/channels/regeneratekeys/action\",\r\n \"Microsoft.BotService/botServices/Connections/listWithSecrets/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-13T05:43:35.3471462Z\",\r\n \"updatedOn\": \"2025-01-31T16:56:52.7807707Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9fc6112f-f48e-4e27-8b09-72a5c94e4ae9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9fc6112f-f48e-4e27-8b09-72a5c94e4ae9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permission for read operations for App Configuration resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppConfiguration/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-16T15:00:44.1461191Z\",\r\n \"updatedOn\": \"2024-09-16T15:00:44.1461191Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/175b81b9-6e0d-490a-85e4-0d422273c10c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"175b81b9-6e0d-490a-85e4-0d422273c10c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permission for all management operations, except purge, for App Configuration resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppConfiguration/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.AppConfiguration/locations/deletedConfigurationStores/purge/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-16T15:00:44.4010948Z\",\r\n \"updatedOn\": \"2024-09-16T15:00:44.4010948Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fe86443c-f201-4fc4-9d2a-ac61149fbda0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fe86443c-f201-4fc4-9d2a-ac61149fbda0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Service Fabric Managed Cluster Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Deploy and manage your Service Fabric Managed Cluster resources. Includes managed clusters, node types, application types, application type versions, applications, and services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceFabric/managedclusters/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-18T15:11:06.79416Z\",\r\n \"updatedOn\": \"2024-10-08T15:25:11.4963141Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/83f80186-3729-438c-ad2d-39e94d718838\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"83f80186-3729-438c-ad2d-39e94d718838\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Data Importer and Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides the ability to import images into a registry through the registry import operation. Provides the ability to list repositories, view images and tags, get manifests, and pull images. Does not provide permissions for importing images through configuring registry transfer pipelines such as import and export pipelines. Does not provide permissions for importing through configuring Artifact Cache or Sync rules.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/importImage/action\",\r\n \"Microsoft.ContainerRegistry/registries/read\",\r\n \"Microsoft.ContainerRegistry/registries/pull/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-20T02:52:09.7821852Z\",\r\n \"updatedOn\": \"2024-09-20T02:52:09.7821852Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/577a9874-89fd-4f24-9dbd-b5034d0ad23a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"577a9874-89fd-4f24-9dbd-b5034d0ad23a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Batch Service Orchestration Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants the required permissions to Azure Batch Resource Provider to manage compute and other backing resources in the subscription.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Security/assessments/read\",\r\n \"Microsoft.AzureFleet/fleets/write\",\r\n \"Microsoft.AzureFleet/fleets/read\",\r\n \"Microsoft.AzureFleet/fleets/delete\",\r\n \"Microsoft.Compute/locations/DiskOperations/read\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/approveRollingUpgrade/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/delete\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/delete/action\",\r\n \"Microsoft.Compute/VirtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/reimage/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/reimageall/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/restart/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/start/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/extensions/read\",\r\n \"microsoft.Compute/virtualMachineScaleSets/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualmachines/restart/action\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/dataCollectionRuleAssociations/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Network/networkWatchers/read\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworks/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-23T15:05:04.8272481Z\",\r\n \"updatedOn\": \"2024-09-23T15:05:04.8272481Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a35466a1-cfd6-450a-b35e-683fcdf30363\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a35466a1-cfd6-450a-b35e-683fcdf30363\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft PowerBI Tenant Operations Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows management of tenant operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.PowerBI/tenants/workspaces/read\",\r\n \"Microsoft.PowerBI/tenants/workspaces/delete\",\r\n \"Microsoft.PowerBI/tenants/read\",\r\n \"Microsoft.PowerBI/tenants/delete\",\r\n \"Microsoft.PowerBI/tenants/write\",\r\n \"Microsoft.PowerBI/tenants/workspaces/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-23T15:05:04.8262456Z\",\r\n \"updatedOn\": \"2024-09-23T15:05:04.8262456Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8c87871d-6201-42da-abb1-1c0c985ff71c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8c87871d-6201-42da-abb1-1c0c985ff71c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"MySQL Control Plane\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The permission set to use on mysql control plane\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/*\",\r\n \"Microsoft.Storage/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.ManagedIdentity/*\",\r\n \"Microsoft.ContainerInstance/*\",\r\n \"Microsoft.Resources/*\",\r\n \"Microsoft.Authorization/policies/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/locks/delete\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-27T08:07:52.6567135Z\",\r\n \"updatedOn\": \"2024-12-17T16:19:14.4189988Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b5207fd7-42d3-40fa-8cc6-a7e189aef39e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b5207fd7-42d3-40fa-8cc6-a7e189aef39e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"MySQL User Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"User data reader for MySQL service.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/readFileBackupSemantics/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-27T08:07:52.6567135Z\",\r\n \"updatedOn\": \"2024-09-27T08:07:52.6567135Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/abed7cd4-f358-4384-9d17-def9303b3b53\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"abed7cd4-f358-4384-9d17-def9303b3b53\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"MySQL User Data Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"User data writer for MySQL service.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/*\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/*\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-27T08:07:52.6567135Z\",\r\n \"updatedOn\": \"2024-09-27T08:07:52.6567135Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8894c184-eeb6-45cc-868a-1be782055af3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8894c184-eeb6-45cc-868a-1be782055af3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Service Fabric Cluster Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage your Service Fabric Cluster resources. Includes clusters, application types, application type versions, applications, and services. You will need additional permissions to deploy and manage the cluster's underlying resources such as virtual machine scale sets, storage accounts, networks, etc.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceFabric/clusters/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-02T15:19:07.1483126Z\",\r\n \"updatedOn\": \"2024-10-08T15:25:12.0748061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b6efc156-f0da-4e90-a50a-8c000140b017\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b6efc156-f0da-4e90-a50a-8c000140b017\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Stream Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Contributor access to Clusters and Streaming Jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.StreamAnalytics/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-03T16:47:55.6818914Z\",\r\n \"updatedOn\": \"2024-10-03T16:47:55.6818914Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6e0c8711-85a0-4490-8365-8ec13c4560b4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6e0c8711-85a0-4490-8365-8ec13c4560b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Stream Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to Clusters and Streaming Jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.StreamAnalytics/streamingjobs/Read\",\r\n \"Microsoft.StreamAnalytics/streamingjobs/*/Read\",\r\n \"Microsoft.StreamAnalytics/clusters/Read\",\r\n \"Microsoft.StreamAnalytics/clusters/*/Read\",\r\n \"Microsoft.StreamAnalytics/clusters/ListStreamingJobs/action\",\r\n \"Microsoft.StreamAnalytics/locations/*/Read\",\r\n \"Microsoft.StreamAnalytics/operations/Read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-03T16:47:55.6818914Z\",\r\n \"updatedOn\": \"2024-10-03T16:47:55.6818914Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1dfc38e8-6ce7-447f-807c-029c65262c5f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1dfc38e8-6ce7-447f-807c-029c65262c5f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Durable Task Worker\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Used by worker applications to interact with the Durable Task service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DurableTask/data/execute\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-07T15:14:27.418415Z\",\r\n \"updatedOn\": \"2024-10-07T15:14:27.418415Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/80d0d6b0-f522-40a4-8886-a5a11720c375\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"80d0d6b0-f522-40a4-8886-a5a11720c375\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Portal Dashboard Writer Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can write an Azure Portal Dashboard\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Portal/dashboards/read\",\r\n \"Microsoft.Portal/dashboards/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"1.0\",\r\n \"condition\": \"@Resource[HasObotoken] boolequals true\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-09T15:31:49.3691696Z\",\r\n \"updatedOn\": \"2025-01-17T21:39:31.052126Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/78eacb5e-e318-4560-85a9-e6a724ca60c9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"78eacb5e-e318-4560-85a9-e6a724ca60c9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Fabric Resource Management Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Used by TIPS and FRM MSIs to create, update, delete and manage Fabric resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AlertsManagement/smartDetectorAlertRules/delete\",\r\n \"Microsoft.App/containerApps/*/delete\",\r\n \"Microsoft.App/containerApps/*/write\",\r\n \"Microsoft.App/managedEnvironments/*/action\",\r\n \"Microsoft.App/managedEnvironments/*/delete\",\r\n \"Microsoft.App/managedEnvironments/*/read\",\r\n \"Microsoft.App/managedEnvironments/*/write\",\r\n \"Microsoft.app/register/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"Microsoft.Cache/checknameavailability/action\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Cache/register/action\",\r\n \"Microsoft.ChangeAnalysis/unregister/action\",\r\n \"Microsoft.CognitiveServices/*\",\r\n \"Microsoft.CognitiveServices/register/action\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/sshPublicKeys/delete\",\r\n \"Microsoft.Compute/virtualMachines/delete\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.DocumentDB/locations/operationsStatus/read\",\r\n \"Microsoft.DocumentDB/register/action\",\r\n \"Microsoft.EventGrid/*\",\r\n \"Microsoft.EventGrid/register/action\",\r\n \"Microsoft.EventHub/*\",\r\n \"Microsoft.EventHub/checkNameAvailability/action\",\r\n \"Microsoft.EventHub/register/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.fabric/*/delete\",\r\n \"Microsoft.Insights/ActionGroups/Delete\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/autoscalesettings/*\",\r\n \"Microsoft.Insights/Components/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/values/Read\",\r\n \"Microsoft.Insights/generateLiveToken/Read\",\r\n \"Microsoft.Insights/Metrics/Read\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.KeyVault/register/action\",\r\n \"Microsoft.KeyVault/vaults/delete\",\r\n \"Microsoft.ManagedIdentity/register/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.messagingconnectors/*/delete\",\r\n \"Microsoft.messagingconnectors/*/write\",\r\n \"Microsoft.MessagingConnectors/connectors/pause/action\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.Network/applicationSecurityGroups/joinNetworkSecurityRule/action\",\r\n \"Microsoft.Network/serviceEndpointPolicies/join/action\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.operationalinsights/register/action\",\r\n \"Microsoft.RecoveryServices/Vaults/delete\",\r\n \"Microsoft.ResourceHealth/AvailabilityStatuses/read\",\r\n \"Microsoft.ResourceHealth/register/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/*\",\r\n \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"Microsoft.resources/templatespecs/*/read\",\r\n \"Microsoft.Security/assessments/read\",\r\n \"Microsoft.ServiceBus/*\",\r\n \"Microsoft.ServiceBus/checkNameAvailability/action\",\r\n \"Microsoft.ServiceBus/register/action\",\r\n \"Microsoft.Sql/register/action\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Sql/servers/administrators/write\",\r\n \"Microsoft.Sql/servers/azureADOnlyAuthentications/write\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/register/action\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.StreamAnalytics/clusters/Delete\",\r\n \"Microsoft.StreamAnalytics/clusters/Write\",\r\n \"Microsoft.streamanalytics/locations/*/read\",\r\n \"Microsoft.StreamAnalytics/locations/SampleInput/action\",\r\n \"Microsoft.StreamAnalytics/locations/TestQuery/action\",\r\n \"Microsoft.StreamAnalytics/Register/action\",\r\n \"Microsoft.StreamAnalytics/streamingjobs/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Synapse/privateLinkHubs/delete\",\r\n \"Microsoft.Synapse/workspaces/delete\",\r\n \"Microsoft.web/checknameavailability/read\",\r\n \"Microsoft.Web/hostingEnvironments/Join/Action\",\r\n \"Microsoft.web/kubeenvironments/*/action\",\r\n \"Microsoft.web/register/action\",\r\n \"Microsoft.Web/serverFarms/*\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAllValues:GuidNotEquals {8e3af657-a8ff-443c-a75c-2fe8c4bcb635, 18d7d88d-d35e-4fb5-a5c3-7773c20a72d9, f58310d9-a9f6-439a-9e8d-f62e7b41a168, b24988ac-6180-42a0-ab88-20f7382dd24c})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAllValues:GuidNotEquals {18d7d88d-d35e-4fb5-a5c3-7773c20a72d9, f58310d9-a9f6-439a-9e8d-f62e7b41a168, b24988ac-6180-42a0-ab88-20f7382dd24c}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-09T15:31:49.2793487Z\",\r\n \"updatedOn\": \"2024-10-09T15:31:49.2793487Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/337a31c1-4e14-4ef9-83ed-584bb8d2b70a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"337a31c1-4e14-4ef9-83ed-584bb8d2b70a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Foundational RP Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role for FRP customers to provision ARM resource types\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/locks/read\",\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Cache/redis/read\",\r\n \"Microsoft.Cache/redis/write\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/tables/operationResults/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/tables/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/tables/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/write\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\",\r\n \"Microsoft.EventGrid/topics/read\",\r\n \"Microsoft.EventGrid/topics/write\",\r\n \"Microsoft.EventHub/namespaces/authorizationRules/read\",\r\n \"Microsoft.EventHub/namespaces/authorizationRules/write\",\r\n \"Microsoft.EventHub/namespaces/eventHubs/consumerGroups/read\",\r\n \"Microsoft.EventHub/namespaces/eventHubs/consumerGroups/write\",\r\n \"Microsoft.EventHub/namespaces/eventHubs/read\",\r\n \"Microsoft.EventHub/namespaces/eventHubs/write\",\r\n \"Microsoft.EventHub/namespaces/networkRuleSets/read\",\r\n \"Microsoft.EventHub/namespaces/networkRuleSets/write\",\r\n \"Microsoft.EventHub/namespaces/read\",\r\n \"Microsoft.EventHub/namespaces/write\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.Insights/metricAlerts/read\",\r\n \"Microsoft.Insights/metricAlerts/write\",\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/write\",\r\n \"Microsoft.KeyVault/vaults/read\",\r\n \"Microsoft.KeyVault/vaults/secrets/read\",\r\n \"Microsoft.KeyVault/vaults/secrets/write\",\r\n \"Microsoft.KeyVault/vaults/write\",\r\n \"Microsoft.Kusto/clusters/databases/read\",\r\n \"Microsoft.Kusto/clusters/databases/write\",\r\n \"Microsoft.Kusto/clusters/dataConnections/read\",\r\n \"Microsoft.Kusto/clusters/dataConnections/write\",\r\n \"Microsoft.Kusto/clusters/read\",\r\n \"Microsoft.Kusto/clusters/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.Network/dnsZones/A/read\",\r\n \"Microsoft.Network/dnsZones/A/write\",\r\n \"Microsoft.Network/dnsZones/CNAME/read\",\r\n \"Microsoft.Network/dnsZones/CNAME/write\",\r\n \"Microsoft.Network/dnsZones/NS/write\",\r\n \"Microsoft.Network/dnsZones/ptr/read\",\r\n \"Microsoft.Network/dnsZones/ptr/write\",\r\n \"Microsoft.Network/dnsZones/read\",\r\n \"Microsoft.Network/dnsZones/SRV/read\",\r\n \"Microsoft.Network/dnsZones/SRV/write\",\r\n \"Microsoft.Network/dnsZones/write\",\r\n \"Microsoft.Network/privateDnsZones/CNAME/read\",\r\n \"Microsoft.Network/privateDnsZones/CNAME/write\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/trafficManagerProfiles/externalEndpoints/read\",\r\n \"Microsoft.Network/trafficManagerProfiles/externalEndpoints/write\",\r\n \"Microsoft.Network/trafficManagerProfiles/read\",\r\n \"Microsoft.Network/trafficManagerProfiles/write\",\r\n \"Microsoft.ProviderHub/providerRegistrations/customRollouts/read\",\r\n \"Microsoft.ProviderHub/providerRegistrations/customRollouts/write\",\r\n \"Microsoft.ProviderHub/providerRegistrations/resourceTypeRegistrations/read\",\r\n \"Microsoft.ProviderHub/providerRegistrations/resourceTypeRegistrations/write\",\r\n \"Microsoft.Resources/deployments/operationStatuses/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.SQL/servers/databases/read\",\r\n \"Microsoft.SQL/servers/databases/write\",\r\n \"Microsoft.SQL/servers/elasticPools/read\",\r\n \"Microsoft.SQL/servers/elasticPools/write\",\r\n \"Microsoft.SQL/servers/read\",\r\n \"Microsoft.SQL/servers/write\",\r\n \"Microsoft.Storage/checkNameAvailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/write\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/privateEndpointConnections/read\",\r\n \"Microsoft.Storage/storageAccounts/providers/roleAssignments/read\",\r\n \"Microsoft.Storage/storageAccounts/providers/roleAssignments/write\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/write\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/write\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/read\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/write\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/read\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/write\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-09T15:31:49.280349Z\",\r\n \"updatedOn\": \"2025-01-17T10:52:27.2661182Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c840cbbc-8508-4228-b700-ec6522a74314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c840cbbc-8508-4228-b700-ec6522a74314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft.Windows365.CloudPcDelegatedMsis Writer User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Built in role to perform Write operations on CloudPcDelegatedMsis resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Windows365/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-15T15:28:55.9466167Z\",\r\n \"updatedOn\": \"2024-10-15T15:28:55.9466167Z\",\r\n \"createdBy\": \"dipakmahajan\",\r\n \"updatedBy\": \"dipakmahajan\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/21bffb94-04c0-4ed0-b676-68bb926e832b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"21bffb94-04c0-4ed0-b676-68bb926e832b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Landing Zone Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.Sovereign Landing Zone Account Owner allowing to review and modify Landing Zone Account, Landing Zone Configurations, as well as reading and adding Landing Zone Registrations. Also enables read-access to policies and management groups for enabling the full user experience of the Sovereign Services RP in the Azure Portal (as otherwise some elements might not be accessible to end users).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sovereign/landingZoneAccounts/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-15T15:28:55.9476171Z\",\r\n \"updatedOn\": \"2024-10-15T15:28:55.9476171Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bf2b6809-e9a5-4aea-a6e1-40a9dc8c43a7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bf2b6809-e9a5-4aea-a6e1-40a9dc8c43a7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Landing Zone Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.Sovereign Landing Zone Account Reader allowing to read Landing Zone Account, Landing Zone Configurations and Landing Zone Registrations. Also enables read-access to policies and management groups for enabling the full user experience of the Sovereign Services RP in the Azure Portal (as otherwise some elements might not be accessible to end users).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sovereign/landingZoneAccounts/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-15T15:28:55.9476171Z\",\r\n \"updatedOn\": \"2024-10-15T15:28:55.9476171Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2718b1f7-eb07-424e-8868-0137541392a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2718b1f7-eb07-424e-8868-0137541392a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Defender CSPM Storage Data Scanner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read blobs and files. This role is used by the data scanner of Dfender CSPM.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"updatedOn\": \"2024-11-07T16:11:40.6980357Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0b6ca2e8-2cdc-4bd6-b896-aa3d8c21fc35\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b6ca2e8-2cdc-4bd6-b896-aa3d8c21fc35\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Batch Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view all resources including pools and jobs in the Batch account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Batch/batchAccounts/read\",\r\n \"Microsoft.Batch/batchAccounts/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Batch/batchAccounts/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"updatedOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/11076f67-66f6-4be0-8f6b-f0609fd05cc9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"11076f67-66f6-4be0-8f6b-f0609fd05cc9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Batch Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all Batch resources, including Batch accounts, pools and jobs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Batch/batchAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Batch/batchAccounts/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"updatedOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/29fe4964-1e60-436b-bd3a-77fd4c178b3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"29fe4964-1e60-436b-bd3a-77fd4c178b3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Batch Job Submitter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit and manage jobs in the Batch account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Batch/batchAccounts/applications/read\",\r\n \"Microsoft.Batch/batchAccounts/applications/versions/read\",\r\n \"Microsoft.Batch/batchAccounts/pools/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Batch/batchAccounts/jobSchedules/*\",\r\n \"Microsoft.Batch/batchAccounts/jobs/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"updatedOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/48e5e92e-a480-4e71-aa9c-2778f4c13781\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48e5e92e-a480-4e71-aa9c-2778f4c13781\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Batch Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permissions to manage Batch pools and jobs but not to modify accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Batch/batchAccounts/read\",\r\n \"Microsoft.Batch/batchAccounts/applications/*\",\r\n \"Microsoft.Batch/batchAccounts/certificates/*\",\r\n \"Microsoft.Batch/batchAccounts/certificateOperationResults/*\",\r\n \"Microsoft.Batch/batchAccounts/pools/*\",\r\n \"Microsoft.Batch/batchAccounts/poolOperationResults/*\",\r\n \"Microsoft.Batch/locations/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Batch/batchAccounts/jobSchedules/*\",\r\n \"Microsoft.Batch/batchAccounts/jobs/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"updatedOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6aaa78f1-f7de-44ca-8722-c64a23943cae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6aaa78f1-f7de-44ca-8722-c64a23943cae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Managed Grafana Workspace Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Azure Managed Grafana resources, without providing access to the workspaces themselves.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Dashboard/grafana/write\",\r\n \"Microsoft.Dashboard/grafana/delete\",\r\n \"Microsoft.Dashboard/grafana/PrivateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Dashboard/grafana/managedPrivateEndpoints/action\",\r\n \"Microsoft.Dashboard/locations/operationStatuses/write\",\r\n \"Microsoft.Dashboard/grafana/privateEndpointConnectionProxies/validate/action\",\r\n \"Microsoft.Dashboard/grafana/privateEndpointConnectionProxies/write\",\r\n \"Microsoft.Dashboard/grafana/privateEndpointConnectionProxies/delete\",\r\n \"Microsoft.Dashboard/grafana/privateEndpointConnections/write\",\r\n \"Microsoft.Dashboard/grafana/privateEndpointConnections/delete\",\r\n \"Microsoft.Dashboard/grafana/managedPrivateEndpoints/write\",\r\n \"Microsoft.Dashboard/grafana/managedPrivateEndpoints/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-17T19:17:56.6677871Z\",\r\n \"updatedOn\": \"2024-10-17T19:17:56.6677871Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5c2d7e57-b7c2-4d8a-be4f-82afa42c6e95\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5c2d7e57-b7c2-4d8a-be4f-82afa42c6e95\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Service Group Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role Definition for reader of a Service Group\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/serviceGroups/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-18T18:43:56.1898722Z\",\r\n \"updatedOn\": \"2024-10-18T18:43:56.1898722Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/de754d53-652d-4c75-a67f-1e48d8b49c97\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de754d53-652d-4c75-a67f-1e48d8b49c97\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps ConnectedEnvironments Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read access to Container Apps ConnectedEnvironments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.App/connectedEnvironments/read\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-21T15:04:46.4162795Z\",\r\n \"updatedOn\": \"2024-10-21T15:04:46.4162795Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d5adeb5b-107f-4aca-99ea-4e3f4fc008d5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d5adeb5b-107f-4aca-99ea-4e3f4fc008d5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Data Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows to call data plane APIs, but not any control plane APIs for Microsoft Cognitive Services. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-21T15:04:45.9033454Z\",\r\n \"updatedOn\": \"2024-10-21T15:04:45.9033454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/19c28022-e58e-450d-a464-0b2a53034789\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19c28022-e58e-450d-a464-0b2a53034789\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager RBAC Cluster Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read-only access to most Kubernetes cluster-scoped resources in the fleet-managed hub cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/fleets/read\",\r\n \"Microsoft.ContainerService/fleets/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/fleets/apiextensions.k8s.io/customresourcedefinitions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/read\",\r\n \"Microsoft.ContainerService/fleets/configmaps/read\",\r\n \"Microsoft.ContainerService/fleets/endpoints/read\",\r\n \"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/fleets/events/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/limitranges/read\",\r\n \"Microsoft.ContainerService/fleets/namespaces/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/nodes/read\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumes/read\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\r\n \"Microsoft.ContainerService/fleets/resourcequotas/read\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/read\",\r\n \"Microsoft.ContainerService/fleets/services/read\",\r\n \"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/memberclusters/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceplacements/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourcebindings/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourcesnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterschedulingpolicysnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverrides/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverridesnapshots/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-22T15:14:09.1287923Z\",\r\n \"updatedOn\": \"2024-10-22T15:14:09.1287923Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bd80684d-2f5f-4130-892a-0955546282de\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bd80684d-2f5f-4130-892a-0955546282de\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager RBAC Cluster Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read/write access to most Kubernetes cluster-scoped resources in the fleet-managed hub cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/fleets/read\",\r\n \"Microsoft.ContainerService/fleets/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/fleets/apiextensions.k8s.io/customresourcedefinitions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/write\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/write\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/write\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/write\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/write\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/read\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/write\",\r\n \"Microsoft.ContainerService/fleets/configmaps/read\",\r\n \"Microsoft.ContainerService/fleets/configmaps/write\",\r\n \"Microsoft.ContainerService/fleets/endpoints/read\",\r\n \"Microsoft.ContainerService/fleets/endpoints/write\",\r\n \"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/fleets/events/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/write\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/write\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/write\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/write\",\r\n \"Microsoft.ContainerService/fleets/limitranges/read\",\r\n \"Microsoft.ContainerService/fleets/namespaces/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/write\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/write\",\r\n \"Microsoft.ContainerService/fleets/nodes/read\",\r\n \"Microsoft.ContainerService/fleets/nodes/write\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumes/read\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumes/write\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/write\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/write\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/write\",\r\n \"Microsoft.ContainerService/fleets/resourcequotas/read\",\r\n \"Microsoft.ContainerService/fleets/secrets/read\",\r\n \"Microsoft.ContainerService/fleets/secrets/write\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/read\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/write\",\r\n \"Microsoft.ContainerService/fleets/services/read\",\r\n \"Microsoft.ContainerService/fleets/services/write\",\r\n \"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/memberclusters/read\",\r\n \"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/memberclusters/write\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceplacements/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceplacements/write\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourcebindings/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourcesnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterschedulingpolicysnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverrides/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverrides/write\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverridesnapshots/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-22T15:14:09.1287923Z\",\r\n \"updatedOn\": \"2024-10-22T15:14:09.1287923Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1dc4cd5a-de51-4ee4-bc8e-b40e9c17e320\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1dc4cd5a-de51-4ee4-bc8e-b40e9c17e320\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Chaos Studio Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can run and see details for experiments but cannot create experiments or manage targets and capabilities.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Chaos/*/read\",\r\n \"Microsoft.Chaos/experiments/start/action\",\r\n \"Microsoft.Chaos/experiments/cancel/action\",\r\n \"Microsoft.Chaos/experiments/executions/getExecutionDetails/action\",\r\n \"Microsoft.Chaos/locations/operationResults/read\",\r\n \"Microsoft.Chaos/locations/operationStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-23T15:16:12.9511529Z\",\r\n \"updatedOn\": \"2025-01-09T19:24:51.6852764Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1a40e87e-6645-48e0-b27a-0b115d849a20\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1a40e87e-6645-48e0-b27a-0b115d849a20\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Chaos Studio Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view targets, capabilities, experiments, and experiment details.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Chaos/*/read\",\r\n \"Microsoft.Chaos/experiments/executions/getExecutionDetails/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-23T15:16:12.9956373Z\",\r\n \"updatedOn\": \"2025-01-09T19:24:51.6852764Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/29e2da8a-229c-4157-8ae8-cc72fc506b74\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"29e2da8a-229c-4157-8ae8-cc72fc506b74\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Chaos Studio Experiment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can create, run, and see details for experiments, onboard targets, and manage capabilities.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Chaos/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-23T15:16:12.9946346Z\",\r\n \"updatedOn\": \"2025-01-09T19:24:51.6842763Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7c2e40b7-25eb-482a-82cb-78ba06cb46d5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7c2e40b7-25eb-482a-82cb-78ba06cb46d5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps ConnectedEnvironments Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full management of Container Apps ConnectedEnvironments, including creation, deletion, and updates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/connectedEnvironments/*\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.App/connectedEnvironments/*/write\",\r\n \"Microsoft.App/connectedEnvironments/*/delete\",\r\n \"Microsoft.App/connectedEnvironments/*/action\",\r\n \"Microsoft.App/connectedEnvironments/daprComponents/listSecrets/action\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-24T15:25:05.8876197Z\",\r\n \"updatedOn\": \"2024-10-24T15:25:05.8876197Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6f4fe6fc-f04f-4d97-8528-8bc18c848dca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f4fe6fc-f04f-4d97-8528-8bc18c848dca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Messaging Connectors Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Messaging Connectors resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MessagingConnectors/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MessagingConnectors/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-24T15:25:05.8876197Z\",\r\n \"updatedOn\": \"2024-10-24T15:25:05.8876197Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ff478a4e-8633-416e-91bc-ec33ce7c9516\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ff478a4e-8633-416e-91bc-ec33ce7c9516\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Contributor and Data Access Configuration Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permissions to create, list, and update container registries and registry configuration properties. Provides permissions to configure data access such as admin user credentials, scope maps, and tokens, which can be used to read, write or delete repositories and images. Does not provide direct permissions to read, list, or write registry contents including repositories and images. Does not provide permissions to modify data plane content such as imports, Artifact Cache or Sync, and Transfer Pipelines. Does not provide permissions for managing Tasks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerRegistry/registries/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/read\",\r\n \"Microsoft.ContainerRegistry/registries/write\",\r\n \"Microsoft.ContainerRegistry/registries/delete\",\r\n \"Microsoft.ContainerRegistry/registries/listCredentials/action\",\r\n \"Microsoft.ContainerRegistry/registries/regenerateCredential/action\",\r\n \"Microsoft.ContainerRegistry/registries/generateCredentials/action\",\r\n \"Microsoft.ContainerRegistry/registries/replications/read\",\r\n \"Microsoft.ContainerRegistry/registries/replications/write\",\r\n \"Microsoft.ContainerRegistry/registries/replications/delete\",\r\n \"Microsoft.ContainerRegistry/registries/replications/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/read\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/write\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/delete\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/tokens/read\",\r\n \"Microsoft.ContainerRegistry/registries/tokens/write\",\r\n \"Microsoft.ContainerRegistry/registries/tokens/delete\",\r\n \"Microsoft.ContainerRegistry/registries/tokens/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/scopeMaps/read\",\r\n \"Microsoft.ContainerRegistry/registries/scopeMaps/write\",\r\n \"Microsoft.ContainerRegistry/registries/scopeMaps/delete\",\r\n \"Microsoft.ContainerRegistry/registries/scopeMaps/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ContainerRegistry/registries/connectedRegistries/read\",\r\n \"Microsoft.ContainerRegistry/registries/connectedRegistries/write\",\r\n \"Microsoft.ContainerRegistry/registries/connectedRegistries/delete\",\r\n \"Microsoft.ContainerRegistry/registries/connectedRegistries/deactivate/action\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/read\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/write\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/delete\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/getCallbackConfig/action\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/ping/action\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/listEvents/action\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/operationStatuses/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.ContainerRegistry/locations/operationResults/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/privateEndpoints/privateLinkServiceProxies/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-24T22:47:56.9675921Z\",\r\n \"updatedOn\": \"2024-10-24T22:47:56.9675921Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3bc748fc-213d-45c1-8d91-9da5725539b9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3bc748fc-213d-45c1-8d91-9da5725539b9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data SAS User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows the usage of SAS tokens for authentication.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/useSasAuth/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-28T15:14:04.6453674Z\",\r\n \"updatedOn\": \"2024-10-28T15:14:04.6453674Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7fd69092-c9bc-4b59-9e2e-bca63317e147\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fd69092-c9bc-4b59-9e2e-bca63317e147\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Health Safeguards Data User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows processing of health data in all available Health Safeguards\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalAnchoring/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalCodesValidation/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalConflictDetection/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalEvidenceVerification/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalProvenance/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalSemanticValidation/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/DetectHallucinationsAndOmissions/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/HealthAdaptedFiltering/Process/Action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-28T15:14:04.6443673Z\",\r\n \"updatedOn\": \"2024-12-10T16:13:44.7172543Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/566f0da3-e2a5-4393-9089-763f8bab8fb6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"566f0da3-e2a5-4393-9089-763f8bab8fb6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Configuration Reader and Data Access Configuration Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permissions to list container registries and registry configuration properties. Provides permissions to list data access configuration such as admin user credentials, scope maps, and tokens, which can be used to read, write or delete repositories and images. Does not provide direct permissions to read, list, or write registry contents including repositories and images. Does not provide permissions to modify data plane content such as imports, Artifact Cache or Sync, and Transfer Pipelines. Does not provide permissions for managing Tasks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/read\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/read\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/listCredentials/action\",\r\n \"Microsoft.ContainerRegistry/registries/tokens/read\",\r\n \"Microsoft.ContainerRegistry/registries/tokens/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/scopeMaps/read\",\r\n \"Microsoft.ContainerRegistry/registries/scopeMaps/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/read\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/getCallbackConfig/action\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/listEvents/action\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/replications/read\",\r\n \"Microsoft.ContainerRegistry/registries/replications/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/connectedRegistries/read\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-31T23:06:21.1173941Z\",\r\n \"updatedOn\": \"2024-10-31T23:06:21.1173941Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/69b07be0-09bf-439a-b9a6-e73de851bd59\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"69b07be0-09bf-439a-b9a6-e73de851bd59\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Transfer Pipeline Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides the ability to transfer, import, and export artifacts through configuring registry transfer pipelines that involve intermediary storage accounts and key vaults. Does not provide permissions to push or pull images. Does not provide permissions to create, manage, or list storage accounts or key vaults. Does not provide permissions to perform role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/exportPipelines/read\",\r\n \"Microsoft.ContainerRegistry/registries/exportPipelines/write\",\r\n \"Microsoft.ContainerRegistry/registries/exportPipelines/delete\",\r\n \"Microsoft.ContainerRegistry/registries/importPipelines/read\",\r\n \"Microsoft.ContainerRegistry/registries/importPipelines/write\",\r\n \"Microsoft.ContainerRegistry/registries/importPipelines/delete\",\r\n \"Microsoft.ContainerRegistry/registries/pipelineRuns/read\",\r\n \"Microsoft.ContainerRegistry/registries/pipelineRuns/write\",\r\n \"Microsoft.ContainerRegistry/registries/pipelineRuns/delete\",\r\n \"Microsoft.ContainerRegistry/registries/pipelineRuns/operationStatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-07T16:11:39.6645356Z\",\r\n \"updatedOn\": \"2024-11-07T16:11:39.6645356Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bf94e731-3a51-4a7c-8c54-a1ab9971dfc1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bf94e731-3a51-4a7c-8c54-a1ab9971dfc1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization App Attach Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide permission to manage app attach resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.DesktopVirtualization/appattachpackages/read\",\r\n \"Microsoft.DesktopVirtualization/appattachpackages/write\",\r\n \"Microsoft.DesktopVirtualization/appattachpackages/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-08T16:19:16.0184548Z\",\r\n \"updatedOn\": \"2024-11-08T16:19:16.0184548Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/97dfb3ce-e936-462c-9425-9cdb67e66d45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"97dfb3ce-e936-462c-9425-9cdb67e66d45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Service Environment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage App Service Environments but not the App Service Plans or Websites that it hosts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Web/hostingEnvironments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-12T16:08:18.3404035Z\",\r\n \"updatedOn\": \"2024-11-12T16:08:18.3404035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8ea85a25-eb16-4e29-ab4d-6f2a26c711a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8ea85a25-eb16-4e29-ab4d-6f2a26c711a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Agent Subscription Level Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants Microsoft Defender for Cloud subscription level permissions needed to activate Containers plan\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"Microsoft.OperationalInsights/workspaces/listKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedkeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedkeys/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-15T10:04:56.4175374Z\",\r\n \"updatedOn\": \"2024-12-13T11:27:18.3550673Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ada52afe-776a-4b4d-a8f2-55670d3d8178\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ada52afe-776a-4b4d-a8f2-55670d3d8178\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Quantum Workspace Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, and modify jobs and other Workspace data. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Quantum/Workspaces/read\",\r\n \"Microsoft.Quantum/locations/offerings/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Quantum/Workspaces/jobs/read\",\r\n \"Microsoft.Quantum/Workspaces/jobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-19T16:16:06.9625778Z\",\r\n \"updatedOn\": \"2024-11-19T16:16:06.9625778Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c1410b24-3e69-4857-8f86-4d0a2e603250\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c1410b24-3e69-4857-8f86-4d0a2e603250\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Communication and Email Service Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete Communications and Email Service resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Communication/CheckNameAvailability/action\",\r\n \"Microsoft.Communication/Locations/OperationStatuses/read\",\r\n \"Microsoft.Communication/Locations/OperationStatuses/write\",\r\n \"Microsoft.Communication/Operations/read\",\r\n \"Microsoft.Communication/CommunicationServices/read\",\r\n \"Microsoft.Communication/CommunicationServices/write\",\r\n \"Microsoft.Communication/CommunicationServices/delete\",\r\n \"Microsoft.Communication/CommunicationServices/ListKeys/action\",\r\n \"Microsoft.Communication/CommunicationServices/RegenerateKey/action\",\r\n \"Microsoft.Communication/CommunicationServices/LinkNotificationHub/action\",\r\n \"Microsoft.Communication/CommunicationServices/EventGridFilters/read\",\r\n \"Microsoft.Communication/CommunicationServices/EventGridFilters/write\",\r\n \"Microsoft.Communication/CommunicationServices/EventGridFilters/delete\",\r\n \"Microsoft.Communication/EmailServices/read\",\r\n \"Microsoft.Communication/EmailServices/write\",\r\n \"Microsoft.Communication/EmailServices/delete\",\r\n \"Microsoft.Communication/EmailServices/Domains/read\",\r\n \"Microsoft.Communication/EmailServices/Domains/write\",\r\n \"Microsoft.Communication/EmailServices/Domains/delete\",\r\n \"Microsoft.Communication/EmailServices/Domains/SenderUsernames/read\",\r\n \"Microsoft.Communication/EmailServices/Domains/SenderUsernames/write\",\r\n \"Microsoft.Communication/EmailServices/Domains/SenderUsernames/delete\",\r\n \"Microsoft.Communication/EmailServices/Domains/SuppressionLists/read\",\r\n \"Microsoft.Communication/EmailServices/Domains/SuppressionLists/write\",\r\n \"Microsoft.Communication/EmailServices/Domains/SuppressionLists/delete\",\r\n \"Microsoft.Communication/EmailServices/Domains/SuppressionLists/SuppressionListAddresses/read\",\r\n \"Microsoft.Communication/EmailServices/Domains/SuppressionLists/SuppressionListAddresses/write\",\r\n \"Microsoft.Communication/EmailServices/Domains/SuppressionLists/SuppressionListAddresses/delete\",\r\n \"Microsoft.Communication/EmailServices/Domains/InitiateVerification/action\",\r\n \"Microsoft.Communication/EmailServices/Domains/CancelVerification/action\",\r\n \"Microsoft.Communication/EmailServices/Domains/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-20T16:26:51.8504583Z\",\r\n \"updatedOn\": \"2024-11-20T16:26:51.8504583Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/09976791-48a7-449e-bb21-39d1a415f350\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"09976791-48a7-449e-bb21-39d1a415f350\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Oracle.Database Autonomous Database Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all Autonomous Database resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Oracle.Database/autonomousDatabases/*/read\",\r\n \"Oracle.Database/autonomousDatabases/*/write\",\r\n \"Oracle.Database/autonomousDatabases/*/delete\",\r\n \"Oracle.Database/autonomousDatabases/*/action\",\r\n \"Oracle.Database/Locations/*/read\",\r\n \"Oracle.Database/Locations/*/write\",\r\n \"Oracle.Database/Operations/read\",\r\n \"Oracle.Database/oracleSubscriptions/*/read\",\r\n \"Oracle.Database/oracleSubscriptions/*/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/locations/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-12-04T16:02:04.8857247Z\",\r\n \"updatedOn\": \"2024-12-04T16:02:04.8857247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/59c05558-2358-462d-ba19-afbd7118936d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"59c05558-2358-462d-ba19-afbd7118936d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"MySQL Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage access to Azure MySQL flexible server by adding or removing role assignments for the MySQL Access Administrator, MySQL Control Plane, MySQL User Data Reader, or MySQL User Data Writer. Includes an ABAC condition to constrain role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{b5207fd742d340fa8cc6a7e189aef39e, abed7cd4f35843849d17def9303b3b53, 8894c184eeb645cc868a1be782055af3, 2420884177f2463aab3df8343716e8af})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{b5207fd742d340fa8cc6a7e189aef39e, abed7cd4f35843849d17def9303b3b53, 8894c184eeb645cc868a1be782055af3, 2420884177f2463aab3df8343716e8af}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-12-12T09:14:53.8150942Z\",\r\n \"updatedOn\": \"2024-12-17T16:19:14.4189988Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/24208841-77f2-463a-ab3d-f8343716e8af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"24208841-77f2-463a-ab3d-f8343716e8af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure AI Safety Evaluator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role can perform all actions under workspace evaluations and simulations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/evaluations/*\",\r\n \"Microsoft.MachineLearningServices/workspaces/simulations/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-12-18T16:29:45.1650072Z\",\r\n \"updatedOn\": \"2024-12-18T16:29:45.1650072Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/11102f94-c441-49e6-a78b-ef80e0188abc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"11102f94-c441-49e6-a78b-ef80e0188abc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Tasks Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permissions to configure, read, list, trigger, or cancel Container Registry Tasks, Task Runs, Task Logs, Quick Runs, Quick Builds, and Task Agent Pools. Permissions granted for Tasks management can be used for full registry data plane permissions including reading/writing/deleting container images in registries. Permissions granted for Tasks management can also be used to run customer authored build directives and run scripts to build software artifacts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/agentpools/read\",\r\n \"Microsoft.ContainerRegistry/registries/agentpools/write\",\r\n \"Microsoft.ContainerRegistry/registries/agentpools/delete\",\r\n \"Microsoft.ContainerRegistry/registries/agentpools/listQueueStatus/action\",\r\n \"Microsoft.ContainerRegistry/registries/agentpools/operationResults/status/read\",\r\n \"Microsoft.ContainerRegistry/registries/agentpools/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/tasks/read\",\r\n \"Microsoft.ContainerRegistry/registries/tasks/write\",\r\n \"Microsoft.ContainerRegistry/registries/tasks/delete\",\r\n \"Microsoft.ContainerRegistry/registries/tasks/listDetails/action\",\r\n \"Microsoft.ContainerRegistry/registries/scheduleRun/action\",\r\n \"Microsoft.ContainerRegistry/registries/listBuildSourceUploadUrl/action\",\r\n \"Microsoft.ContainerRegistry/registries/runs/read\",\r\n \"Microsoft.ContainerRegistry/registries/runs/write\",\r\n \"Microsoft.ContainerRegistry/registries/runs/listLogSasUrl/action\",\r\n \"Microsoft.ContainerRegistry/registries/runs/cancel/action\",\r\n \"Microsoft.ContainerRegistry/registries/taskruns/read\",\r\n \"Microsoft.ContainerRegistry/registries/taskruns/write\",\r\n \"Microsoft.ContainerRegistry/registries/taskruns/delete\",\r\n \"Microsoft.ContainerRegistry/registries/taskruns/listDetails/action\",\r\n \"Microsoft.ContainerRegistry/registries/taskruns/operationStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerRegistry/registries/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-13T16:06:06.827769Z\",\r\n \"updatedOn\": \"2025-01-13T16:06:06.827769Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fb382eab-e894-4461-af04-94435c366c3f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb382eab-e894-4461-af04-94435c366c3f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Backup Snapshot Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide permissions to backup identity to manage RPC snapshots\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/restorePointCollections/read\",\r\n \"Microsoft.Compute/restorePointCollections/write\",\r\n \"Microsoft.Compute/restorePointCollections/restorePoints/write\",\r\n \"Microsoft.Compute/restorePointCollections/restorePoints/read\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-13T16:06:06.827769Z\",\r\n \"updatedOn\": \"2025-01-13T16:06:06.827769Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/afc680e2-a938-412d-b213-9a49efa7fb83\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"afc680e2-a938-412d-b213-9a49efa7fb83\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AVS on Fleet VIS Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Do not remove this role from your resource because it is critical to enable your AVS private cloud to operate. If the role is removed, it will cause your AVS private cloud control plane to no longer operate correctly. The role is used to enable the AVS private cloud control plane to inject address prefix changes of the private clouds attached virtual network to SDN and support peering sync feature. This role is not intended for use cases outside of assignment to the associated AVS identity in your entra-id tenant.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/peer/action\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Network/serviceEndpointPolicies/join/action\",\r\n \"Microsoft.Network/natGateways/join/action\",\r\n \"Microsoft.Network/networkIntentPolicies/join/action\",\r\n \"Microsoft.Network/ddosProtectionPlans/join/action\",\r\n \"Microsoft.Network/networkManagers/ipamPools/associateResourcesToPool/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"(!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR @Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{49fc33c1886f4b21a00e1d9993234734}\"\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-14T16:18:32.7067643Z\",\r\n \"updatedOn\": \"2025-01-14T16:18:32.7067643Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/49fc33c1-886f-4b21-a00e-1d9993234734\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49fc33c1-886f-4b21-a00e-1d9993234734\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Edge Management Copilot User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables users access to Edge Management Copilot.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EdgeManagement/locations/chat/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-24T02:55:55.2627422Z\",\r\n \"updatedOn\": \"2025-01-24T02:55:55.2627422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/53e48117-a530-4075-bcbe-d91913e3bdb8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"53e48117-a530-4075-bcbe-d91913e3bdb8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Durable Task Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read all Durable Task Scheduler data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DurableTask/orchestrations/read\",\r\n \"Microsoft.DurableTask/orchestrations/metadata/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-24T21:41:35.9328305Z\",\r\n \"updatedOn\": \"2025-01-24T21:41:35.9328305Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d6a5505f-6ebb-45a4-896e-ac8274cfc0ac\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d6a5505f-6ebb-45a4-896e-ac8274cfc0ac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack HCI Edge Machine Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.AzureStackHCI Edge Machine Contributor Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStackHCI/EdgeMachines/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-31T17:57:03.7837888Z\",\r\n \"updatedOn\": \"2025-01-31T17:57:03.7837888Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1a6f9009-515c-4455-b170-143e4c9ce229\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1a6f9009-515c-4455-b170-143e4c9ce229\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Online Experimentation Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows full access to Online Experimentation data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.OnlineExperimentation/workspaces/read\",\r\n \"Microsoft.OnlineExperimentation/workspaces/write\",\r\n \"Microsoft.OnlineExperimentation/workspaces/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-31T18:42:14.0945842Z\",\r\n \"updatedOn\": \"2025-01-31T18:42:14.0945842Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/53747cdd-e97c-477a-948c-b587d0e514b2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"53747cdd-e97c-477a-948c-b587d0e514b2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Online Experimentation Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to Online Experimentation data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.OnlineExperimentation/workspaces/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-31T18:42:14.0945842Z\",\r\n \"updatedOn\": \"2025-01-31T18:42:14.0945842Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1363e94d-546f-4fe9-8434-b0eefb292d59\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1363e94d-546f-4fe9-8434-b0eefb292d59\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions?api-version=2022-05-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzllMjIzZGJlLTMzOTktNGUxOS04OGViLTA5NzVmMDJhYzg3Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f6f5f11-ebf4-44b6-a343-69fab29ebb0f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.3624.51421", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/7.8.1" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "119a57ae-af84-4dae-9b39-56e7dbecf91b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e9760a91-4751-47db-b013-8bc1499e942e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250213T114731Z:e9760a91-4751-47db-b013-8bc1499e942e" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 456533FD3DA6498D9C7FADC06778FAF0 Ref B: MAA201060515049 Ref C: 2025-02-13T11:47:31Z" + ], + "Date": [ + "Thu, 13 Feb 2025 11:47:31 GMT" + ], + "Content-Length": [ + "915537" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader vm For Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-07T05:38:12.5623887Z\",\r\n \"updatedOn\": \"2024-05-07T05:38:12.5623887Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/14347f95-76d9-48f6-932e-7997d99a45b2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"14347f95-76d9-48f6-932e-7997d99a45b2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Cluster Create\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Avere cluster create role used by the Avere controller to create a vFXT cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/*\",\r\n \"Microsoft.Authorization/roleDefinitions/*\",\r\n \"Microsoft.Compute/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Network/*/read\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Storage/*/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-11-29T18:46:55.0492387Z\",\r\n \"updatedOn\": \"2018-11-29T18:46:55.0492387Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Cluster Runtime Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Avere cluster runtime role used by Avere clusters running in subscriptions, for the purpose of failing over IP addresses, accessing BLOB storage, etc\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/routeTables/read\",\r\n \"Microsoft.Network/routeTables/routes/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-26T00:41:26.2170858Z\",\r\n \"updatedOn\": \"2018-08-26T00:41:26.2170858Z\",\r\n \"createdBy\": \"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\r\n \"updatedBy\": \"dda50086-5e3d-4a4b-b8bc-f54771104d89\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e078ab98-ef3a-4c9a-aba7-12f5172b45d0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e078ab98-ef3a-4c9a-aba7-12f5172b45d0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Deploy Release Management Contributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Contributor role for services deploying through Azure Service Deploy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/write\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/delete\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/action\"\r\n ],\r\n \"notDataActions\": [],\r\n \"condition\": \"((@Subject.Application == '55dc16a23e724a5eb43050311bb101b9') || (@Subject.Application == '5b306cba9c7149db96c3d17ca2379c4d') || (@Subject.Application == '55dc16a2-3e72-4a5e-b430-50311bb101b9') || (@Subject.Application == '5b306cba-9c71-49db-96c3-d17ca2379c4d') || (@Subject.ApplicationId == '55dc16a23e724a5eb43050311bb101b9') || (@Subject.ApplicationId == '5b306cba9c7149db96c3d17ca2379c4d') || (@Subject.ApplicationId == '55dc16a2-3e72-4a5e-b430-50311bb101b9') || (@Subject.ApplicationId == '5b306cba-9c71-49db-96c3-d17ca2379c4d')) && ((@Subject.ApplicationACR == '1') || (@Subject.ApplicationACR == '2'))\"\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-04T02:26:31.5413362Z\",\r\n \"updatedOn\": \"2024-08-05T21:20:31.4815216Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/21d96096-b162-414a-8302-d8354f9d91b2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"21d96096-b162-414a-8302-d8354f9d91b2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CAL-Custom-Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets SAP Cloud Appliance Library application manage Network and Compute services, manage Resource Groups and Management locks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/locks/*\",\r\n \"Microsoft.Authorization/roleDefinitions/*\",\r\n \"Microsoft.Authorization/roleAssignments/*\",\r\n \"Microsoft.Compute/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.Resources/*\",\r\n \"Microsoft.Storage/*\",\r\n \"Microsoft.ContainerService/*\",\r\n \"Microsoft.ContainerRegistry/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-05-14T19:30:51.0664585Z\",\r\n \"updatedOn\": \"2019-02-19T19:11:57.5963229Z\",\r\n \"createdBy\": \"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7b266cd7-0bba-4ae2-8423-90ede5e1e898\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7b266cd7-0bba-4ae2-8423-90ede5e1e898\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Dsms Role (deprecated)\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom role used by Dsms to perform operations. Can list and regnerate storage account keys.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-17T18:02:11.1225951Z\",\r\n \"updatedOn\": \"2018-01-13T00:21:52.7211696Z\",\r\n \"createdBy\": \"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\",\r\n \"updatedBy\": \"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Dsms Role (do not use)\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom role used by Dsms to perform operations. Can list and regnerate storage account keys.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-01T07:56:12.5880222Z\",\r\n \"updatedOn\": \"2018-08-09T17:53:48.5432297Z\",\r\n \"createdBy\": \"becb4b6b-fe16-413b-a5c3-90355e0b2982\",\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7aff565e-6c55-448d-83db-ccf482c6da2f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7aff565e-6c55-448d-83db-ccf482c6da2f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ExpressRoute Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can create, delete and manage ExpressRoutes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/locks/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\",\r\n \"Microsoft.Authorization/roleAssignments/*\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.EventGrid/*\",\r\n \"Microsoft.Insights/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.Resources/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-31T03:51:32.2843055Z\",\r\n \"updatedOn\": \"2019-03-20T22:55:18.8222085Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a48d7896-14b4-4889-afef-fbb65a96e5a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a48d7896-14b4-4889-afef-fbb65a96e5a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"GenevaWarmPathResourceContributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can manage service bus and storage accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/namespaces/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*\",\r\n \"Microsoft.ServiceBus/namespaces/*\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-14T22:30:10.1999436Z\",\r\n \"updatedOn\": \"2022-02-28T23:26:40.0052537Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"acis\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"masterreader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-14T23:38:05.3353858Z\",\r\n \"updatedOn\": \"2017-11-14T23:38:05.3353858Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a48d7796-14b4-4889-afef-fbb65a93e5a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a48d7796-14b4-4889-afef-fbb65a93e5a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft OneAsset Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"This role is for Microsoft OneAsset team (CSEO) to track internal security compliance and resource utilization.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-27T23:51:08.6333052Z\",\r\n \"updatedOn\": \"2019-04-02T20:35:43.3396263Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd1bb084-1503-4bd2-99c0-630220046786\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd1bb084-1503-4bd2-99c0-630220046786\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Office DevOps\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom access for developers to operations but not secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachineScaleSets/restart/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/restart/action\",\r\n \"Microsoft.Sql/servers/databases/replicationLinks/delete\",\r\n \"Microsoft.Sql/servers/databases/replicationLinks/failover/action\",\r\n \"Microsoft.Sql/servers/databases/replicationLinks/forceFailoverAllowDataLoss/action\",\r\n \"Microsoft.Sql/servers/databases/replicationLinks/operationResults/read\",\r\n \"Microsoft.Sql/servers/databases/replicationLinks/read\",\r\n \"Microsoft.Sql/servers/databases/replicationLinks/unlink/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-10-07T08:11:46.1639398Z\",\r\n \"updatedOn\": \"2017-03-16T18:43:08.3234306Z\",\r\n \"createdBy\": \"25aea6be-b605-4347-a92d-33e178e412ec\",\r\n \"updatedBy\": \"25aea6be-b605-4347-a92d-33e178e412ec\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7fd64851-3279-459b-b614-e2b2ba760f5b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fd64851-3279-459b-b614-e2b2ba760f5b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"GenevaWarmPathStorageBlobContributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Geneva Warm Path Storage Blob Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/lease/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/lock/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/extend/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/delete\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-06T22:46:27.136563Z\",\r\n \"updatedOn\": \"2022-02-28T23:26:40.4152515Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"acis\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a16c43ca-2d67-4dcd-9ded-6412f5edc51a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a16c43ca-2d67-4dcd-9ded-6412f5edc51a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Deploy Release Management Restricted Owner\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Restricted owner role for services deploying through Azure Service Deploy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/write\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/delete\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/action\"\r\n ],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Principal[ApplicationId] ForAllOfAnyValues:StringEqualsIgnoreCase {'5b306cba9c7149db96c3d17ca2379c4d', '5b306cba-9c71-49db-96c3-d17ca2379c4d'} && @Principal[ApplicationACR] ForAllOfAnyValues:StringEqualsIgnoreCase {'1', '2'}\"\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Principal[ApplicationId] ForAllOfAnyValues:StringEqualsIgnoreCase {'5b306cba9c7149db96c3d17ca2379c4d', '5b306cba-9c71-49db-96c3-d17ca2379c4d'} && @Principal[ApplicationACR] ForAllOfAnyValues:StringEqualsIgnoreCase {'1', '2'} && @Resource[Microsoft.Authorization/roleAssignments:PrincipalType] StringEqualsIgnoreCase 'ServicePrincipal'\"\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/policyassignments/write\",\r\n \"Microsoft.Authorization/policydefinitions/write\",\r\n \"Microsoft.Authorization/policysetdefinitions/write\",\r\n \"Microsoft.Authorization/roleDefinitions/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Principal[ApplicationId] ForAllOfAnyValues:StringEqualsIgnoreCase {'5b306cba9c7149db96c3d17ca2379c4d', '5b306cba-9c71-49db-96c3-d17ca2379c4d'} && @Principal[ApplicationACR] ForAllOfAnyValues:StringEqualsIgnoreCase {'1', '2'}\"\r\n }\r\n ],\r\n \"createdOn\": \"2022-03-07T22:16:06.8803898Z\",\r\n \"updatedOn\": \"2024-08-05T21:23:18.5670462Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"94ddc4bc-25f5-4f3e-b527-c587da93cfe4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Deploy Test Release Management Key Vault Secrets User\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read secret and certificate contents. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\r\n \"Microsoft.KeyVault/vaults/certificates/read\"\r\n ],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Principal[Microsoft.Directory/TokenClaims:ApplicationId] ForAllOfAnyValues:StringEqualsIgnoreCase {'5744bc69-8a73-45f7-958d-4640d865f04d', '5744bc698a7345f7958d4640d865f04d'} && @Principal[Microsoft.Directory/TokenClaims:ApplicationACR] ForAllOfAnyValues:StringEqualsIgnoreCase {'1', '2'}\"\r\n }\r\n ],\r\n \"createdOn\": \"2022-07-20T22:52:19.9944274Z\",\r\n \"updatedOn\": \"2022-08-31T23:25:32.0649353Z\",\r\n \"createdBy\": \"19669f00-ee56-44ec-94c3-83159a41292e\",\r\n \"updatedBy\": \"19669f00-ee56-44ec-94c3-83159a41292e\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/87d31636-ad85-4caa-802d-1535972b5612\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87d31636-ad85-4caa-802d-1535972b5612\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Deploy Release Management Key Vault Secrets User\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read secret and certificate contents. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\r\n \"Microsoft.KeyVault/vaults/certificates/read\"\r\n ],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Principal[Microsoft.Directory/TokenClaims:ApplicationId] ForAllOfAnyValues:StringEqualsIgnoreCase {'5b306cba-9c71-49db-96c3-d17ca2379c4d', '5b306cba9c7149db96c3d17ca2379c4d'} && @Principal[Microsoft.Directory/TokenClaims:ApplicationACR] ForAllOfAnyValues:StringEqualsIgnoreCase {'1', '2'}\"\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-02T21:14:21.3331588Z\",\r\n \"updatedOn\": \"2022-09-10T00:44:34.5904437Z\",\r\n \"createdBy\": \"19669f00-ee56-44ec-94c3-83159a41292e\",\r\n \"updatedBy\": \"19669f00-ee56-44ec-94c3-83159a41292e\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/260691e6-68c2-47cf-bd4a-97d5fd4dbcd5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"260691e6-68c2-47cf-bd4a-97d5fd4dbcd5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AccessMonitoringReader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Allows AccessMonitoring read Data Plane Access on SQL db's for compliance purposes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/subscriptions/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"Microsoft.DataLakeStore/accounts/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-06T18:18:45.0067512Z\",\r\n \"updatedOn\": \"2023-07-27T15:48:06.4187179Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b0f576e-fc2e-4256-9aa3-6fede171d599\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CnAI Management Group Orchestrator Prod\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Allows management group orchestrators to move subscriptions into the proper management group hierarchies\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/write\",\r\n \"Microsoft.Management/managementGroups/delete\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/write\",\r\n \"Microsoft.Management/managementGroups/subscriptions/delete\",\r\n \"Microsoft.Management/register/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-25T00:58:13.7487093Z\",\r\n \"updatedOn\": \"2024-10-25T00:58:13.7487093Z\",\r\n \"createdBy\": \"7065961c-d3a8-4346-985c-12cd2dec2994\",\r\n \"updatedBy\": \"7065961c-d3a8-4346-985c-12cd2dec2994\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ebc6a08c-9436-41c0-98ea-9a98ce69e91c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ebc6a08c-9436-41c0-98ea-9a98ce69e91c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Orphaned Subscription Administrator CorpProd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Restore access to orphaned Azure subscriptions when service teams get locked out.\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-25T00:27:56.7010785Z\",\r\n \"updatedOn\": \"2025-01-25T00:27:56.7010785Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6fb9aae5-f1c6-400c-a250-c82bc5daac97\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6fb9aae5-f1c6-400c-a250-c82bc5daac97\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Corp Prod Policy Remediation Caller\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom role to automate policy remediation for Azure Security team.\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/policyassignments/read\",\r\n \"Microsoft.Authorization/policydefinitions/read\",\r\n \"Microsoft.Authorization/policyexemptions/read\",\r\n \"Microsoft.Authorization/policysetdefinitions/read\",\r\n \"Microsoft.PolicyInsights/remediations/read\",\r\n \"Microsoft.PolicyInsights/remediations/write\",\r\n \"Microsoft.PolicyInsights/policyStates/summarize/action\",\r\n \"Microsoft.PolicyInsights/policyStates/queryResults/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.PolicyInsights/remediations/listDeployments/read\",\r\n \"Microsoft.PolicyInsights/policyStates/summarize/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-02-03T20:04:07.3155642Z\",\r\n \"updatedOn\": \"2025-02-03T20:04:07.3155642Z\",\r\n \"createdBy\": \"319b9a8b-31b0-413f-8826-b1135db75bcb\",\r\n \"updatedBy\": \"319b9a8b-31b0-413f-8826-b1135db75bcb\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0034c645-cd1a-45a2-9f68-21c21eba9995\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0034c645-cd1a-45a2-9f68-21c21eba9995\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AzSecPackUAPolicyResourceContributorCorpProd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Resource contributor role for allowing the AzSecPack Policy to create and add user assigned identity to VM and VMSS resources.\",\r\n \"assignableScopes\": [\r\n \"/providers/microsoft.management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/locks/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.ManagedIdentity/register/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-30T22:27:31.9638459Z\",\r\n \"updatedOn\": \"2023-12-14T02:28:32.7704116Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd6e57ea-fe3c-4f21-bd1e-de170a9a4971\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SLNM-Admin-PolicyManagement-Prod\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Authorization/policyExemptions/*\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/register/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Network/virtualNetworks/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-28T21:15:26.3708294Z\",\r\n \"updatedOn\": \"2023-07-29T01:30:19.0147757Z\",\r\n \"createdBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\",\r\n \"updatedBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/47d81b3f-7139-46fc-a2e5-228265cc216c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47d81b3f-7139-46fc-a2e5-228265cc216c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SLNM-Teams-PolicyManagement-Prod\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/register/action\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-28T21:16:33.4696978Z\",\r\n \"updatedOn\": \"2023-07-28T21:16:33.4696978Z\",\r\n \"createdBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\",\r\n \"updatedBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cbdd6655-6341-491c-b01b-8b202175cee4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cbdd6655-6341-491c-b01b-8b202175cee4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NetIso-Reserve-Role-Prod\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-28T21:17:22.3124231Z\",\r\n \"updatedOn\": \"2023-07-28T21:17:22.3124231Z\",\r\n \"createdBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\",\r\n \"updatedBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/402b3d0b-63a7-4ca1-9ca1-56884c0dce6e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"402b3d0b-63a7-4ca1-9ca1-56884c0dce6e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Policy Enforcement Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"This role contains the required permissions in order to deploy Azure Policies. \",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Authorization/policyexemptions/*\",\r\n \"Microsoft.Authorization/policysetdefinitions/*\",\r\n \"Microsoft.PolicyInsights/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ManagedIdentity/register/action\",\r\n \"Microsoft.ManagedIdentity/operations/read\",\r\n \"Microsoft.ManagedIdentity/identities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/listAssociatedResources/action\",\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-10T21:51:09.3400496Z\",\r\n \"updatedOn\": \"2024-08-05T23:30:22.0289155Z\",\r\n \"createdBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"updatedBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6d224f7c-5c93-4466-b116-8c0c62090d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d224f7c-5c93-4466-b116-8c0c62090d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AzSecPackPolicyResourceContributor1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"This is required to deploy AzsecPack on VMSS in Corp for DSR scope\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/locks/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.ManagedIdentity/register/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-19T21:06:07.681423Z\",\r\n \"updatedOn\": \"2024-11-19T21:20:49.0643539Z\",\r\n \"createdBy\": \"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa\",\r\n \"updatedBy\": \"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a3fd983e-8bf0-4cd0-b63c-1670e6d5d142\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a3fd983e-8bf0-4cd0-b63c-1670e6d5d142\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Corp Tenant DevOps Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role for Developers. Learn more about the role here at https://microsoftit.visualstudio.com/OneITVSO/_wiki/wikis/OneITVSO.wiki/62284/Custom-DevOps-Role-in-the-Tenant \",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"/subscriptions/bd7d69a1-b6ed-4f53-8cc0-b0e20ba88bec\",\r\n \"/subscriptions/35bccea7-e59a-4141-af11-3f84a8bbc47b\",\r\n \"/subscriptions/f4fe620a-c862-40b3-9ad6-41e1d0b065c0\",\r\n \"/subscriptions/d8c3b15e-561c-4701-a24d-6c26916c8015\",\r\n \"/subscriptions/dc9a7b77-f933-44c7-bf43-3bfb4e16b806\",\r\n \"/subscriptions/9dcf4441-c85a-49b3-8fed-190a457d78ab\",\r\n \"/subscriptions/5df6ea0e-35e8-4a80-8b4f-e66c32206901\",\r\n \"/subscriptions/d651c991-0fd9-4b3f-9e43-18b19cc1caef\",\r\n \"/subscriptions/a5edef88-2407-4770-8ffc-d6b6fe88e991\",\r\n \"/subscriptions/34947903-f6ca-47ee-8b3f-9150424b9409\",\r\n \"/subscriptions/c0779592-f81d-4971-8210-11b7eb2b4521\",\r\n \"/subscriptions/bf295590-3a56-49eb-860c-bd9c58c54c97\",\r\n \"/subscriptions/094d7bec-6c2d-4f6a-b48e-253e7938079b\",\r\n \"/subscriptions/437771cb-be03-4775-be4d-e6bc4b3dd26b\",\r\n \"/subscriptions/c1051991-d1a4-499a-beff-c43ac416fae5\",\r\n \"/subscriptions/59e3af93-26f8-4ceb-ada6-12cf15432917\",\r\n \"/subscriptions/de647864-aa01-43c7-9e79-44d99dbaf600\",\r\n \"/subscriptions/66a51ed6-7d41-44bc-b157-17c686cd9834\",\r\n \"/subscriptions/8f4abf76-7436-4ca5-a23f-a5e1f46e6b9e\",\r\n \"/subscriptions/970dcf73-534e-4016-a2d3-5ffb67ca73c9\",\r\n \"/subscriptions/0932d378-8019-40b3-b79f-b90fdb70b693\",\r\n \"/subscriptions/0fa7b233-2cdc-4016-b710-332e2203aa72\",\r\n \"/subscriptions/3b07b0f5-a580-483b-bb97-8bae7e1922d0\",\r\n \"/subscriptions/b4aea4e0-ab49-4306-bdec-79dd2f82fb11\",\r\n \"/subscriptions/07949e3a-b9d8-4260-bd4e-d91770011b37\",\r\n \"/subscriptions/079094e3-62d7-41cb-9d8d-ee589c0d3b1a\",\r\n \"/subscriptions/cc78881b-f802-4c11-abec-77da2e7292f8\",\r\n \"/subscriptions/51ea416c-518d-404b-b5bf-4aedc5434703\",\r\n \"/subscriptions/026b2bce-d595-47c7-9ef1-752c97812939\",\r\n \"/subscriptions/30e77e63-38a6-4878-ac82-870d9e7b7766\",\r\n \"/subscriptions/9b5e424d-bc16-4de8-96d4-53971cee3712\",\r\n \"/subscriptions/ef43a4af-7f54-43f9-b719-95eb94a47f65\",\r\n \"/subscriptions/15d193d2-35f3-45b6-b2b9-36da94aaa685\",\r\n \"/subscriptions/efc79162-3917-410d-acee-8d321e8dfbf8\",\r\n \"/subscriptions/31578d3a-0c50-4772-b3d0-e14926cf92ce\",\r\n \"/subscriptions/6cde5ff1-3a5e-4049-97bd-c406be85757f\",\r\n \"/subscriptions/ffc9b38e-f392-4199-b78a-228e8b1fc55e\",\r\n \"/subscriptions/35fec563-1b85-4a37-8634-a137a147fdd0\",\r\n \"/subscriptions/07e4864a-c7ac-4d01-b871-7a3d839c5e1d\",\r\n \"/subscriptions/45d6d4e3-a5a4-4c3f-8000-02ff59b09160\",\r\n \"/subscriptions/aa39bf6b-714c-4101-b5a2-621f7709a418\",\r\n \"/subscriptions/f18772ba-70c6-4a6d-9487-94d5d6c748a7\",\r\n \"/subscriptions/9f31783a-fec8-4a93-97c1-98dc1a165450\",\r\n \"/subscriptions/4d084a92-7cfb-43bc-a6f9-ed06edd16511\",\r\n \"/subscriptions/11a4da08-b62a-483f-b979-adf4ba45d91c\",\r\n \"/subscriptions/38b10f14-fcf7-44a5-9c7b-5b9ee23112e8\",\r\n \"/subscriptions/b05df995-293e-4127-80a5-91b6d40ac974\",\r\n \"/subscriptions/463265e8-5883-4030-9970-06a09e6f88b2\",\r\n \"/subscriptions/a0514071-6217-4732-a455-5dd48feda5d6\",\r\n \"/subscriptions/740a38c5-c29e-46fa-9429-ac63f0458d27\",\r\n \"/subscriptions/a5f09b58-2eee-4581-a04c-b1835cb1c504\",\r\n \"/subscriptions/e1723936-f7e0-4a1b-aeab-051657be993f\",\r\n \"/subscriptions/31d62d8a-fd49-4c69-ba05-17074fd014ea\",\r\n \"/subscriptions/29bd15f9-864e-42bd-96d3-d8a4e13217bb\",\r\n \"/subscriptions/08ed568c-822f-4f2d-9327-e79bde1d18c1\",\r\n \"/subscriptions/30b82d14-deee-4a43-9fc6-cffc7a3b30e4\",\r\n \"/subscriptions/129e74a6-296c-4aa2-9dd1-8e0cac084b82\",\r\n \"/subscriptions/70e4848e-c8f5-4b67-bc02-f70a351d3fb2\",\r\n \"/subscriptions/45365076-23b2-4d64-94fc-c9fb80e2dd42\",\r\n \"/subscriptions/6c56ba99-71e0-4df4-a52e-043475f8ed8e\",\r\n \"/subscriptions/7e46b15d-66a5-403e-ac88-a4a766a1e57d\",\r\n \"/subscriptions/12ce730d-549e-418a-b3b8-cc4054e2eb95\",\r\n \"/subscriptions/5fd7b37c-f026-438c-a788-dbdfe868cdd0\",\r\n \"/subscriptions/4217be1d-910b-44b0-9147-3bb6564dd551\",\r\n \"/subscriptions/3745d715-178d-4095-a836-ce50eee920d9\",\r\n \"/subscriptions/1377ef46-7c91-4b79-9fe4-72c4d0b3cb09\",\r\n \"/subscriptions/d965b66c-70d4-4657-9bf5-2dc5a2d76cd6\",\r\n \"/subscriptions/4804f5a5-64d5-46ad-9ecd-8f282ceea436\",\r\n \"/subscriptions/4d0d5d1b-558f-41bb-9d75-8c094857a2cc\",\r\n \"/subscriptions/e4adac87-a66b-4c91-81f2-5700cfc0ca82\",\r\n \"/subscriptions/9a2bb142-ecbf-4116-9040-c11593bf4518\",\r\n \"/subscriptions/b51deab4-bcfb-4ad1-a683-2ec036cda3c7\",\r\n \"/subscriptions/60d8e7fb-441d-4e15-8df2-5cac7b3f8e6c\",\r\n \"/subscriptions/c47d1c0f-573d-4599-a62b-4e3bc5b5dfa7\",\r\n \"/subscriptions/95821bb2-07ec-474d-b3f4-19101a84928c\",\r\n \"/subscriptions/6f4726ec-3243-450a-ab6e-dea241bce603\",\r\n \"/subscriptions/71d13df0-8317-4abc-9e8c-b6a8b184f988\",\r\n \"/subscriptions/56d81792-6405-48e2-bac7-f882a2544655\",\r\n \"/subscriptions/9012adbe-0393-40d3-863c-371bfa435291\",\r\n \"/subscriptions/c96ec3e5-098c-4727-bd2a-ca941c3a18c3\",\r\n \"/subscriptions/3e0549f6-ac39-4666-b9f6-6a43a697e9ab\",\r\n \"/subscriptions/35a55dce-4df3-4970-82ed-e61d13b5193a\",\r\n \"/subscriptions/e68d353d-707b-4a29-bb8e-c1c786c6a62f\",\r\n \"/subscriptions/8d0bae2b-1f7f-4d3e-ba79-1d1480fd829c\",\r\n \"/subscriptions/348fe12a-d5bd-4b9d-af18-9709501620e7\",\r\n \"/subscriptions/d3c6015f-32e3-4db4-990b-7392abeb8a27\",\r\n \"/subscriptions/58a1ba20-bfb8-4932-b68b-fbbfb005fde6\",\r\n \"/subscriptions/a0fc0741-b20f-4501-92e9-201f1b810c55\",\r\n \"/subscriptions/554e0ec7-a5aa-4ca8-a0bd-34ab80c8a380\",\r\n \"/subscriptions/9266f2b2-e66f-4668-85d7-9f9a86c4b98a\",\r\n \"/subscriptions/d37a76cf-6c3e-4678-9b13-f9dc3cb78090\",\r\n \"/subscriptions/fb772509-8c20-49fb-84ec-178830f206e9\",\r\n \"/subscriptions/d544e7f3-13cb-4ac1-ae04-a3a16e4374ff\",\r\n \"/subscriptions/7a17b6e0-ef59-43c4-b177-d6dd2d8a7da7\",\r\n \"/subscriptions/0cf8a944-da83-498b-84bb-b760a38c8ced\",\r\n \"/subscriptions/3af94249-7078-44ac-9bcd-fde23bcc1476\",\r\n \"/subscriptions/987e6029-fd7c-482b-81ad-7714e25061fe\",\r\n \"/subscriptions/7bf02826-9700-4fa4-a7b6-5fa4d387f71b\",\r\n \"/subscriptions/e79e9657-7d75-43bd-babf-a61aa625dbcf\",\r\n \"/subscriptions/e1cab57b-074d-4a8c-9f8a-2466b87780f5\",\r\n \"/subscriptions/c13ce252-147b-451b-8df4-11b6a6a7df45\",\r\n \"/subscriptions/d115ecfa-2380-4f43-8217-15c88ecb07f5\",\r\n \"/subscriptions/e85aa023-1889-47df-85fd-128522fc4b51\",\r\n \"/subscriptions/135f12af-ea52-4fa2-8a6f-77b19c56d6af\",\r\n \"/subscriptions/c9d1d8e7-e466-43c0-ad5c-7c0032e38eb7\",\r\n \"/subscriptions/58f3f2bc-e034-48c8-b0ee-77a878fa1a63\",\r\n \"/subscriptions/58bf9f36-0655-4b2c-b756-0c316f427047\",\r\n \"/subscriptions/5e51d852-ec0e-40d8-ac5d-aecf031642b1\",\r\n \"/subscriptions/9585bbfc-6640-4156-b209-93af900dde91\",\r\n \"/subscriptions/137a7004-0fde-4647-b59a-26d95552a593\",\r\n \"/subscriptions/861baf30-028d-4e35-ac3b-7ad1bf687847\",\r\n \"/subscriptions/fa776a59-ead3-4d82-940e-c901ee93c2d1\",\r\n \"/subscriptions/91b32e2a-8c41-48c8-b955-4f87d6e097ea\",\r\n \"/subscriptions/f059d5f8-721c-43a3-bd7b-ab30db7e865b\",\r\n \"/subscriptions/aa7a31d5-17b2-45ff-9388-e510a09dea97\",\r\n \"/subscriptions/05cd13a2-bc17-4f2a-95c2-267e99dbc41b\",\r\n \"/subscriptions/d6042450-9a11-46aa-8162-b0f1e0cc51a7\",\r\n \"/subscriptions/661bdf1b-de4c-4a82-b230-44df73e4eabf\",\r\n \"/subscriptions/6a0ab98c-24d4-4131-8cd7-0a78bfce58f5\",\r\n \"/subscriptions/979eac51-1ffc-4abe-8545-06cce8b6b269\",\r\n \"/subscriptions/5532ccce-eedb-4693-a69a-e257dfa577ed\",\r\n \"/subscriptions/a17e6aeb-d3af-44df-b467-743d72a15afe\",\r\n \"/subscriptions/d261fd2c-575d-4171-92ac-a7933b52640d\",\r\n \"/subscriptions/d63d6055-5d29-4a49-80f2-2c927c97f9af\",\r\n \"/subscriptions/0b9996f5-6c37-45fc-8a36-2ea5e14ec817\",\r\n \"/subscriptions/853a32bf-1e5b-4e73-a66e-f916bd4ef53d\",\r\n \"/subscriptions/6e8b4640-ee52-4c9a-9b2d-70632af8c77a\",\r\n \"/subscriptions/cb938fd1-ac0f-41cf-93d8-f8e32e9f5813\",\r\n \"/subscriptions/c3ee728e-c8a2-4b7e-93f7-0dc02153aa36\",\r\n \"/subscriptions/f6e16017-430d-4dcd-b33e-318e2245e2e9\",\r\n \"/subscriptions/cd6952ff-6d79-46ac-843a-60c2fc294b47\",\r\n \"/subscriptions/c96e9129-1fd6-495c-b71f-a093bf71fa60\",\r\n \"/subscriptions/2a80a746-1f2c-4243-a907-893c430c5d54\",\r\n \"/subscriptions/2522b118-b802-4051-98cd-847c995ae80b\",\r\n \"/subscriptions/e03efd8f-ea1e-4b61-9c49-2d836f3271ec\",\r\n \"/subscriptions/2f96ae42-240b-4228-bafa-26d8b7b03bf3\",\r\n \"/subscriptions/2e354ed7-f5fd-4f99-b60f-a3ebd4482567\",\r\n \"/subscriptions/23348a16-94b6-485d-b6e0-cc2be5ceb7c9\",\r\n \"/subscriptions/e686ef8c-d35d-4e9b-92f8-caaaa7948c0a\",\r\n \"/subscriptions/18ea7af0-7b8f-4607-9d56-ed5f2199af9c\",\r\n \"/subscriptions/debf0b74-f38d-41ee-86d4-e32f5fe61a63\",\r\n \"/subscriptions/7ad2f9f6-d698-4555-b224-848d1b12bc70\",\r\n \"/subscriptions/d17aa664-a5af-4009-bf39-15a9d74694e2\",\r\n \"/subscriptions/30eec66c-faa0-4be5-9815-92ce84d823c4\",\r\n \"/subscriptions/f96af725-9b7a-430d-ba21-906d22261175\",\r\n \"/subscriptions/c6cd9b0a-c316-4077-abd5-35e5361c2d25\",\r\n \"/subscriptions/f7a2f965-1e92-42f9-86bc-8afc7cfed402\",\r\n \"/subscriptions/7fff4faf-711c-4f6f-93a1-6ef24ecb915f\",\r\n \"/subscriptions/184c7f6f-8b8d-41f0-af8b-7d70cc299b40\",\r\n \"/subscriptions/8060bce1-61d4-4ce6-b316-51c43345d07a\",\r\n \"/subscriptions/fd11355a-5c38-422b-8c1b-491ed835bd7d\",\r\n \"/subscriptions/918dbd49-004e-4237-88b8-970a7ab8d53b\",\r\n \"/subscriptions/6b2e18d1-b160-4a4e-a0b2-760f63bbeaa8\",\r\n \"/subscriptions/eeb71c0f-60e7-4af9-ad2f-fa74ada1d279\",\r\n \"/subscriptions/cfa70449-0aec-45b0-915d-05ff68a5a63a\",\r\n \"/subscriptions/e55faab3-5358-42f3-afc9-a5815d1f6dca\",\r\n \"/subscriptions/44584d97-85d5-4af6-af56-863d8ec5d981\",\r\n \"/subscriptions/9ccd8655-d203-48ef-addc-9aab55c1b516\",\r\n \"/subscriptions/1847007c-c1ee-437b-af15-6869df00d323\",\r\n \"/subscriptions/397c73c7-9504-4ac4-8671-63f567f82e54\",\r\n \"/subscriptions/34f53a1e-f24b-4069-a167-9f6e4dc4715a\",\r\n \"/subscriptions/df8ac0d4-fd78-4e33-b6db-4126b76f626e\",\r\n \"/subscriptions/7c2160d2-b265-477e-acae-cbcdf008528a\",\r\n \"/subscriptions/519b6516-fe76-49a1-8a1c-b6dc63ebe012\",\r\n \"/subscriptions/2921416e-8678-4d32-8fc0-02c1e36697a2\",\r\n \"/subscriptions/c90ab9b7-a529-47b0-bf8d-6a3676a8727c\",\r\n \"/subscriptions/0f2d4cb6-5ca5-425d-a60f-fa487d6e7a8e\",\r\n \"/subscriptions/c0cae64b-2a9a-4a29-802b-9e1fc9fd6482\",\r\n \"/subscriptions/53798337-4f7f-4b86-b33f-2ea699666b0e\",\r\n \"/subscriptions/1446ad93-18a8-40df-b2e3-ef04297f662c\",\r\n \"/subscriptions/d0953f3b-0f15-4755-b9dd-1a679702bb4a\",\r\n \"/subscriptions/0e43670d-05fa-49a6-a4ec-6c1f2673efe5\",\r\n \"/subscriptions/5c932b4b-50e7-416e-ba6f-a3c30c9e2730\",\r\n \"/subscriptions/f8a339ea-4445-4d69-a4bb-b7c77c9db241\",\r\n \"/subscriptions/b743f137-ec35-4ed8-bc10-edb637a3b87f\",\r\n \"/subscriptions/7f07c257-21bf-4dab-929d-d22739d9a3ec\",\r\n \"/subscriptions/4ec686e9-8507-4a50-be69-d3e90bf423fb\",\r\n \"/subscriptions/548bffe6-fbcc-48bd-9f34-7d7968f59140\",\r\n \"/subscriptions/14434c47-bdca-4bff-a98a-336189c06690\",\r\n \"/subscriptions/ccac4546-73ed-4f42-9731-64ff08060127\",\r\n \"/subscriptions/3b23f3ff-7d37-49e9-b4f4-1f0c1f14be7e\",\r\n \"/subscriptions/be0e9258-c18d-4ef2-9b72-d33f43d2cf92\",\r\n \"/subscriptions/9e38c377-beba-4aa4-8f08-7ee4b7b26191\",\r\n \"/subscriptions/d2f24647-7b0c-401a-8912-612851a17bef\",\r\n \"/subscriptions/da6b0bc4-900f-4eda-a21a-a7b44b14e5d8\",\r\n \"/subscriptions/04986ebf-9772-4271-b6ba-6e0f4fa89502\",\r\n \"/subscriptions/84fce9fa-1670-4e69-bc1e-6a7119383e22\",\r\n \"/subscriptions/ee871f2d-ea93-4fbe-9539-82897678d04d\",\r\n \"/subscriptions/da037679-0834-4c6a-8e77-45dc31a00912\",\r\n \"/subscriptions/27118d59-7468-412f-b406-b47d5a77ab94\",\r\n \"/subscriptions/5ee06237-c46c-4942-b8a7-a9da7879b9e9\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/locks/*\",\r\n \"Microsoft.Authorization/roleDefinitions/*\",\r\n \"Microsoft.AnalysisServices/servers/*\",\r\n \"Microsoft.Compute/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.Resources/*\",\r\n \"Microsoft.Storage/*\",\r\n \"Microsoft.ContainerService/*\",\r\n \"Microsoft.ContainerRegistry/*\",\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.AzureStack/registrations/products/*/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.CognitiveServices/*\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Consumption/*\",\r\n \"Microsoft.CostManagement/*\",\r\n \"Microsoft.Advisor/*\",\r\n \"Microsoft.Databox/*\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.DataFactory/factories/*\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/ensureCurrentUserProfile/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.DevTestLab/labs/virtualmachines/listApplicableSchedules/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/getRdpFileContents/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.EventGrid/eventSubscriptions/*\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.AAD/*/read\",\r\n \"Microsoft.AAD/domainServices/*/read\",\r\n \"Microsoft.AAD/domainServices/oucontainer/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.LabServices/labAccounts/*/read\",\r\n \"Microsoft.LabServices/labAccounts/createLab/action\",\r\n \"Microsoft.LabServices/labAccounts/getRegionalAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getPricingAndAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getRestrictionsAndUsage/action\",\r\n \"*/read\",\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/customApis/*\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.AlertsManagement/alerts/*\",\r\n \"Microsoft.AlertsManagement/alertsSummary/*\",\r\n \"Microsoft.Insights/actiongroups/*\",\r\n \"Microsoft.Insights/activityLogAlerts/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/scheduledqueryrules/*\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\r\n \"Microsoft.AlertsManagement/actionRules/*\",\r\n \"Microsoft.AlertsManagement/smartGroups/*\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Authorization/policysetdefinitions/*\",\r\n \"Microsoft.PolicyInsights/*\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationOperationStatus/read\",\r\n \"Microsoft.Network/networkSecurityGroups/*\",\r\n \"Microsoft.Network/routeTables/*\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/managedInstances/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/*\",\r\n \"Microsoft.Network/virtualNetworks/*\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.SqlVirtualMachine/*\",\r\n \"Microsoft.Web/serverFarms/*\",\r\n \"Microsoft.Web/hostingEnvironments/Join/Action\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/sites/*\",\r\n \"Microsoft.ServiceBus/*\",\r\n \"Microsoft.EventHub/*\",\r\n \"Microsoft.Attestation/attestationProviders/*\",\r\n \"Microsoft.HDInsight/*/read\",\r\n \"Microsoft.HDInsight/clusters/getGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/configurations/*\",\r\n \"Microsoft.Blueprint/blueprints/*\",\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/cases/*\",\r\n \"Microsoft.SecurityInsights/incidents/*\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.SignalRService/*\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.Solutions/applications/*\",\r\n \"Microsoft.Solutions/register/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*\",\r\n \"Microsoft.Marketplace/privateStores/write\",\r\n \"Microsoft.Marketplace/privateStores/action\",\r\n \"Microsoft.Marketplace/privateStores/delete\",\r\n \"Microsoft.Marketplace/privateStores/offers/write\",\r\n \"Microsoft.Marketplace/privateStores/offers/action\",\r\n \"Microsoft.Marketplace/privateStores/offers/delete\",\r\n \"Microsoft.ContainerService/managedClusters/read\",\r\n \"Microsoft.ContainerService/managedClusters/write\",\r\n \"Microsoft.Synapse/*\",\r\n \"Microsoft.Databricks/*\",\r\n \"Microsoft.AppConfiguration/*\",\r\n \"Microsoft.Portal/dashboards/*\",\r\n \"Microsoft.Insights/autoscalesettings/write\",\r\n \"Microsoft.Security/locations/jitNetworkAccessPolicies/initiate/action\",\r\n \"Microsoft.Security/locations/jitNetworkAccessPolicies/*/read\",\r\n \"Microsoft.Security/pricings/read\",\r\n \"Microsoft.Security/policies/read\",\r\n \"Microsoft.Batch/*\",\r\n \"Microsoft.MachineLearningServices/*\",\r\n \"Microsoft.Workloads/monitors/read\",\r\n \"Microsoft.Workloads/monitors/alerts/read\",\r\n \"Microsoft.Workloads/monitors/providerInstances/read\",\r\n \"Microsoft.Workloads/monitors/sapLandscapeMonitor/read\",\r\n \"Microsoft.Workloads/monitors/alertTemplates/read\",\r\n \"Microsoft.Workloads/connectors/sapVirtualInstanceMonitors/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-03T09:24:15.9792407Z\",\r\n \"updatedOn\": \"2025-01-14T19:34:28.859376Z\",\r\n \"createdBy\": \"6c97c2ad-503e-493a-8f41-7b4241e12cfe\",\r\n \"updatedBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2887825c-f6a0-4826-b855-e3ba7d5ebb16\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2887825c-f6a0-4826-b855-e3ba7d5ebb16\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrPush\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr push\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\",\r\n \"Microsoft.ContainerRegistry/registries/push/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-29T17:52:32.5201177Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:07.4993029Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8311e382-0749-4cb8-b61a-304f252e45ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8650193Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:08.3179618Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrPull\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr pull\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-22T19:01:56.8227182Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:08.8779328Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f951dda-4ed3-4680-a7ca-43fe172d538d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrImageSigner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr image signer\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/sign/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/trustedCollections/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-15T23:23:08.4038322Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:09.6070759Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6cef56e8-d556-48e5-a04f-b8e64114680f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6cef56e8-d556-48e5-a04f-b8e64114680f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrDelete\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr delete\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/artifacts/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-11T20:19:31.6682804Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:09.9631744Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c2f4ef07-c644-48eb-af81-4b1b4947fb11\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrQuarantineReader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr quarantine data reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantine/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-16T00:27:39.9596835Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:10.3188052Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cdda3590-29a3-44f6-95f2-9f980659eb04\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cdda3590-29a3-44f6-95f2-9f980659eb04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrQuarantineWriter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr quarantine data writer\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantine/read\",\r\n \"Microsoft.ContainerRegistry/registries/quarantine/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/read\",\r\n \"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-16T00:26:37.587182Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:11.3488079Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c8d4ff99-41c3-41a8-9f60-21dfdad59608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c8d4ff99-41c3-41a8-9f60-21dfdad59608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:11.5244023Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:11.8704466Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/generateLiveToken/read\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/scheduledqueryrules/*\",\r\n \"Microsoft.Insights/topology/read\",\r\n \"Microsoft.Insights/transactions/read\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:12.6428401Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:13.0034435Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Attestation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read the attestation provider properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\",\r\n \"Microsoft.Attestation/attestationProviders/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-25T19:42:59.157671Z\",\r\n \"updatedOn\": \"2024-07-12T17:55:22.4994343Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"SYSTEM\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd1bd22b-8476-40bc-a0bc-69b95687b9f3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd1bd22b-8476-40bc-a0bc-69b95687b9f3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobs/output/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:13.706566Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:13.8815461Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/linkedWorkspace/read\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Automation/automationAccounts/jobs/output/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:14.0515408Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can create and manage an Avere vFXT cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/proximityPlacementGroups/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/disks/*\",\r\n \"Microsoft.Network/*/read\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/*/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-18T20:00:58.9207889Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:14.2265665Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4f8fab4f-1852-4a58-a46a-8eaf358af14a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4f8fab4f-1852-4a58-a46a-8eaf358af14a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Used by the Avere vFXT cluster to manage the cluster\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-18T20:02:38.3399857Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:15.1065886Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster Admin Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster admin credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterAdminCredential/action\",\r\n \"Microsoft.ContainerService/managedClusters/accessProfiles/listCredential/action\",\r\n \"Microsoft.ContainerService/managedClusters/read\",\r\n \"Microsoft.ContainerService/managedClusters/runcommand/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-15T21:38:18.5953853Z\",\r\n \"updatedOn\": \"2022-05-17T03:53:30.0905246Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster user credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\",\r\n \"Microsoft.ContainerService/managedClusters/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-15T22:04:53.4037241Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:20.4351976Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4abbcc35-e782-43d8-92c5-2d3f1bd2253f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4abbcc35-e782-43d8-92c5-2d3f1bd2253f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read map related data from an Azure maps account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-05T19:47:03.472307Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:20.9582685Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/edgeSubscriptions/read\",\r\n \"Microsoft.AzureStack/registrations/products/*/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:23.295782Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backups, but can't delete vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/vaults/operationResults/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.DataProtection/locations/getBackupStatus/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/delete\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/deletedBackupInstances/undelete/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/crossRegionRestore/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/validateCrossRegionRestore/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJobs/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJob/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchSecondaryRecoveryPoints/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/delete\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/write\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/backupVaults/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/operationStatus/read\",\r\n \"Microsoft.DataProtection/locations/checkNameAvailability/action\",\r\n \"Microsoft.DataProtection/locations/checkFeatureSupport/action\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/locations/operationStatus/read\",\r\n \"Microsoft.DataProtection/locations/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\r\n \"Microsoft.DataProtection/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/delete\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/unlockDelete/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/unlockDelete/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/validateForModifyBackup/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/SuspendBackups/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2025-01-28T16:08:58.1344364Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:24.5342563Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrJobs/action\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrJob/action\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrOperationResults/read\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrOperationsStatus/read\",\r\n \"Microsoft.DataProtection/locations/getBackupStatus/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/backupVaults/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/operationStatus/read\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/locations/operationStatus/read\",\r\n \"Microsoft.DataProtection/locations/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\r\n \"Microsoft.DataProtection/operations/read\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJobs/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJob/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchSecondaryRecoveryPoints/action\",\r\n \"Microsoft.DataProtection/locations/checkFeatureSupport/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2024-05-02T15:31:35.9703937Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blockchain Member Node Access (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for access to Blockchain Member nodes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Blockchain/blockchainMembers/transactionNodes/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Blockchain/blockchainMembers/transactionNodes/connect/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T10:33:01.9604839Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:25.055892Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/31a002a1-acaf-453e-8a5b-297c9ca1ea24\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"31a002a1-acaf-453e-8a5b-297c9ca1ea24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:25.2359269Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can't grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2023-12-08T08:08:47.9865402Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN and Azure Front Door standard and premium profiles and their endpoints, but can't grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2023-12-07T16:26:04.2259189Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can't make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Cdn/profiles/afdendpoints/validateCustomDomain/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Cdn/profiles/CheckResourceUsage/action\",\r\n \"Microsoft.Cdn/profiles/endpoints/CheckResourceUsage/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2024-01-29T16:00:37.3526635Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:26.4433301Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:26.6183566Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:26.9796021Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:27.1646373Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-04-25T00:37:56.5416086Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:27.3446332Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and list keys of Cognitive Services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/listkeys/action\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-08T23:23:43.7701274Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:27.5316443Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a97b65f3-24c7-4388-baec-2e87135dc908\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read Cognitive Services data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-13T20:02:12.6849986Z\",\r\n \"updatedOn\": \"2024-10-11T18:50:23.3642018Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b59867f0-fa02-499b-be73-45a86b5b3e1c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b59867f0-fa02-499b-be73-45a86b5b3e1c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create, read, update, delete and manage keys of Cognitive Services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.CognitiveServices/*\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/providers/features/register/action\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-08T23:18:39.2257848Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:27.911623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CosmosBackupOperator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can submit restore request for a Cosmos DB database or a container for an account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/backup/action\",\r\n \"Microsoft.DocumentDB/databaseAccounts/restore/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-07T19:47:14.965156Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:28.4333692Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/db7b14f2-5adf-42da-9f96-f2ee17bab5cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db7b14f2-5adf-42da-9f96-f2ee17bab5cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all resources, but does not allow you to assign roles in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\",\r\n \"Microsoft.Compute/galleries/share/action\",\r\n \"Microsoft.Purview/consents/write\",\r\n \"Microsoft.Purview/consents/delete\",\r\n \"Microsoft.Resources/deploymentStacks/manageDenySetting/action\",\r\n \"Microsoft.Subscription/cancel/action\",\r\n \"Microsoft.Subscription/enable/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2024-11-20T20:16:17.1646587Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Insights/MetricDefinitions/read\",\r\n \"Microsoft.Insights/Metrics/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:28.7911765Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cost Management Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view costs and manage cost configuration (e.g. budgets, exports)\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Consumption/*\",\r\n \"Microsoft.CostManagement/*\",\r\n \"Microsoft.Billing/billingPeriods/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Billing/billingProperty/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-14T16:09:22.8834827Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:29.4851851Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"434105ed-43f6-45c7-a02f-909b2ba83430\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cost Management Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view cost data and configuration (e.g. budgets, exports)\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Billing/billingPeriods/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Billing/billingProperty/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-14T16:09:22.8834827Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:29.66018Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/72fafb9e-0641-4937-9268-a91bfd8191a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"72fafb9e-0641-4937-9268-a91bfd8191a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Box Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything under Data Box Service except giving access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Databox/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T08:28:42.714021Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:30.3737856Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/add466c9-e687-43fc-8d98-dfcf8d720be5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"add466c9-e687-43fc-8d98-dfcf8d720be5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Box Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Data Box Service except creating order or editing order details and giving access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Databox/*/read\",\r\n \"Microsoft.Databox/jobs/listsecrets/action\",\r\n \"Microsoft.Databox/jobs/listcredentials/action\",\r\n \"Microsoft.Databox/locations/availableSkus/action\",\r\n \"Microsoft.Databox/locations/validateInputs/action\",\r\n \"Microsoft.Databox/locations/regionConfiguration/action\",\r\n \"Microsoft.Databox/locations/validateAddress/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T08:26:21.9284772Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:30.5546117Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.DataFactory/factories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:30.7420174Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Purger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can purge analytics data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Insights/components/purge/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/purge/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-04-30T22:39:49.61677Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:31.2788395Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/150f5e0c-0603-4f03-8c7f-cf70034c4e90\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"150f5e0c-0603-4f03-8c7f-cf70034c4e90\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:31.4688491Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/ensureCurrentUserProfile/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.DevTestLab/labs/virtualmachines/listApplicableSchedules/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/getRdpFileContents/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:32.1746507Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:32.3496502Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:32.5233957Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid EventSubscription Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage EventGrid event subscription operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/*\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-08T23:27:28.3130743Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:33.4166738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/428e0ff0-5e57-4d9c-a221-2c70d0e0a443\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"428e0ff0-5e57-4d9c-a221-2c70d0e0a443\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid EventSubscription Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read EventGrid event subscriptions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-09T17:29:28.1417894Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:33.7846748Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2414bbcf-6497-4faf-8c65-045460748405\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2414bbcf-6497-4faf-8c65-045460748405\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Graph Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage all aspects of the Enterprise Graph - Ontology, Schema mapping, Conflation and Conversational AI and Ingestions\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/conflation/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/conflation/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ontology/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ontology/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/delete\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-23T21:07:22.5844236Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:34.6707886Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b60367af-1334-4454-b71e-769d9a4f83d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b60367af-1334-4454-b71e-769d9a4f83d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Domain Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Read, Create, Modify and Delete Domain Services related operations needed for HDInsight Enterprise Security Package\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AAD/*/read\",\r\n \"Microsoft.AAD/domainServices/*/read\",\r\n \"Microsoft.AAD/domainServices/oucontainer/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-12T22:42:51.7451109Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:35.3921342Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8d8d5a11-05d3-4bda-a417-a08778121c7c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d8d5a11-05d3-4bda-a417-a08778121c7c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:35.9371582Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\",\r\n \"Microsoft.KeyVault/hsmPools/*\",\r\n \"Microsoft.KeyVault/managedHsms/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-25T17:08:28.5184971Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:36.1170988Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Knowledge Consumer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Knowledge Read permission to consume Enterprise Graph Knowledge using entity search and graph query\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-23T21:23:31.4037552Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:37.0021342Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ee361c5d-f7b5-4119-b4b6-892157c8f64c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee361c5d-f7b5-4119-b4b6-892157c8f64c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Creator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create new labs under your Azure Lab Accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.LabServices/labAccounts/*/read\",\r\n \"Microsoft.LabServices/labAccounts/createLab/action\",\r\n \"Microsoft.LabServices/labAccounts/getPricingAndAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getRestrictionsAndUsage/action\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.LabServices/labPlans/images/read\",\r\n \"Microsoft.LabServices/labPlans/read\",\r\n \"Microsoft.LabServices/labPlans/saveImage/action\",\r\n \"Microsoft.LabServices/labs/read\",\r\n \"Microsoft.LabServices/labs/schedules/read\",\r\n \"Microsoft.LabServices/labs/users/read\",\r\n \"Microsoft.LabServices/labs/virtualMachines/read\",\r\n \"Microsoft.LabServices/locations/usages/read\",\r\n \"Microsoft.LabServices/skus/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.LabServices/labPlans/createLab/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-01-18T23:38:58.1036141Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:37.1821588Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:37.7071371Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:37.8823618Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/metricAlerts/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/customApis/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:38.0573444Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/customApis/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:38.2523833Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Application Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and perform actions on Managed Application resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Solutions/applications/read\",\r\n \"Microsoft.Solutions/*/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T00:59:33.7988813Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:38.5973763Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7393b34-138c-406f-901b-d8cf2b17e6ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Applications Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read resources in a managed app and request JIT access.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Solutions/jitRequests/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-06T00:33:58.3651522Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:38.7723523Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b9331d33-8a36-4f8c-b097-4f54124fdb44\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b9331d33-8a36-4f8c-b097-4f54124fdb44\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Identity Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and Assign User Assigned Identity\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-14T19:52:04.3924594Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:38.9523759Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f1a07417-d97a-45cb-824c-7a7467783830\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Identity Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, Read, Update, and Delete User Assigned Identity\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/delete\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/revokeTokens/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-14T19:53:42.8804692Z\",\r\n \"updatedOn\": \"2024-04-01T15:29:15.7643919Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Management Group Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Management Group Contributor Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/delete\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/delete\",\r\n \"Microsoft.Management/managementGroups/subscriptions/write\",\r\n \"Microsoft.Management/managementGroups/write\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-06-22T00:28:29.0523964Z\",\r\n \"updatedOn\": \"2022-09-19T17:12:03.7729883Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Management Group Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Management Group Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-06-22T00:31:03.4295347Z\",\r\n \"updatedOn\": \"2022-09-19T17:12:03.7729883Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ac63b705-f282-497d-ac71-919bf39d939d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ac63b705-f282-497d-ac71-919bf39d939d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2022-09-06T19:22:59.9084089Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:44.6328966Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:45.7178576Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all resources, including the ability to assign roles in Azure RBAC.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:45.8978856Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View all resources, but does not allow you to make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:47.8628684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/register/action\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:48.0528671Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader and Data Access\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything but will not let you delete or create a storage account or contained resource. It will also allow read/write access to all data contained in a storage account via access to storage account keys.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/ListAccountSas/action\",\r\n \"Microsoft.Storage/storageAccounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-27T23:20:46.1498906Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:48.2278951Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c12c1c16-33a1-487b-954d-41c89c60f349\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c12c1c16-33a1-487b-954d-41c89c60f349\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Users with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Authorization/policyexemptions/*\",\r\n \"Microsoft.Authorization/policysetdefinitions/*\",\r\n \"Microsoft.PolicyInsights/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2023-05-17T15:23:09.911944Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:49.8429293Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:50.0229309Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager (Legacy)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This is a legacy role. Please use Security Administrator instead\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:50.5729549Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.IoTSecurity/*/read\",\r\n \"Microsoft.Support/*/read\",\r\n \"Microsoft.Security/iotDefenderSettings/packageDownloads/action\",\r\n \"Microsoft.Security/iotDefenderSettings/downloadManagerActivation/action\",\r\n \"Microsoft.Security/iotSensors/downloadResetPassword/action\",\r\n \"Microsoft.IoTSecurity/defenderSettings/packageDownloads/action\",\r\n \"Microsoft.IoTSecurity/defenderSettings/downloadManagerActivation/action\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:50.7479015Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage spatial anchors in your account, but not delete them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:41.1420864Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:52.28294Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery service except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationVaultSettings/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationOperationStatus/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:52.4579503Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/switchprotection/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationVaultSettings/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:52.6263418Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you locate and read properties of spatial anchors in your account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:42.9271004Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:52.8013467Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d51204f-eb77-4b1c-b86a-2ec626c49413\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d51204f-eb77-4b1c-b86a-2ec626c49413\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationVaultSettings/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:52.9763366Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage spatial anchors in your account, including deleting them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/delete\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:43.5489832Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:53.166325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/70bbe301-9835-447d-afdd-19eb3167307c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70bbe301-9835-447d-afdd-19eb3167307c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Managed Instance Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL Managed Instances and required network configuration, but can’t give access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/*\",\r\n \"Microsoft.Network/routeTables/*\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/locations/instanceFailoverGroups/*\",\r\n \"Microsoft.Sql/managedInstances/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/*\",\r\n \"Microsoft.Network/virtualNetworks/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/delete\",\r\n \"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-10T22:57:14.2937983Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:53.3513507Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/ledgerDigestUploads/write\",\r\n \"Microsoft.Sql/servers/databases/ledgerDigestUploads/disable/action\",\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:53.5363219Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/administratorAzureAsyncOperation/read\",\r\n \"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/servers/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/transparentDataEncryption/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/serverConfigurationOptions/read\",\r\n \"Microsoft.Sql/managedInstances/serverConfigurationOptions/write\",\r\n \"Microsoft.Sql/locations/serverConfigurationOptionAzureAsyncOperation/read\",\r\n \"Microsoft.Sql/servers/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/servers/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/extendedAuditingSettings/read\",\r\n \"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/read\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/transparentDataEncryption/*\",\r\n \"Microsoft.Sql/servers/databases/sqlvulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/devOpsAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/sqlvulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Sql/servers/azureADOnlyAuthentications/*\",\r\n \"Microsoft.Sql/managedInstances/read\",\r\n \"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/*\",\r\n \"Microsoft.Security/sqlVulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/administrators/read\",\r\n \"Microsoft.Sql/servers/administrators/read\",\r\n \"Microsoft.Sql/servers/databases/ledgerDigestUploads/*\",\r\n \"Microsoft.Sql/locations/ledgerDigestUploadsAzureAsyncOperation/read\",\r\n \"Microsoft.Sql/locations/ledgerDigestUploadsOperationResults/read\",\r\n \"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-16T18:44:40.4607572Z\",\r\n \"updatedOn\": \"2023-03-03T16:46:08.5009876Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, including accessing storage account keys which provide full access to storage account data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:54.2363539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/devOpsAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/azureADOnlyAuthentications/delete\",\r\n \"Microsoft.Sql/servers/azureADOnlyAuthentications/write\",\r\n \"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/delete\",\r\n \"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2022-04-29T01:12:26.9132276Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:54.7697481Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write and delete access to Azure Storage blob containers and data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/move/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:54.9397456Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ba92f5b4-2d11-453d-a403-e96b0029c9fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Storage blob containers and data, including assigning POSIX access control.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/*\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-04T07:02:58.2775257Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:55.1225062Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b7e6dc6d-f1e8-4753-8033-0f276bb0955b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage blob containers and data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:55.2975076Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access to Azure Storage queues and queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/delete\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/delete\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/write\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:55.4725469Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"974c5e8b-45b9-4653-ba55-5f855dd0fb88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Message Processor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for peek, receive, and delete access to Azure Storage queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-01-28T22:27:04.8947111Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:55.6575408Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8a0f0c08-91a1-4084-bc3d-661d67233fed\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8a0f0c08-91a1-4084-bc3d-661d67233fed\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Message Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for sending of Azure Storage queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/add/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-01-28T22:28:34.7459724Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:55.8325508Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage queues and queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:56.0178497Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/19e7f393-937e-4f77-808e-94535e297925\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19e7f393-937e-4f77-808e-94535e297925\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:56.7444481Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:57.2744497Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:57.7932023Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they're connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.Compute/cloudServices/*\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/hostgroups/write\",\r\n \"Microsoft.Compute/hostgroups/hosts/write\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.SerialConsole/serialPorts/connect/action\",\r\n \"Microsoft.SqlVirtualMachine/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2025-02-07T01:41:33.5037612Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\",\r\n \"Microsoft.Web/hostingEnvironments/Join/Action\",\r\n \"Microsoft.Insights/autoscalesettings/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2022-09-05T17:12:49.4643439Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/register/action\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-05-12T23:10:23.6193952Z\",\r\n \"updatedOn\": \"2024-08-06T15:15:41.2486928Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-16T21:33:36.7445745Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:59.2005807Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c5cfd-751d-490a-894a-3ce6f1109419\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-16T21:34:29.8656362Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:59.3721538Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f526a384-b230-433a-b45c-95f59c4a2dec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f526a384-b230-433a-b45c-95f59c4a2dec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Attestation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read write or delete the attestation provider instance\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/write\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-19T00:24:09.3354177Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:59.7271218Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Cluster Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and modify HDInsight cluster configurations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HDInsight/*/read\",\r\n \"Microsoft.HDInsight/clusters/getGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/configurations/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-20T00:03:01.7110732Z\",\r\n \"updatedOn\": \"2021-11-11T20:13:59.905218Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/61ed4efc-fab3-44fd-b111-e24485cc132a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"61ed4efc-fab3-44fd-b111-e24485cc132a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Cosmos DB accounts, but not access data in them. Prevents access to account keys and connection strings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlyKeys/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/regenerateKey/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listKeys/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listConnectionStrings/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/delete\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments/delete\",\r\n \"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions/delete\",\r\n \"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-26T17:01:17.0169383Z\",\r\n \"updatedOn\": \"2024-01-11T16:37:07.4446986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"230815da-be43-4aae-9cb4-875f7bd000aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hybrid Server Resource Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, write, delete, and re-onboard Hybrid servers to the Hybrid Resource Provider.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/*\",\r\n \"Microsoft.HybridCompute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-29T21:39:32.3132923Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:00.2548257Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/48b40c6e-82e0-4eb3-90d5-19e40f49b624\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48b40c6e-82e0-4eb3-90d5-19e40f49b624\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hybrid Server Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can onboard new Hybrid servers to the Hybrid Resource Provider.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-29T22:36:28.1873756Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:00.4308999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows receive access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*/eventhubs/consumergroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:25:21.1056666Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:01.3225169Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a638d3c7-ab3a-418d-83e6-5f17a39d4fde\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a638d3c7-ab3a-418d-83e6-5f17a39d4fde\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows send access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*/eventhubs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:26:12.4673714Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:01.4925583Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2b629674-e913-4c01-ae53-ef4638d8f975\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for receive access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*/queues/read\",\r\n \"Microsoft.ServiceBus/*/topics/read\",\r\n \"Microsoft.ServiceBus/*/topics/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:43:01.6343849Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:01.6629685Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for send access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*/queues/read\",\r\n \"Microsoft.ServiceBus/*/topics/read\",\r\n \"Microsoft.ServiceBus/*/topics/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:43:46.7046934Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:01.8479199Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure File Share over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-01T20:19:31.8620471Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:04.3642909Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/aba4ae5f-2193-4029-9191-0cb91df5e314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"aba4ae5f-2193-4029-9191-0cb91df5e314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access in Azure Storage file shares over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-01T20:54:35.483431Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:04.5443323Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Private DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage private DNS zone resources, but not the virtual networks they are linked to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/privateDnsZones/*\",\r\n \"Microsoft.Network/privateDnsOperationResults/*\",\r\n \"Microsoft.Network/privateDnsOperationStatuses/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-10T19:31:15.5645518Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:04.7342851Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b12aa53e-6015-4669-85d0-8515ebb3ae7f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Delegator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for generation of a user delegation key which can be used to sign SAS tokens\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-23T00:51:16.3376761Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:05.4321714Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/db58b8e5-c6ad-4a2a-8342-4190687cbf4a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db58b8e5-c6ad-4a2a-8342-4190687cbf4a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user to use the applications in an application group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DesktopVirtualization/applicationGroups/useApplications/action\",\r\n \"Microsoft.DesktopVirtualization/appAttachPackages/useApplications/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-07T00:29:03.8727621Z\",\r\n \"updatedOn\": \"2023-06-19T15:07:13.5369989Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Elevated Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, delete and modify NTFS permission access in Azure Storage file shares over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-07T01:35:36.9935457Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:06.1571744Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a7264617-510b-434b-a828-9731dc254ea7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7264617-510b-434b-a828-9731dc254ea7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blueprint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage blueprint definitions, but not assign them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Blueprint/blueprints/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-14T21:55:16.9683949Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:06.5171828Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/41077137-e803-4205-871c-5a86e6a753b4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41077137-e803-4205-871c-5a86e6a753b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blueprint Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can assign existing published blueprints, but cannot create new blueprints. NOTE: this only works if the assignment is done with a user-assigned managed identity.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Blueprint/blueprintAssignments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-14T21:56:48.7897875Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:06.6971401Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/437d2ced-4a38-4302-8479-ed2bcb43d090\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"437d2ced-4a38-4302-8479-ed2bcb43d090\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Sentinel Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft Sentinel Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.OperationalInsights/querypacks/*/read\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.Insights/myworkbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\r\n \"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:39:03.8725173Z\",\r\n \"updatedOn\": \"2022-08-02T00:12:09.1707121Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ab8e14d6-4a74-4a29-9ba8-549422addade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Sentinel Responder\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft Sentinel Responder\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\r\n \"Microsoft.SecurityInsights/automationRules/*\",\r\n \"Microsoft.SecurityInsights/cases/*\",\r\n \"Microsoft.SecurityInsights/incidents/*\",\r\n \"Microsoft.SecurityInsights/entities/runPlaybook/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/bulkTag/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/indicators/replaceTags/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/systems/undoAction/action\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.OperationalInsights/querypacks/*/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Insights/myworkbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.SecurityInsights/cases/*/Delete\",\r\n \"Microsoft.SecurityInsights/incidents/*/Delete\",\r\n \"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\r\n \"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:54:07.6467264Z\",\r\n \"updatedOn\": \"2024-04-04T15:52:09.7970103Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Sentinel Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft Sentinel Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\r\n \"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/LinkedServices/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/querypacks/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Insights/myworkbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/templateSpecs/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\r\n \"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:58:50.1132117Z\",\r\n \"updatedOn\": \"2022-08-02T00:12:09.1707121Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Policy Insights Data Writer (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to resource policies and write access to resource component policy events.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/policyassignments/read\",\r\n \"Microsoft.Authorization/policydefinitions/read\",\r\n \"Microsoft.Authorization/policyexemptions/read\",\r\n \"Microsoft.Authorization/policysetdefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.PolicyInsights/checkDataPolicyCompliance/action\",\r\n \"Microsoft.PolicyInsights/policyEvents/logDataEvents/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-19T19:35:20.9504127Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:09.4235132Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/66bb4e9e-b016-4a94-8249-4c0511c2be84\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"66bb4e9e-b016-4a94-8249-4c0511c2be84\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR AccessKey Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read SignalR Service Access Keys\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SignalRService/*/read\",\r\n \"Microsoft.SignalRService/SignalR/listkeys/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-20T09:33:19.6236874Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:09.613486Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/04165923-9d83-45d5-8227-78b77b0a687e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04165923-9d83-45d5-8227-78b77b0a687e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR/Web PubSub Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, Read, Update, and Delete SignalR service resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SignalRService/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-20T09:58:09.0009662Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:09.7884765Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can onboard Azure Connected Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/settings/read\",\r\n \"Microsoft.HybridCompute/settings/write\",\r\n \"Microsoft.HybridCompute/gateways/read\",\r\n \"Microsoft.HybridCompute/privateLinkScopes/read\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T20:15:07.137287Z\",\r\n \"updatedOn\": \"2025-02-03T16:08:25.0326897Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Services Registration assignment Delete Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Managed Services Registration Assignment Delete Role allows the managing tenant users to delete the registration assignment assigned to their tenant.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedServices/registrationAssignments/read\",\r\n \"Microsoft.ManagedServices/registrationAssignments/delete\",\r\n \"Microsoft.ManagedServices/operationStatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T22:33:33.1183469Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:11.23364Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/91c1777a-f3dc-4fae-b103-61d183457e46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"91c1777a-f3dc-4fae-b103-61d183457e46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows full access to App Configuration data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/write\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/delete\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/useSasAuth/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-25T18:41:40.1185063Z\",\r\n \"updatedOn\": \"2024-10-28T15:14:04.6443673Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to App Configuration data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-25T18:45:33.7975332Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:11.5885341Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"516239f1-63e1-4d78-a4de-a74fb236a071\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Cluster - Azure Arc Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role definition to authorize any user/service to create connectedClusters resource\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-11-18T17:00:02.2087147Z\",\r\n \"updatedOn\": \"2024-11-01T01:37:05.9804902Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/34e09817-6cbe-4d01-b1a2-e0eac5743d41\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"34e09817-6cbe-4d01-b1a2-e0eac5743d41\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-13T00:08:08.6679591Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:14.6454147Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a22b-edd6ce5c915c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services QnA Maker Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let’s you read and test a KB only.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-17T18:26:12.3329439Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:14.8254033Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/466ccd10-b268-4a11-b098-b4849f024126\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"466ccd10-b268-4a11-b098-b4849f024126\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services QnA Maker Editor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let’s you create, edit, import and export a KB. You cannot publish or delete a KB.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/operations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/operations/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/operations/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-17T18:27:30.6434556Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:14.9961559Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f4cc2bf9-21be-47a1-bdf1-5c5804381025\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f4cc2bf9-21be-47a1-bdf1-5c5804381025\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/admin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experimentadmin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/admin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/metricwrite/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/metricwrite/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-18T22:46:33.1116612Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:15.1811577Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a33b-edd6ce5c915c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Remote Rendering Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with conversion, manage session, rendering and diagnostics capabilities for Azure Remote Rendering\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-23T18:15:31.3450348Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:16.7621737Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3df8b902-2a6f-47c7-8cc5-360e9b272a7e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3df8b902-2a6f-47c7-8cc5-360e9b272a7e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Remote Rendering Client\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with manage session, rendering and diagnostics capabilities for Azure Remote Rendering.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-23T18:32:52.7069824Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:16.9421512Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d39065c4-c120-43c9-ab0a-63eed9795f0a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d39065c4-c120-43c9-ab0a-63eed9795f0a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Application Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for creating managed application resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Solutions/applications/*\",\r\n \"Microsoft.Solutions/register/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-08T03:39:11.8933879Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:19.1271536Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/641177b8-a67a-45b9-a033-47bc880bb21e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"641177b8-a67a-45b9-a033-47bc880bb21e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Assessment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you push assessments to Security Center\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Security/assessments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-13T08:23:47.7656161Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:19.3021974Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/612c2aa1-cb24-443b-ac28-3ab7272de6f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"612c2aa1-cb24-443b-ac28-3ab7272de6f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Tag Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage tags on entities, without providing access to the entities themselves.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/tags/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-18T23:19:19.2977644Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:20.0172041Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4a9ae827-6dc8-4573-8ac7-8239d42aa03f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Integration Service Environment Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows developers to create and update workflows, integration accounts and API connections in integration service environments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/read\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/*/join/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-20T21:09:00.5627875Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:20.1871986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Integration Service Environment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage integration service environments, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-20T21:10:44.4008319Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:20.3622058Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a41e2c5b-bd99-4a07-88f4-9bf657a760b8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a41e2c5b-bd99-4a07-88f4-9bf657a760b8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read and write Azure Kubernetes Service clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ContainerService/locations/*\",\r\n \"Microsoft.ContainerService/managedClusters/*\",\r\n \"Microsoft.ContainerService/managedclustersnapshots/*\",\r\n \"Microsoft.ContainerService/snapshots/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T19:27:15.073997Z\",\r\n \"updatedOn\": \"2024-06-26T15:35:04.3821443Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Digital Twins Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only role for Digital Twins data-plane properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DigitalTwins/digitaltwins/read\",\r\n \"Microsoft.DigitalTwins/digitaltwins/relationships/read\",\r\n \"Microsoft.DigitalTwins/eventroutes/read\",\r\n \"Microsoft.DigitalTwins/jobs/import/read\",\r\n \"Microsoft.DigitalTwins/jobs/imports/read\",\r\n \"Microsoft.DigitalTwins/jobs/deletions/read\",\r\n \"Microsoft.DigitalTwins/models/read\",\r\n \"Microsoft.DigitalTwins/query/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-10T23:48:14.7057381Z\",\r\n \"updatedOn\": \"2024-01-11T19:37:51.2477819Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d57506d4-4c8d-48b1-8587-93c323f6a5a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d57506d4-4c8d-48b1-8587-93c323f6a5a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Digital Twins Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access role for Digital Twins data-plane\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DigitalTwins/digitaltwins/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/commands/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\r\n \"Microsoft.DigitalTwins/eventroutes/*\",\r\n \"Microsoft.DigitalTwins/jobs/*\",\r\n \"Microsoft.DigitalTwins/models/*\",\r\n \"Microsoft.DigitalTwins/query/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-10T23:49:33.782193Z\",\r\n \"updatedOn\": \"2022-09-08T01:58:14.2969628Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bcd981a7-7f74-457b-83e1-cceb9e632ffe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bcd981a7-7f74-457b-83e1-cceb9e632ffe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hierarchy Settings Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows users to edit and delete Hierarchy Settings\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/settings/write\",\r\n \"Microsoft.Management/managementGroups/settings/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-13T23:55:11.0212387Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:23.0882347Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/350f8d15-c687-4448-8ae1-157740a3936d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"350f8d15-c687-4448-8ae1-157740a3936d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal full access to FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/*\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/smart/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/smart/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:35:04.4949547Z\",\r\n \"updatedOn\": \"2023-08-21T15:00:43.2797853Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5a1fc7df-4bf1-4951-a576-89034ee01acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5a1fc7df-4bf1-4951-a576-89034ee01acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Exporter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and export FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/export/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/export/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:45:01.9764073Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:23.7992557Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3db33094-8700-4567-8da5-1501d4e7e843\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3db33094-8700-4567-8da5-1501d4e7e843\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:49:04.8353499Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:23.9692275Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4c8d0bbc-75d3-4935-991f-5f3c56d81508\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4c8d0bbc-75d3-4935-991f-5f3c56d81508\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and write FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/write\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/delete\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/export/action\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/resourceValidate/action\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/reindex/action\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/convertData/action\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/editProfileDefinitions/action\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/import/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/write\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/delete\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/export/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/resourceValidate/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/reindex/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/convertData/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/editProfileDefinitions/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/import/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:55:35.2413335Z\",\r\n \"updatedOn\": \"2023-07-26T15:17:52.9401577Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3f88fce4-5892-4214-ae73-ba5294559913\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3f88fce4-5892-4214-ae73-ba5294559913\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-25T18:05:14.8375678Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:24.504239Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Object Understanding Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with ingestion capabilities for Azure Object Understanding.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/action\",\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-22T19:15:09.0697923Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:26.8743132Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4dd61c23-6743-42fe-a388-d8bdd41cb745\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4dd61c23-6743-42fe-a388-d8bdd41cb745\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read, write, and delete access to map related data from an Azure maps account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/*/read\",\r\n \"Microsoft.Maps/accounts/*/write\",\r\n \"Microsoft.Maps/accounts/*/delete\",\r\n \"Microsoft.Maps/accounts/*/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-07T20:55:05.064541Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:28.3092598Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to the project, including the ability to view, create, edit, or delete projects.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-08T23:47:07.0779345Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:28.8342655Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Deployment\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Publish, unpublish or export models. Deployment can view the project but can’t update.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/publish/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/export/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/quicktest/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/classify/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/detect/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:31:05.952862Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:29.0142669Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5c4089e1-6d96-4d2f-b296-c1bc7137275f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5c4089e1-6d96-4d2f-b296-c1bc7137275f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Labeler\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, edit training images and create, add, remove, or delete the image tags. Labelers can view the project but can’t update anything other than training images and tags.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/tags/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/suggested/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/tagsandregions/suggestions/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:33:20.8278896Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:29.1892871Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/88424f51-ebe7-446f-bc41-7fa16989e96c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"88424f51-ebe7-446f-bc41-7fa16989e96c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only actions in the project. Readers can’t create or update the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:34:18.5328818Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:29.3642707Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/93586559-c37d-4a6b-ba08-b9f0940c2d73\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93586559-c37d-4a6b-ba08-b9f0940c2d73\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Trainer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, edit projects and train the models, including the ability to publish, unpublish, export the models. Trainers can’t create or delete the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/delete\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/import/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:35:13.8147804Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:29.5442713Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Perform all data plane operations on a key vault and all objects in it, including certificates, keys, and secrets. Cannot manage key vault resources or manage role assignments. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:46.2349235Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:30.2542755Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00482a5a-887f-4fb3-b363-3b7fe8e74483\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Perform cryptographic operations using keys. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/update/action\",\r\n \"Microsoft.KeyVault/vaults/keys/backup/action\",\r\n \"Microsoft.KeyVault/vaults/keys/encrypt/action\",\r\n \"Microsoft.KeyVault/vaults/keys/decrypt/action\",\r\n \"Microsoft.KeyVault/vaults/keys/wrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/unwrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/sign/action\",\r\n \"Microsoft.KeyVault/vaults/keys/verify/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.0699268Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:30.6042921Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/12338af0-0e69-4776-bea7-57ae8d297424\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12338af0-0e69-4776-bea7-57ae8d297424\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Secrets Officer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Perform any action on the secrets of a key vault, except manage permissions. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.1449242Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:30.779347Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b86a8fe4-44ce-4948-aee5-eccb2c155cd7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Secrets User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read secret contents. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2049241Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:30.9542829Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4633458b-17de-408a-b874-0445c86b69e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4633458b-17de-408a-b874-0445c86b69e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Certificates Officer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Perform any action on the certificates of a key vault, except manage permissions. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/certificatecas/*\",\r\n \"Microsoft.KeyVault/vaults/certificates/*\",\r\n \"Microsoft.KeyVault/vaults/certificatecontacts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2499247Z\",\r\n \"updatedOn\": \"2023-06-12T15:03:21.0577597Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a4417e6f-fecd-4de8-b567-7b0420556985\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4417e6f-fecd-4de8-b567-7b0420556985\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read metadata of key vaults and its certificates, keys, and secrets. Cannot read sensitive values such as secret contents or key material. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2949294Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:31.3043292Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/21090545-7ca7-4776-b22c-e363652d74d2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"21090545-7ca7-4776-b22c-e363652d74d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Service Encryption User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read metadata of keys and perform wrap/unwrap operations. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventGrid/eventSubscriptions/write\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/wrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/unwrap/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-20T20:55:19.239847Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:31.8443056Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e147488a-f6f5-4113-8e2d-b22465e65bf6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Viewer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view all resources in cluster/namespace, except secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/deployments/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/replicasets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/batch/jobs/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/configmaps/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/endpoints/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/events/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/deployments/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/pods/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/serviceaccounts/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/services/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:51:12.8801199Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:33.8193353Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/63f0a09d-1495-4db4-a681-037d84835eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"63f0a09d-1495-4db4-a681-037d84835eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you update everything in cluster/namespace, except (cluster)roles and (cluster)role bindings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/deployments/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/replicasets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/batch/jobs/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/configmaps/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/endpoints/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/events/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/deployments/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/pods/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/secrets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/serviceaccounts/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/services/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:53:50.6749823Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:34.0043462Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5b999177-9696-4545-85c7-50de3797e5a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5b999177-9696-4545-85c7-50de3797e5a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources in the cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:55:30.9910462Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:34.1743694Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8393591c-06b9-48a2-a542-1bd6b377f6a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8393591c-06b9-48a2-a542-1bd6b377f6a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/deployments/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/replicasets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/authorization.k8s.io/localsubjectaccessreviews/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/batch/jobs/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/configmaps/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/endpoints/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/events/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/deployments/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/pods/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/rolebindings/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/roles/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/secrets/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/serviceaccounts/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/services/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:57:06.0391177Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:34.3593384Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dffb1e0c-446f-4dde-a09f-99eb5cc68b96\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dffb1e0c-446f-4dde-a09f-99eb5cc68b96\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources in the cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:47:24.4071415Z\",\r\n \"updatedOn\": \"2022-10-13T03:34:52.0122969Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/delete\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/write\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:50:30.4020311Z\",\r\n \"updatedOn\": \"2023-05-09T20:10:39.0962004Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3498e952-d568-435e-9b2c-8d77e338d7f7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3498e952-d568-435e-9b2c-8d77e338d7f7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read-only access to see most objects in a namespace. It does not allow viewing roles or role bindings. This role does not allow viewing Secrets, since reading the contents of Secrets enables access to ServiceAccount credentials in the namespace, which would allow API access as any ServiceAccount in the namespace (a form of privilege escalation). Applying this role at cluster scope will give access across all namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/managedClusters/apps/daemonsets/read\",\r\n \"Microsoft.ContainerService/managedClusters/apps/deployments/read\",\r\n \"Microsoft.ContainerService/managedClusters/apps/replicasets/read\",\r\n \"Microsoft.ContainerService/managedClusters/apps/statefulsets/read\",\r\n \"Microsoft.ContainerService/managedClusters/autoscaling/horizontalpodautoscalers/read\",\r\n \"Microsoft.ContainerService/managedClusters/batch/cronjobs/read\",\r\n \"Microsoft.ContainerService/managedClusters/batch/jobs/read\",\r\n \"Microsoft.ContainerService/managedClusters/configmaps/read\",\r\n \"Microsoft.ContainerService/managedClusters/discovery.k8s.io/endpointslices/read\",\r\n \"Microsoft.ContainerService/managedClusters/endpoints/read\",\r\n \"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/managedClusters/events/read\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/daemonsets/read\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/deployments/read\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/ingresses/read\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/networkpolicies/read\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/replicasets/read\",\r\n \"Microsoft.ContainerService/managedClusters/limitranges/read\",\r\n \"Microsoft.ContainerService/managedClusters/metrics.k8s.io/pods/read\",\r\n \"Microsoft.ContainerService/managedClusters/metrics.k8s.io/nodes/read\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/read\",\r\n \"Microsoft.ContainerService/managedClusters/networking.k8s.io/ingresses/read\",\r\n \"Microsoft.ContainerService/managedClusters/networking.k8s.io/networkpolicies/read\",\r\n \"Microsoft.ContainerService/managedClusters/persistentvolumeclaims/read\",\r\n \"Microsoft.ContainerService/managedClusters/pods/read\",\r\n \"Microsoft.ContainerService/managedClusters/policy/poddisruptionbudgets/read\",\r\n \"Microsoft.ContainerService/managedClusters/replicationcontrollers/read\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/read\",\r\n \"Microsoft.ContainerService/managedClusters/serviceaccounts/read\",\r\n \"Microsoft.ContainerService/managedClusters/services/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:53:05.5728294Z\",\r\n \"updatedOn\": \"2023-04-25T15:13:23.734882Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f6c6a51-bcf8-42ba-9220-52d62157d7db\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read/write access to most objects in a namespace.This role does not allow viewing or modifying roles or role bindings. However, this role allows accessing Secrets and running Pods as any ServiceAccount in the namespace, so it can be used to gain the API access levels of any ServiceAccount in the namespace. Applying this role at cluster scope will give access across all namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/managedClusters/apps/daemonsets/*\",\r\n \"Microsoft.ContainerService/managedClusters/apps/deployments/*\",\r\n \"Microsoft.ContainerService/managedClusters/apps/replicasets/*\",\r\n \"Microsoft.ContainerService/managedClusters/apps/statefulsets/*\",\r\n \"Microsoft.ContainerService/managedClusters/autoscaling/horizontalpodautoscalers/*\",\r\n \"Microsoft.ContainerService/managedClusters/batch/cronjobs/*\",\r\n \"Microsoft.ContainerService/managedClusters/coordination.k8s.io/leases/read\",\r\n \"Microsoft.ContainerService/managedClusters/coordination.k8s.io/leases/write\",\r\n \"Microsoft.ContainerService/managedClusters/coordination.k8s.io/leases/delete\",\r\n \"Microsoft.ContainerService/managedClusters/discovery.k8s.io/endpointslices/read\",\r\n \"Microsoft.ContainerService/managedClusters/batch/jobs/*\",\r\n \"Microsoft.ContainerService/managedClusters/configmaps/*\",\r\n \"Microsoft.ContainerService/managedClusters/endpoints/*\",\r\n \"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/managedClusters/events/*\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/daemonsets/*\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/deployments/*\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/ingresses/*\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/networkpolicies/*\",\r\n \"Microsoft.ContainerService/managedClusters/extensions/replicasets/*\",\r\n \"Microsoft.ContainerService/managedClusters/limitranges/read\",\r\n \"Microsoft.ContainerService/managedClusters/metrics.k8s.io/pods/read\",\r\n \"Microsoft.ContainerService/managedClusters/metrics.k8s.io/nodes/read\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/read\",\r\n \"Microsoft.ContainerService/managedClusters/networking.k8s.io/ingresses/*\",\r\n \"Microsoft.ContainerService/managedClusters/networking.k8s.io/networkpolicies/*\",\r\n \"Microsoft.ContainerService/managedClusters/persistentvolumeclaims/*\",\r\n \"Microsoft.ContainerService/managedClusters/pods/*\",\r\n \"Microsoft.ContainerService/managedClusters/policy/poddisruptionbudgets/*\",\r\n \"Microsoft.ContainerService/managedClusters/replicationcontrollers/*\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/read\",\r\n \"Microsoft.ContainerService/managedClusters/secrets/*\",\r\n \"Microsoft.ContainerService/managedClusters/serviceaccounts/*\",\r\n \"Microsoft.ContainerService/managedClusters/services/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:54:51.9644983Z\",\r\n \"updatedOn\": \"2023-04-25T15:13:23.735884Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Services Hub Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Services Hub Operator allows you to perform all read, write, and deletion operations related to Services Hub Connectors.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.ServicesHub/connectors/write\",\r\n \"Microsoft.ServicesHub/connectors/read\",\r\n \"Microsoft.ServicesHub/connectors/delete\",\r\n \"Microsoft.ServicesHub/connectors/checkAssessmentEntitlement/action\",\r\n \"Microsoft.ServicesHub/supportOfferingEntitlement/read\",\r\n \"Microsoft.ServicesHub/workspaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-20T17:57:22.0644902Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:37.5544021Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/82200a5b-e217-47a5-b665-6d8765ee745b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"82200a5b-e217-47a5-b665-6d8765ee745b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Object Understanding Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read ingestion jobs for an object understanding account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-23T19:16:31.9929119Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:37.9070085Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d18777c0-1514-4662-8490-608db7d334b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d18777c0-1514-4662-8490-608db7d334b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR REST API Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to Azure SignalR Service REST APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SignalRService/SignalR/auth/clientToken/action\",\r\n \"Microsoft.SignalRService/SignalR/hub/*\",\r\n \"Microsoft.SignalRService/SignalR/group/*\",\r\n \"Microsoft.SignalRService/SignalR/clientConnection/*\",\r\n \"Microsoft.SignalRService/SignalR/user/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-29T09:35:32.2764751Z\",\r\n \"updatedOn\": \"2023-08-24T15:22:24.7390261Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd53cd77-2268-407a-8f46-7e7863d0f521\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd53cd77-2268-407a-8f46-7e7863d0f521\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Collaborative Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage data packages of a collaborative.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.IndustryDataLifecycle/custodianCollaboratives/*/read\",\r\n \"Microsoft.IndustryDataLifecycle/memberCollaboratives/*/read\",\r\n \"Microsoft.IndustryDataLifecycle/locations/dataPackages/*\",\r\n \"Microsoft.IndustryDataLifecycle/custodianCollaboratives/receivedDataPackages/*\",\r\n \"Microsoft.IndustryDataLifecycle/custodianCollaboratives/rejectDataPackage/action\",\r\n \"Microsoft.IndustryDataLifecycle/memberCollaboratives/sharedDataPackages/*\",\r\n \"Microsoft.IndustryDataLifecycle/custodianCollaboratives/dataModels/*\",\r\n \"Microsoft.IndustryDataLifecycle/custodianCollaboratives/auditLogs/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-14T11:58:31.8973556Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:40.2428145Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/daa9e50b-21df-454c-94a6-a8050adab352\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"daa9e50b-21df-454c-94a6-a8050adab352\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Update Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives you read access to management and content operations, but does not allow making changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/read\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-21T23:40:19.237361Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:40.7922672Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e9dba6fb-3d52-4cf0-bce3-f06ce71b9e0f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e9dba6fb-3d52-4cf0-bce3-f06ce71b9e0f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Update Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives you full access to management and content operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/read\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/write\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/delete\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/read\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/write\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-21T23:56:22.352051Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:40.9672678Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/02ca0879-e8e4-47a5-a61e-5c618b76e64a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"02ca0879-e8e4-47a5-a61e-5c618b76e64a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Update Content Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives you full access to content operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/read\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/write\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-21T23:58:18.42555Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:41.1433368Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0378884a-3af5-44ab-8323-f5b22f9f3c98\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0378884a-3af5-44ab-8323-f5b22f9f3c98\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Update Content Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives you read access to content operations, but does not allow making changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-22T00:02:43.3299181Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:41.6754856Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d1ee9a80-8b14-47f0-bdc2-f4a351625a7b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d1ee9a80-8b14-47f0-bdc2-f4a351625a7b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Metrics Advisor Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to the project, including the system level configuration.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/MetricsAdvisor/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-10T07:46:47.5804491Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:43.6930781Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cb43c632-a144-4ec5-977c-e80c4affc34a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cb43c632-a144-4ec5-977c-e80c4affc34a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Metrics Advisor User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Access to the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/MetricsAdvisor/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/MetricsAdvisor/stats/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-10T07:47:59.6195639Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:43.8780761Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3b20f47b-3825-43cb-8114-4bd2201156a8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3b20f47b-3825-43cb-8114-4bd2201156a8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Schema Registry Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and list Schema Registry groups and schemas.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/namespaces/schemagroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/namespaces/schemas/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-13T06:31:38.027274Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:44.635045Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2c56ea50-c6b3-40a6-83c0-9d98858bc7d2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2c56ea50-c6b3-40a6-83c0-9d98858bc7d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Schema Registry Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, write, and delete Schema Registry groups and schemas.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/namespaces/schemagroups/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/namespaces/schemas/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-13T06:48:26.6032931Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:44.820037Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5dffeca3-4936-4216-b2bc-10343a5abb25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5dffeca3-4936-4216-b2bc-10343a5abb25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AgFood Platform Service Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides read access to AgFood Platform Service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/*/list/action\",\r\n \"Microsoft.AgFoodPlatform/*/read\",\r\n \"Microsoft.AgFoodPlatform/*/search/action\",\r\n \"Microsoft.AgFoodPlatform/*/download/action\",\r\n \"Microsoft.AgFoodPlatform/*/overlap/action\",\r\n \"Microsoft.AgFoodPlatform/*/checkConsent/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-14T10:21:08.913882Z\",\r\n \"updatedOn\": \"2022-12-13T18:12:05.0978624Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7ec7ccdc-f61e-41fe-9aaf-980df0a44eba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ec7ccdc-f61e-41fe-9aaf-980df0a44eba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AgFood Platform Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides contribute access to AgFood Platform Service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/*/action\",\r\n \"Microsoft.AgFoodPlatform/*/read\",\r\n \"Microsoft.AgFoodPlatform/*/write\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/farmers/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/deletionJobs/*/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/datasets/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/datasetRecords/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/datasets/access/*/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-14T10:21:09.7239169Z\",\r\n \"updatedOn\": \"2023-12-04T16:03:50.558376Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8508508a-4469-4e45-963b-2518ee0bb728\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8508508a-4469-4e45-963b-2518ee0bb728\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AgFood Platform Service Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides admin access to AgFood Platform Service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-14T10:21:09.8039209Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:45.3613128Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f8da80de-1ff9-4747-ad80-a19b7f6079e3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f8da80de-1ff9-4747-ad80-a19b7f6079e3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed HSM contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage managed HSM pools, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.KeyVault/managedHSMs/*\",\r\n \"Microsoft.KeyVault/deletedManagedHsms/read\",\r\n \"Microsoft.KeyVault/locations/deletedManagedHsms/read\",\r\n \"Microsoft.KeyVault/locations/deletedManagedHsms/purge/action\",\r\n \"Microsoft.KeyVault/locations/managedHsmOperationResults/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-09-16T21:47:01.1291104Z\",\r\n \"updatedOn\": \"2022-03-08T02:37:43.9379644Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18500a29-7fe2-46b2-a342-b16a415e101d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18500a29-7fe2-46b2-a342-b16a415e101d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Detonation Chamber Submitter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allowed to create submissions to Security Detonation Chamber\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SecurityDetonation/chambers/submissions/delete\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/write\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/files/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/accesskeyview/read\",\r\n \"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-10-01T08:55:21.3980274Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:47.547135Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0b555d9b-b4a7-4f43-b330-627f0e5be8f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b555d9b-b4a7-4f43-b330-627f0e5be8f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR REST API Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to Azure SignalR Service REST APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SignalRService/SignalR/group/read\",\r\n \"Microsoft.SignalRService/SignalR/clientConnection/read\",\r\n \"Microsoft.SignalRService/SignalR/user/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-10-13T09:19:05.6463616Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:48.790297Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ddde6b66-c0df-4114-a159-3618637b3035\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ddde6b66-c0df-4114-a159-3618637b3035\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR Service Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to Azure SignalR Service REST APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SignalRService/SignalR/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-10-13T09:20:32.150141Z\",\r\n \"updatedOn\": \"2023-08-24T15:22:24.7390261Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7e4f1700-ea5a-4f59-8f37-079cfe29dce3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7e4f1700-ea5a-4f59-8f37-079cfe29dce3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reservation Purchaser\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you purchase reservations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Capacity/catalogs/read\",\r\n \"Microsoft.Capacity/register/action\",\r\n \"Microsoft.Compute/register/action\",\r\n \"Microsoft.Consumption/register/action\",\r\n \"Microsoft.Consumption/reservationRecommendationDetails/read\",\r\n \"Microsoft.Consumption/reservationRecommendations/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.SQL/register/action\",\r\n \"Microsoft.Support/supporttickets/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-10-23T20:22:48.9217751Z\",\r\n \"updatedOn\": \"2022-04-14T04:21:57.2843545Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f7b75c60-3036-4b75-91c3-6b41c27c1689\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f7b75c60-3036-4b75-91c3-6b41c27c1689\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AzureML Metrics Writer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you write metrics to AzureML workspace\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/metrics/*/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-10-27T16:55:19.566495Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:49.8655015Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/635dd51f-9968-44d3-b7fb-6d9a6bd613ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"635dd51f-9968-44d3-b7fb-6d9a6bd613ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you perform backup and restore operations using Azure Backup on the storage account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/locks/read\",\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/locks/delete\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/objectReplicationPolicies/delete\",\r\n \"Microsoft.Storage/storageAccounts/objectReplicationPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/objectReplicationPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/objectReplicationPolicies/restorePointMarkers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/write\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/restoreBlobRanges/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-02T23:32:50.4203469Z\",\r\n \"updatedOn\": \"2022-04-20T07:52:04.6883613Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Metric Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for creation, writes and reads to the metric set via the metrics service APIs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/metricwrite/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/metricwrite/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-10T20:07:53.7535885Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:50.9524177Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6188b7c9-7d01-4f99-a59f-c88b630326c0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6188b7c9-7d01-4f99-a59f-c88b630326c0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Project Babylon Data Curator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The Microsoft.ProjectBabylon data curator can create, read, modify and delete catalog data objects and establish relationships between objects. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ProjectBabylon/accounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ProjectBabylon/accounts/data/read\",\r\n \"Microsoft.ProjectBabylon/accounts/data/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-14T02:31:33.7988825Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:51.4929515Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9ef4ef9c-a049-46b0-82ab-dd8ac094c889\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9ef4ef9c-a049-46b0-82ab-dd8ac094c889\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Project Babylon Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The Microsoft.ProjectBabylon data reader can read catalog data objects. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ProjectBabylon/accounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ProjectBabylon/accounts/data/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-14T02:33:13.5342351Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:51.6729667Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c8d896ba-346d-4f50-bc1d-7d1c84130446\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c8d896ba-346d-4f50-bc1d-7d1c84130446\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Project Babylon Data Source Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The Microsoft.ProjectBabylon data source administrator can manage data sources and data scans. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ProjectBabylon/accounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ProjectBabylon/accounts/scan/read\",\r\n \"Microsoft.ProjectBabylon/accounts/scan/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-14T02:34:01.8401954Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:51.8529643Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/05b7651b-dc44-475e-b74d-df3db49fae0f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"05b7651b-dc44-475e-b74d-df3db49fae0f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Group Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Contributor of the Application Group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/applicationgroups/*\",\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\r\n \"Microsoft.DesktopVirtualization/workspaces/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-03T23:26:00.2784962Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:52.9432015Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ca6382a4-1721-4bcf-a114-ff0c70227b6b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ca6382a4-1721-4bcf-a114-ff0c70227b6b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Reader of Desktop Virtualization.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:36:19.0140629Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:54.0407838Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/49a72310-ab8d-41df-bbb0-79b649203868\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49a72310-ab8d-41df-bbb0-79b649203868\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Contributor of Desktop Virtualization.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:37:16.2910337Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:54.2107872Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/082f0a83-3be5-4ba1-904c-961cca79b387\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"082f0a83-3be5-4ba1-904c-961cca79b387\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Workspace Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Contributor of the Desktop Virtualization Workspace.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/workspaces/*\",\r\n \"Microsoft.DesktopVirtualization/applicationgroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:38:29.6089216Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:54.3907854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/21efdde3-836f-432b-bf3d-3e8e734d4b2b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"21efdde3-836f-432b-bf3d-3e8e734d4b2b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization User Session Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Operator of the Desktop Virtualization User Session.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:39:16.9100273Z\",\r\n \"updatedOn\": \"2024-11-01T14:22:39.4622074Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Session Host Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Operator of the Desktop Virtualization Session Host.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:39:53.2569741Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:54.7508042Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2ad6aaab-ead9-4eaa-8ac5-da422f562408\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2ad6aaab-ead9-4eaa-8ac5-da422f562408\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Host Pool Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Reader of the Desktop Virtualization Host Pool.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/hostpools/*/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:40:33.1430834Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:54.9257967Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ceadfde2-b300-400a-ab7b-6143895aa822\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ceadfde2-b300-400a-ab7b-6143895aa822\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Host Pool Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Contributor of the Desktop Virtualization Host Pool.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/hostpools/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:40:57.2976187Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:55.1057701Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e307426c-f9b6-4e81-87de-d99efb3c32bc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e307426c-f9b6-4e81-87de-d99efb3c32bc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Application Group Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Reader of the Desktop Virtualization Application Group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/applicationgroups/*/read\",\r\n \"Microsoft.DesktopVirtualization/applicationgroups/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:41:18.0287398Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:55.2858006Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/aebf23d0-b568-4e86-b8f9-fe83a2c6ab55\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"aebf23d0-b568-4e86-b8f9-fe83a2c6ab55\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Application Group Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Contributor of the Desktop Virtualization Application Group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/applicationgroups/*\",\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:41:38.6205531Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:55.4677136Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/86240b0e-9422-4c43-887b-b61143f32ba8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86240b0e-9422-4c43-887b-b61143f32ba8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Workspace Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Reader of the Desktop Virtualization Workspace.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/workspaces/read\",\r\n \"Microsoft.DesktopVirtualization/applicationgroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-11T21:41:58.1892707Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:55.6577168Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0fa44ee9-7a7d-466b-9bb2-2bf446b1204d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0fa44ee9-7a7d-466b-9bb2-2bf446b1204d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Disk Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permission to backup vault to perform disk backup.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-15T07:39:03.8394514Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:56.0178737Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3e5e47e6-65f7-47ef-90b5-e5dd4d455f24\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3e5e47e6-65f7-47ef-90b5-e5dd4d455f24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Disk Restore Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permission to backup vault to perform disk restore.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-15T12:18:31.8481619Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:56.7408912Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b50d9833-a0cb-478e-945f-707fcc997c13\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Disk Snapshot Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permission to backup vault to manage disk snapshots.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Compute/snapshots/delete\",\r\n \"Microsoft.Compute/snapshots/write\",\r\n \"Microsoft.Compute/snapshots/read\",\r\n \"Microsoft.Compute/snapshots/beginGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/endGetAccess/action\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-15T12:18:51.4471411Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:56.9158814Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7efff54f-a5b4-42b5-a1c5-5411624893ce\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft.Kubernetes connected cluster role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.Kubernetes connected cluster role.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/delete\",\r\n \"Microsoft.Kubernetes/registeredSubscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-07T23:57:10.9923232Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:58.2039838Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5548b2cf-c94c-4228-90ba-30851930a12f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5548b2cf-c94c-4228-90ba-30851930a12f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Detonation Chamber Submission Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allowed to create and manage submissions to Security Detonation Chamber\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SecurityDetonation/chambers/submissions/delete\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/write\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/files/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/accesskeyview/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/adminview/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/analystview/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/publicview/read\",\r\n \"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-18T09:35:36.5739297Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:58.3939604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a37b566d-3efa-4beb-a2f2-698963fa42ce\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a37b566d-3efa-4beb-a2f2-698963fa42ce\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Detonation Chamber Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allowed to publish and modify platforms, workflows and toolsets to Security Detonation Chamber\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SecurityDetonation/chambers/platforms/read\",\r\n \"Microsoft.SecurityDetonation/chambers/platforms/write\",\r\n \"Microsoft.SecurityDetonation/chambers/platforms/delete\",\r\n \"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/workflows/read\",\r\n \"Microsoft.SecurityDetonation/chambers/workflows/write\",\r\n \"Microsoft.SecurityDetonation/chambers/workflows/delete\",\r\n \"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/toolsets/read\",\r\n \"Microsoft.SecurityDetonation/chambers/toolsets/write\",\r\n \"Microsoft.SecurityDetonation/chambers/toolsets/delete\",\r\n \"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\",\r\n \"Microsoft.SecurityDetonation/chambers/publishRequests/read\",\r\n \"Microsoft.SecurityDetonation/chambers/publishRequests/cancel/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-18T11:43:14.0858184Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:58.5639749Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/352470b3-6a9c-4686-b503-35deb827e500\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"352470b3-6a9c-4686-b503-35deb827e500\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Collaborative Runtime Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage resources created by AICS at runtime\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.IndustryDataLifecycle/derivedModels/*\",\r\n \"Microsoft.IndustryDataLifecycle/pipelineSets/*\",\r\n \"Microsoft.IndustryDataLifecycle/modelMappings/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-19T10:00:27.3464971Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:58.7442136Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7a6f0e70-c033-4fb1-828c-08514e5f4102\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7a6f0e70-c033-4fb1-828c-08514e5f4102\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CosmosRestoreOperator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform restore action for Cosmos DB database account with continuous backup mode\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restore/action\",\r\n \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-21T19:51:35.3884884Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:59.4892686Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5432c526-bc82-444a-b7ba-57c5b0b5b34f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5432c526-bc82-444a-b7ba-57c5b0b5b34f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Converter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to convert data from legacy format to FHIR\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/convertData/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/convertData/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-22T19:39:01.1601069Z\",\r\n \"updatedOn\": \"2021-11-11T20:14:59.8605937Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a1705bd2-3a8f-45a5-8683-466fcfd5cc24\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a1705bd2-3a8f-45a5-8683-466fcfd5cc24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Quota Request Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and create quota requests, get quota request status, and create support tickets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Capacity/resourceProviders/locations/serviceLimits/read\",\r\n \"Microsoft.Capacity/resourceProviders/locations/serviceLimits/write\",\r\n \"Microsoft.Capacity/resourceProviders/locations/serviceLimitsRequests/read\",\r\n \"Microsoft.Capacity/register/action\",\r\n \"Microsoft.Quota/usages/read\",\r\n \"Microsoft.Quota/quotas/read\",\r\n \"Microsoft.Quota/quotas/write\",\r\n \"Microsoft.Quota/quotaRequests/read\",\r\n \"Microsoft.Quota/register/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-02-03T00:06:35.8404575Z\",\r\n \"updatedOn\": \"2022-12-07T23:49:01.9455627Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0e5f05e5-9ab9-446b-b98d-1e2157c94125\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0e5f05e5-9ab9-446b-b98d-1e2157c94125\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage EventGrid operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-02-08T18:46:18.8999557Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:01.6867802Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1e241071-0855-49ea-94dc-649edcd759de\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1e241071-0855-49ea-94dc-649edcd759de\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Detonation Chamber Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allowed to query submission info and files from Security Detonation Chamber\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SecurityDetonation/chambers/submissions/read\",\r\n \"Microsoft.SecurityDetonation/chambers/submissions/files/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-01T14:06:46.2814905Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:03.327409Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/28241645-39f8-410b-ad48-87863e2951d5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"28241645-39f8-410b-ad48-87863e2951d5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Object Anchors Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read ingestion jobs for an object anchors account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-02T01:20:47.0279813Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:03.5006082Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4a167cdf-cb95-4554-9203-2347fe489bd9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4a167cdf-cb95-4554-9203-2347fe489bd9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Object Anchors Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with ingestion capabilities for an object anchors account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/action\",\r\n \"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-02T01:42:02.0014737Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:03.6855873Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ca0835dd-bacc-42dd-8ed2-ed5e7230d15b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ca0835dd-bacc-42dd-8ed2-ed5e7230d15b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"WorkloadBuilder Migration Agent Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"WorkloadBuilder Migration Agent Role.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.WorkloadBuilder/migrationAgents/Read\",\r\n \"Microsoft.WorkloadBuilder/migrationAgents/Write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-11T17:07:20.0828003Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:04.2456706Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d17ce0a2-0697-43bc-aac5-9113337ab61c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d17ce0a2-0697-43bc-aac5-9113337ab61c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Cloud Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allow read access to Azure Spring Cloud Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-25T11:12:12.678601Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:05.3368606Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b5537268-8956-4941-a8f0-646150406f0c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b5537268-8956-4941-a8f0-646150406f0c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Speech Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to Speech projects, including read, write and delete all entities, for real-time speech recognition and batch transcription tasks, real-time speech synthesis and long audio tasks, custom speech and custom voice.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVoice/*\",\r\n \"Microsoft.CognitiveServices/accounts/AudioContentCreation/*\",\r\n \"Microsoft.CognitiveServices/accounts/VideoTranslation/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomAvatar/*\",\r\n \"Microsoft.CognitiveServices/accounts/BatchAvatar/*\",\r\n \"Microsoft.CognitiveServices/accounts/BatchTextToSpeech/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-30T11:28:49.7826633Z\",\r\n \"updatedOn\": \"2024-04-15T15:14:13.2916962Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0e75ca1e-0464-4b4d-8b93-68208a576181\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0e75ca1e-0464-4b4d-8b93-68208a576181\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Face Recognizer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you perform detect, verify, identify, group, and find similar operations on Face API. This role does not allow create or delete operations, which makes it well suited for endpoints that only need inferencing capabilities, following 'least privilege' best practices.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/Face/detect/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/verify/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/identify/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/group/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/findsimilars/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/detectliveness/multimodal/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/detectliveness/singlemodal/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/detectlivenesswithverify/singlemodal/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/*/sessions/action\",\r\n \"Microsoft.CognitiveServices/accounts/Face/*/sessions/delete\",\r\n \"Microsoft.CognitiveServices/accounts/Face/*/sessions/read\",\r\n \"Microsoft.CognitiveServices/accounts/Face/*/sessions/audit/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-31T01:51:41.3557295Z\",\r\n \"updatedOn\": \"2023-11-13T16:11:26.3607611Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9894cab4-e18a-44aa-828b-cb588cd6f2d7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9894cab4-e18a-44aa-828b-cb588cd6f2d7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Media Services Account Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete Media Services accounts; read-only access to other Media Services resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Media/mediaservices/*/read\",\r\n \"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\r\n \"Microsoft.Media/mediaservices/write\",\r\n \"Microsoft.Media/mediaservices/delete\",\r\n \"Microsoft.Media/mediaservices/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Media/mediaservices/privateEndpointConnections/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-19T23:20:32.2956636Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:07.1518844Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/054126f8-9a2b-4f1c-a9ad-eca461f08466\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"054126f8-9a2b-4f1c-a9ad-eca461f08466\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Media Services Live Events Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete Live Events, Assets, Asset Filters, and Streaming Locators; read-only access to other Media Services resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Media/mediaservices/*/read\",\r\n \"Microsoft.Media/mediaservices/assets/*\",\r\n \"Microsoft.Media/mediaservices/assets/assetfilters/*\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/*\",\r\n \"Microsoft.Media/mediaservices/liveEvents/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Media/mediaservices/assets/getEncryptionKey/action\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/listContentKeys/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-19T23:21:00.6119555Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:07.3318873Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/532bc159-b25e-42c0-969e-a1d439f60d77\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"532bc159-b25e-42c0-969e-a1d439f60d77\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Media Services Media Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete Assets, Asset Filters, Streaming Locators, and Jobs; read-only access to other Media Services resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Media/mediaservices/*/read\",\r\n \"Microsoft.Media/mediaservices/assets/*\",\r\n \"Microsoft.Media/mediaservices/assets/assetfilters/*\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/*\",\r\n \"Microsoft.Media/mediaservices/transforms/jobs/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Media/mediaservices/assets/getEncryptionKey/action\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/listContentKeys/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-19T23:21:23.2236495Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:07.5068487Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e4395492-1534-4db2-bedf-88c14621589c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e4395492-1534-4db2-bedf-88c14621589c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Media Services Policy Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete Account Filters, Streaming Policies, Content Key Policies, and Transforms; read-only access to other Media Services resources. Cannot create Jobs, Assets or Streaming resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Media/mediaservices/*/read\",\r\n \"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\r\n \"Microsoft.Media/mediaservices/accountFilters/*\",\r\n \"Microsoft.Media/mediaservices/streamingPolicies/*\",\r\n \"Microsoft.Media/mediaservices/contentKeyPolicies/*\",\r\n \"Microsoft.Media/mediaservices/transforms/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Media/mediaservices/contentKeyPolicies/getPolicyPropertiesWithSecrets/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-19T23:21:46.953433Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:07.6968496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c4bba371-dacd-4a26-b320-7250bca963ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c4bba371-dacd-4a26-b320-7250bca963ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Media Services Streaming Endpoints Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete Streaming Endpoints; read-only access to other Media Services resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Media/mediaservices/*/read\",\r\n \"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\r\n \"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\r\n \"Microsoft.Media/mediaservices/streamingEndpoints/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-19T23:22:04.4594851Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:07.8718907Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/99dba123-b5fe-44d5-874c-ced7199a5804\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"99dba123-b5fe-44d5-874c-ced7199a5804\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Stream Analytics Query Tester\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you perform query testing without creating a stream analytics job first\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.StreamAnalytics/locations/TestQuery/action\",\r\n \"Microsoft.StreamAnalytics/locations/OperationResults/read\",\r\n \"Microsoft.StreamAnalytics/locations/SampleInput/action\",\r\n \"Microsoft.StreamAnalytics/locations/CompileQuery/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-20T17:33:24.572787Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:08.0481551Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1ec5b3c1-b17e-4e25-8312-2acb3c3c5abf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1ec5b3c1-b17e-4e25-8312-2acb3c3c5abf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AnyBuild Builder\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Basic user role for AnyBuild. This role allows listing of agent information and execution of remote build capabilities.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AnyBuild/clusters/build/write\",\r\n \"Microsoft.AnyBuild/clusters/build/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-20T22:07:00.4963853Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:08.4254134Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a2138dac-4907-4679-a376-736901ed8ad8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a2138dac-4907-4679-a376-736901ed8ad8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"IoT Hub Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full read access to IoT Hub data-plane properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Devices/IotHubs/*/read\",\r\n \"Microsoft.Devices/IotHubs/fileUpload/notifications/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-22T18:03:29.8843192Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:08.6054154Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b447c946-2db7-41ec-983d-d8bf3b1c77e3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b447c946-2db7-41ec-983d-d8bf3b1c77e3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"IoT Hub Twin Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read and write access to all IoT Hub device and module twins.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Devices/IotHubs/twins/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-22T20:36:10.1136903Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:08.7855063Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/494bdba2-168f-4f31-a0a1-191d2f7c028c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494bdba2-168f-4f31-a0a1-191d2f7c028c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"IoT Hub Registry Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to IoT Hub device registry.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Devices/IotHubs/devices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-22T20:36:47.5532704Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:08.9804295Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4ea46cd5-c1b2-4a8e-910b-273211f9ce47\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4ea46cd5-c1b2-4a8e-910b-273211f9ce47\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"IoT Hub Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to IoT Hub data plane operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Devices/IotHubs/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-04-22T20:37:16.9927761Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:09.1754206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4fc6c259-987e-4a07-842e-c321cc9d413f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fc6c259-987e-4a07-842e-c321cc9d413f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Base Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let you view and download packages and test results.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.TestBase/testBaseAccounts/packages/testResults/getDownloadUrl/action\",\r\n \"Microsoft.TestBase/testBaseAccounts/packages/testResults/getVideoDownloadUrl/action\",\r\n \"Microsoft.TestBase/testBaseAccounts/packages/getDownloadUrl/action\",\r\n \"Microsoft.TestBase/*/read\",\r\n \"Microsoft.TestBase/testBaseAccounts/customerEvents/write\",\r\n \"Microsoft.TestBase/testBaseAccounts/customerEvents/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-05-11T23:41:33.1038367Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:10.8004347Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/15e0f5a1-3450-4248-8e25-e2afe88a9e85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"15e0f5a1-3450-4248-8e25-e2afe88a9e85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Index Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read access to Azure Cognitive Search index data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Search/searchServices/indexes/documents/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-06-01T20:26:13.4850461Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:11.3604371Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1407120a-92aa-4202-b7e9-c0e197c71c8f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1407120a-92aa-4202-b7e9-c0e197c71c8f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Index Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to Azure Cognitive Search index data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Search/searchServices/indexes/documents/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-06-01T22:15:16.5388472Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:11.5504385Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8ebe5a00-799e-43f5-93ac-243d3dce84a7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8ebe5a00-799e-43f5-93ac-243d3dce84a7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Table Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage tables and entities\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/entities/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-06-15T06:40:54.9150717Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:12.1005298Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/76199698-9eea-4c19-bc75-cec21354c6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76199698-9eea-4c19-bc75-cec21354c6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Table Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write and delete access to Azure Storage tables and entities\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/read\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/write\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/entities/read\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/entities/write\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/entities/delete\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/entities/add/action\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/entities/update/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-06-15T06:51:59.820761Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:12.2854966Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DICOM Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and search DICOM data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/workspaces/dicomservices/resources/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-06-17T20:58:30.1630494Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:13.0154948Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e89c7a3c-2f64-4fa1-a847-3e4c9ba4283a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89c7a3c-2f64-4fa1-a847-3e4c9ba4283a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DICOM Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to DICOM data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/workspaces/dicomservices/resources/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-06-17T20:59:30.8659515Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:13.1904985Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/58a3b984-7adf-4c20-983a-32417c86fbc8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"58a3b984-7adf-4c20-983a-32417c86fbc8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows send access to event grid events.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/topics/read\",\r\n \"Microsoft.EventGrid/domains/read\",\r\n \"Microsoft.EventGrid/partnerNamespaces/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.EventGrid/namespaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventGrid/events/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-02T21:55:40.4847495Z\",\r\n \"updatedOn\": \"2023-10-30T15:07:29.583163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d5a91429-5739-47e2-a06b-3470a27159e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d5a91429-5739-47e2-a06b-3470a27159e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Disk Pool Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Used by the StoragePool Resource Provider to manage Disks added to a Disk Pool.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-08T17:26:05.1079972Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:13.9154612Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/60fc6e62-5479-42d4-8bf4-67625fcc2840\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"60fc6e62-5479-42d4-8bf4-67625fcc2840\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AzureML Data Scientist\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform all actions within an Azure Machine Learning workspace, except for creating or deleting compute resources and modifying the workspace itself.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/*/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/*/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/*/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/*/write\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/computes/*/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/computes/*/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/computes/listKeys/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/listKeys/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/hubs/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/hubs/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/featurestores/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/featurestores/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-14T21:51:06.0361218Z\",\r\n \"updatedOn\": \"2023-05-31T15:20:44.7862907Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f6c7c914-8db3-469d-8ca1-694a8f32e121\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f6c7c914-8db3-469d-8ca1-694a8f32e121\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Grafana Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage server-wide settings and manage access to resources such as organizations, users, and licenses.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Dashboard/grafana/ActAsGrafanaAdmin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-15T21:32:35.380234Z\",\r\n \"updatedOn\": \"2024-07-19T04:57:48.3613041Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"22926164-76b3-42b3-bc55-97df8dab3e41\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected SQL Server Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.AzureArcData service role to access the resources of Microsoft.AzureArcData stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureArcData/sqlServerInstances/read\",\r\n \"Microsoft.AzureArcData/sqlServerInstances/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-19T23:52:15.8885739Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:15.1754742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e8113dce-c529-4d33-91fa-e9b972617508\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e8113dce-c529-4d33-91fa-e9b972617508\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Relay Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for send access to Azure Relay resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Relay/*/wcfRelays/read\",\r\n \"Microsoft.Relay/*/hybridConnections/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Relay/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-20T15:37:20.7558643Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:15.5454755Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/26baccc8-eea7-41f1-98f4-1762cc7f685d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"26baccc8-eea7-41f1-98f4-1762cc7f685d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Relay Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Relay resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Relay/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Relay/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-20T15:44:26.3023126Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:15.7154782Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2787bf04-f1f5-4bfe-8383-c8a24483ee38\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2787bf04-f1f5-4bfe-8383-c8a24483ee38\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Relay Listener\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for listen access to Azure Relay resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Relay/*/wcfRelays/read\",\r\n \"Microsoft.Relay/*/hybridConnections/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Relay/*/listen/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-07-20T18:38:03.1437496Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:15.9005232Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/26e0b698-aa6d-4085-9386-aadae190014d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"26e0b698-aa6d-4085-9386-aadae190014d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Grafana Viewer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View dashboards, playlists, and query data sources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Dashboard/grafana/ActAsGrafanaViewer/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-05T16:36:18.7737511Z\",\r\n \"updatedOn\": \"2024-07-19T05:11:50.7830427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/60921a7e-fef1-4a43-9b16-a26c52ad4769\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"60921a7e-fef1-4a43-9b16-a26c52ad4769\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Grafana Editor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, edit, delete, or view dashboards; create, edit, or delete folders; and edit or view playlists.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Dashboard/grafana/ActAsGrafanaEditor/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-05T16:37:32.5299593Z\",\r\n \"updatedOn\": \"2024-07-19T04:57:48.3613041Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a79a5197-3a5c-4973-a920-486035ffd60f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a79a5197-3a5c-4973-a920-486035ffd60f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage azure automation resources and other resources using azure automation.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/ActionGroups/*\",\r\n \"Microsoft.Insights/ActivityLogAlerts/*\",\r\n \"Microsoft.Insights/MetricAlerts/*\",\r\n \"Microsoft.Insights/ScheduledQueryRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-09T10:18:19.1054699Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:17.7304954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f353d9bd-d4a6-484e-a77a-8050b599b867\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f353d9bd-d4a6-484e-a77a-8050b599b867\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Extension Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can create, update, get, list and delete Kubernetes Extensions, and get extension async operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-09T19:47:50.6828896Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:17.9155393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"85cb6faf-e071-4c9b-8136-154b5a04f717\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Provisioning Service Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full read access to Device Provisioning Service data-plane properties.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Devices/provisioningServices/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-09T19:53:12.1374732Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:18.0905503Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/10745317-c249-44a1-a5ce-3a4353c0bbd8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10745317-c249-44a1-a5ce-3a4353c0bbd8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Provisioning Service Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Device Provisioning Service data-plane operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Devices/provisioningServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-09T19:54:03.2783227Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:18.2605302Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dfce44e4-17b7-4bd1-a6d1-04996ec95633\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dfce44e4-17b7-4bd1-a6d1-04996ec95633\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Trusted Signing Certificate Profile Signer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Sign files with a certificate profile. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CodeSigning/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CodeSigning/certificateProfiles/Sign/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-16T23:17:53.0002693Z\",\r\n \"updatedOn\": \"2024-04-08T15:07:46.2519733Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2837e146-70d7-4cfd-ad55-7efa6464f958\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2837e146-70d7-4cfd-ad55-7efa6464f958\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Cloud Service Registry Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allow read access to Azure Spring Cloud Service Registry\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/eurekaService/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-20T04:40:17.9785063Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:18.9655101Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cff1b556-2399-4e7e-856d-a8f754be7b65\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cff1b556-2399-4e7e-856d-a8f754be7b65\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Cloud Service Registry Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allow read, write and delete access to Azure Spring Cloud Service Registry\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/eurekaService/read\",\r\n \"Microsoft.AppPlatform/Spring/eurekaService/write\",\r\n \"Microsoft.AppPlatform/Spring/eurekaService/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-20T04:42:38.9153779Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:19.1405497Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f5880b48-c26d-48be-b172-7927bfa1c8f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f5880b48-c26d-48be-b172-7927bfa1c8f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Cloud Config Server Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allow read access to Azure Spring Cloud Config Server\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/configService/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-08-26T01:50:51.5123701Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:19.3155517Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d04c6db6-4947-4782-9e91-30a88feb7be7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d04c6db6-4947-4782-9e91-30a88feb7be7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Cloud Config Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allow read, write and delete access to Azure Spring Cloud Config Server\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/configService/read\",\r\n \"Microsoft.AppPlatform/Spring/configService/write\",\r\n \"Microsoft.AppPlatform/Spring/configService/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-09-06T02:30:47.861158Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:20.0405208Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a06f5c24-21a7-4e1a-aa2b-f19eb6684f5b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a06f5c24-21a7-4e1a-aa2b-f19eb6684f5b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure VM Managed identities restore Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure VM Managed identities restore Contributors are allowed to perform Azure VM Restores with managed identities both user and system\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-09-13T05:27:59.2180214Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:20.5805266Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6ae96244-5829-4925-a7d3-5975537d91dd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6ae96244-5829-4925-a7d3-5975537d91dd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Search and Render Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to very limited set of data APIs for common visual web SDK scenarios. Specifically, render and search data APIs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/services/render/read\",\r\n \"Microsoft.Maps/accounts/services/search/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-10-01T22:17:50.5178931Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:22.045541Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6be48352-4f82-47c9-ad5e-0acacefdb005\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6be48352-4f82-47c9-ad5e-0acacefdb005\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access all Azure Maps resource management.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Maps/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-10-01T22:19:13.1357904Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:22.2455414Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dba33070-676a-4fb0-87fa-064dc56ff7fb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dba33070-676a-4fb0-87fa-064dc56ff7fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc VMware VM Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Arc VMware VM Contributor has permissions to perform all VM actions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ConnectedVMwarevSphere/virtualmachines/*\",\r\n \"Microsoft.ConnectedVMwarevSphere/virtualmachineinstances/*\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/assessPatches/action\",\r\n \"Microsoft.HybridCompute/machines/installPatches/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\r\n \"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/write\",\r\n \"Microsoft.HybridCompute/machines/runcommands/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/licenses/write\",\r\n \"Microsoft.HybridCompute/licenses/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-10-18T20:19:53.0087024Z\",\r\n \"updatedOn\": \"2023-09-01T13:25:44.9439989Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b748a06d-6150-4f8a-aaa9-ce3940cd96cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b748a06d-6150-4f8a-aaa9-ce3940cd96cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc VMware Private Cloud User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Arc VMware Private Cloud User has permissions to use the VMware cloud resources to deploy VMs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ConnectedVMwarevSphere/virtualnetworks/join/action\",\r\n \"Microsoft.ConnectedVMwarevSphere/virtualnetworks/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/virtualmachinetemplates/clone/action\",\r\n \"Microsoft.ConnectedVMwarevSphere/virtualmachinetemplates/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/resourcepools/deploy/action\",\r\n \"Microsoft.ConnectedVMwarevSphere/resourcepools/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/hosts/deploy/action\",\r\n \"Microsoft.ConnectedVMwarevSphere/hosts/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/clusters/deploy/action\",\r\n \"Microsoft.ConnectedVMwarevSphere/clusters/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/datastores/allocateSpace/action\",\r\n \"Microsoft.ConnectedVMwarevSphere/datastores/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-10-18T20:20:46.5105444Z\",\r\n \"updatedOn\": \"2023-11-01T15:17:03.535073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ce551c02-7c42-47e0-9deb-e3b6fc3a9a83\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ce551c02-7c42-47e0-9deb-e3b6fc3a9a83\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc VMware Administrator role \",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Arc VMware VM Contributor has permissions to perform all connected VMwarevSphere actions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ConnectedVMwarevSphere/*\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/assessPatches/action\",\r\n \"Microsoft.HybridCompute/machines/installPatches/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\r\n \"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/write\",\r\n \"Microsoft.HybridCompute/machines/runcommands/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/licenses/write\",\r\n \"Microsoft.HybridCompute/licenses/delete\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-01T17:12:42.6172725Z\",\r\n \"updatedOn\": \"2024-05-22T15:18:10.5637137Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ddc140ed-e463-4246-9145-7c664192013f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ddc140ed-e463-4246-9145-7c664192013f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services LUIS Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \" Has access to all Read, Test, Write, Deploy and Delete functions under LUIS\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/listkeys/action\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LUIS/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T03:28:02.96118Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:25.4884913Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f72c8140-2111-481c-87ff-72b910f6e3f8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f72c8140-2111-481c-87ff-72b910f6e3f8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Language Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has access to Read and Test functions under Language portal\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/projects/export/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*/projects/export/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/query-text/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/query-dataverse/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/analyze-text/jobs/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/analyze-text/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/analyze-text/jobscancel/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/jobscancel/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/jobs/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/query-knowledgebases/action\",\r\n \"Microsoft.CognitiveServices/accounts/Language/generate/action\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T03:29:14.7643336Z\",\r\n \"updatedOn\": \"2023-03-01T16:11:03.4080312Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7628b7b8-a8b2-4cdc-b46f-e9b35248918e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7628b7b8-a8b2-4cdc-b46f-e9b35248918e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Language Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \" Has access to all Read, Test, and Write functions under Language Portal\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*\",\r\n \"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LanguageAuthoring/projects/publish/action\",\r\n \"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/projects/deployments/write\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*/projects/delete\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/write\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/delete\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/swap/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T03:29:39.5761019Z\",\r\n \"updatedOn\": \"2022-03-30T00:16:38.3744561Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f2310ca1-dc64-4889-bb49-c8e0fa3d47a8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f2310ca1-dc64-4889-bb49-c8e0fa3d47a8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Language Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has access to all Read, Test, Write, Deploy and Delete functions under Language portal\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/listkeys/action\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*\",\r\n \"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*\",\r\n \"Microsoft.CognitiveServices/accounts/Language/*\",\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T03:30:07.6173528Z\",\r\n \"updatedOn\": \"2022-03-30T00:16:39.0775846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f07febfe-79bc-46b1-8b37-790e26e6e498\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f07febfe-79bc-46b1-8b37-790e26e6e498\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services LUIS Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has access to Read and Test functions under LUIS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LUIS/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/testdatasets/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T03:30:31.2704834Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:26.2134821Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18e81cdc-4e98-4e29-a639-e7d10c5a6226\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18e81cdc-4e98-4e29-a639-e7d10c5a6226\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services LUIS Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has access to all Read, Test, and Write functions under LUIS\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LUIS/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/delete\",\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/move/action\",\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/publish/action\",\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/settings/write\",\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/azureaccounts/action\",\r\n \"Microsoft.CognitiveServices/accounts/LUIS/apps/azureaccounts/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T03:31:12.1580052Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:26.3934523Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6322a993-d5c9-4bed-b113-e49bbea25b27\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6322a993-d5c9-4bed-b113-e49bbea25b27\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PlayFab Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides read access to PlayFab resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.PlayFab/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-04T23:26:57.2248605Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:26.5784834Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a9a19cc5-31f4-447c-901f-56c0bb18fcaf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a9a19cc5-31f4-447c-901f-56c0bb18fcaf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Load Test Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, create, update, delete and execute load tests. View and list load test resources but can not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.LoadTestService/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.LoadTestService/loadtests/*\",\r\n \"Microsoft.LoadTestService/testProfiles/*\",\r\n \"Microsoft.LoadTestService/testProfileRuns/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-09T08:11:21.0936461Z\",\r\n \"updatedOn\": \"2024-05-16T15:24:47.2532254Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/749a398d-560b-491b-bb21-08924219302e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749a398d-560b-491b-bb21-08924219302e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Load Test Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Execute all operations on load test resources and load tests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.LoadTestService/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.LoadTestService/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-09T08:12:24.5500195Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:27.2897153Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/45bb0b16-2f0c-4e78-afaa-a07599b003f6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"45bb0b16-2f0c-4e78-afaa-a07599b003f6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PlayFab Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides contributor access to PlayFab resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.PlayFab/*/read\",\r\n \"Microsoft.PlayFab/*/write\",\r\n \"Microsoft.PlayFab/*/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-10T00:55:37.3326276Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:28.0547167Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0c8b84dc-067c-4039-9615-fa1a4b77c726\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0c8b84dc-067c-4039-9615-fa1a4b77c726\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Load Test Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View and list all load tests and load test resources but can not make any changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.LoadTestService/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.LoadTestService/loadtests/readTest/action\",\r\n \"Microsoft.LoadTestService/testProfiles/read\",\r\n \"Microsoft.LoadTestService/testProfileRuns/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-10T06:14:08.3903105Z\",\r\n \"updatedOn\": \"2024-05-16T15:24:47.2532254Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3ae3fb29-0000-4ccd-bf80-542e7b26e081\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3ae3fb29-0000-4ccd-bf80-542e7b26e081\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Immersive Reader User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to create Immersive Reader sessions and call APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/ImmersiveReader/getcontentmodelforreader/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-10T19:52:14.4487503Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:28.4146975Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b2de6794-95db-4659-8781-7e080d3f2b9d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b2de6794-95db-4659-8781-7e080d3f2b9d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The lab services contributor role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.LabServices/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.LabServices/labPlans/createLab/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-11T00:51:03.3308981Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:28.7792013Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f69b8690-cc87-41d6-b77a-a4bc3c0a966f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f69b8690-cc87-41d6-b77a-a4bc3c0a966f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Services Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The lab services reader role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.LabServices/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-11T00:55:30.4208618Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:28.9592032Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a5c394f-5eb7-4d4f-9c8e-e8eae39faebc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2a5c394f-5eb7-4d4f-9c8e-e8eae39faebc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Assistant\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The lab assistant role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.LabServices/labPlans/images/read\",\r\n \"Microsoft.LabServices/labPlans/read\",\r\n \"Microsoft.LabServices/labs/read\",\r\n \"Microsoft.LabServices/labs/schedules/read\",\r\n \"Microsoft.LabServices/labs/users/read\",\r\n \"Microsoft.LabServices/labs/users/invite/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/read\",\r\n \"Microsoft.LabServices/labs/virtualMachines/start/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/stop/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\r\n \"Microsoft.LabServices/locations/usages/read\",\r\n \"Microsoft.LabServices/skus/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-11T00:56:10.4295443Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:29.144253Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ce40b423-cede-4313-a93f-9b28290b72e1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ce40b423-cede-4313-a93f-9b28290b72e1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The lab operator role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.LabServices/labPlans/images/read\",\r\n \"Microsoft.LabServices/labPlans/read\",\r\n \"Microsoft.LabServices/labPlans/saveImage/action\",\r\n \"Microsoft.LabServices/labs/publish/action\",\r\n \"Microsoft.LabServices/labs/read\",\r\n \"Microsoft.LabServices/labs/schedules/read\",\r\n \"Microsoft.LabServices/labs/schedules/write\",\r\n \"Microsoft.LabServices/labs/schedules/delete\",\r\n \"Microsoft.LabServices/labs/users/read\",\r\n \"Microsoft.LabServices/labs/users/write\",\r\n \"Microsoft.LabServices/labs/users/delete\",\r\n \"Microsoft.LabServices/labs/users/invite/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/read\",\r\n \"Microsoft.LabServices/labs/virtualMachines/start/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/stop/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/resetPassword/action\",\r\n \"Microsoft.LabServices/locations/usages/read\",\r\n \"Microsoft.LabServices/skus/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-11T00:56:41.9942935Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:29.3242664Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a36e6959-b6be-4b12-8e9f-ef4b474d304d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a36e6959-b6be-4b12-8e9f-ef4b474d304d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The lab contributor role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.LabServices/labPlans/images/read\",\r\n \"Microsoft.LabServices/labPlans/read\",\r\n \"Microsoft.LabServices/labPlans/saveImage/action\",\r\n \"Microsoft.LabServices/labs/read\",\r\n \"Microsoft.LabServices/labs/write\",\r\n \"Microsoft.LabServices/labs/delete\",\r\n \"Microsoft.LabServices/labs/publish/action\",\r\n \"Microsoft.LabServices/labs/syncGroup/action\",\r\n \"Microsoft.LabServices/labs/schedules/read\",\r\n \"Microsoft.LabServices/labs/schedules/write\",\r\n \"Microsoft.LabServices/labs/schedules/delete\",\r\n \"Microsoft.LabServices/labs/users/read\",\r\n \"Microsoft.LabServices/labs/users/write\",\r\n \"Microsoft.LabServices/labs/users/delete\",\r\n \"Microsoft.LabServices/labs/users/invite/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/read\",\r\n \"Microsoft.LabServices/labs/virtualMachines/start/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/stop/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\r\n \"Microsoft.LabServices/labs/virtualMachines/resetPassword/action\",\r\n \"Microsoft.LabServices/locations/usages/read\",\r\n \"Microsoft.LabServices/skus/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.LabServices/labPlans/createLab/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-11T00:57:05.9018065Z\",\r\n \"updatedOn\": \"2021-11-11T20:15:29.4992096Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5daaa2af-1fe8-407c-9122-bba179798270\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5daaa2af-1fe8-407c-9122-bba179798270\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\",\r\n \"Microsoft.Authorization/policyExemptions/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.IoTSecurity/*\",\r\n \"Microsoft.IoTFirmwareDefense/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2023-06-28T15:25:35.2618493Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web PubSub Service Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to Azure Web PubSub Service REST APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SignalRService/WebPubSub/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-24T09:10:11.833518Z\",\r\n \"updatedOn\": \"2023-04-06T15:21:51.7148896Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/12cf5a90-567b-43ae-8102-96cf46c7d9b4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12cf5a90-567b-43ae-8102-96cf46c7d9b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web PubSub Service Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to Azure Web PubSub Service REST APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SignalRService/WebPubSub/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-24T09:11:12.6235436Z\",\r\n \"updatedOn\": \"2023-04-06T15:21:51.6558878Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bfb1c7d2-fb1a-466b-b2ba-aee63b92deaf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfb1c7d2-fb1a-466b-b2ba-aee63b92deaf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR App Server\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets your app server access SignalR Service with AAD auth options.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.SignalRService/SignalR/auth/accessKey/action\",\r\n \"Microsoft.SignalRService/SignalR/serverConnection/write\",\r\n \"Microsoft.SignalRService/SignalR/clientConnection/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-29T06:54:40.1201435Z\",\r\n \"updatedOn\": \"2021-11-16T05:19:04.8579948Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/420fcaa2-552c-430f-98ca-3264be4806c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"420fcaa2-552c-430f-98ca-3264be4806c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine User Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as a regular user.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.HybridCompute/machines/*/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/virtualMachines/login/action\",\r\n \"Microsoft.HybridCompute/machines/login/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-09T18:36:13.3315744Z\",\r\n \"updatedOn\": \"2021-11-18T00:55:50.6185845Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fb879df8-f326-4884-b1cf-06f3ad86be52\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb879df8-f326-4884-b1cf-06f3ad86be52\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Administrator Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.HybridCompute/machines/*/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/virtualMachines/login/action\",\r\n \"Microsoft.Compute/virtualMachines/loginAsAdmin/action\",\r\n \"Microsoft.HybridCompute/machines/login/action\",\r\n \"Microsoft.HybridCompute/machines/loginAsAdmin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-09T18:36:13.3315744Z\",\r\n \"updatedOn\": \"2021-11-18T00:56:53.8134295Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1c0163c0-47e6-4577-8991-ea5c82e286e4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1c0163c0-47e6-4577-8991-ea5c82e286e4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Resource Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, write, delete and re-onboard Azure Connected Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/*\",\r\n \"Microsoft.HybridCompute/machines/extensions/*\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/*\",\r\n \"Microsoft.HybridCompute/machines/runCommands/*\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/settings/*\",\r\n \"Microsoft.HybridCompute/gateways/*\",\r\n \"Microsoft.HybridCompute/privateLinkScopes/*\",\r\n \"Microsoft.HybridCompute/licenses/*\",\r\n \"Microsoft.HybridCompute/locations/*\",\r\n \"Microsoft.HybridCompute/*/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T20:24:59.1474607Z\",\r\n \"updatedOn\": \"2025-02-03T16:08:25.0326897Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cd570a14-e51a-42ad-bac8-bafd67325302\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/accessToken/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupTriggerValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperationsStatuses/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/locations/backupAadProperties/read\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrJobs/action\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrJob/action\",\r\n \"Microsoft.RecoveryServices/locations/backupCrossRegionRestore/action\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrOperationResults/read\",\r\n \"Microsoft.RecoveryServices/locations/backupCrrOperationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/write\",\r\n \"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/backupVaults/operationResults/read\",\r\n \"Microsoft.DataProtection/backupVaults/operationStatus/read\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/backupVaults/read\",\r\n \"Microsoft.DataProtection/locations/operationStatus/read\",\r\n \"Microsoft.DataProtection/locations/operationResults/read\",\r\n \"Microsoft.DataProtection/operations/read\",\r\n \"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/crossRegionRestore/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/validateCrossRegionRestore/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJobs/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJob/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchSecondaryRecoveryPoints/action\",\r\n \"Microsoft.DataProtection/locations/checkFeatureSupport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/delete\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/unlockDelete/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/unlockDelete/action\",\r\n \"Microsoft.DataProtection/backupVaults/backupInstances/validateForModifyBackup/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2025-01-28T16:08:58.1354386Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Workbook Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can save shared workbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/workbooks/write\",\r\n \"Microsoft.Insights/workbooks/delete\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Insights/workbooks/revisions/read\",\r\n \"Microsoft.Insights/workbooktemplates/write\",\r\n \"Microsoft.Insights/workbooktemplates/delete\",\r\n \"Microsoft.Insights/workbooktemplates/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T20:59:42.4820277Z\",\r\n \"updatedOn\": \"2022-12-12T18:07:19.5792794Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e8ddcd69-c73f-4f9f-9844-4100522f16ad\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e8ddcd69-c73f-4f9f-9844-4100522f16ad\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Workbook Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read workbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.insights/workbooks/read\",\r\n \"microsoft.insights/workbooks/revisions/read\",\r\n \"microsoft.insights/workbooktemplates/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T20:56:17.680814Z\",\r\n \"updatedOn\": \"2022-12-12T18:07:19.5792794Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b279062a-9be3-42a0-92ae-8b3cf002ec4d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b279062a-9be3-42a0-92ae-8b3cf002ec4d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.AlertsManagement/alerts/*\",\r\n \"Microsoft.AlertsManagement/alertsSummary/*\",\r\n \"Microsoft.Insights/actiongroups/*\",\r\n \"Microsoft.Insights/activityLogAlerts/*\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/createNotifications/*\",\r\n \"Microsoft.Insights/dataCollectionEndpoints/*\",\r\n \"Microsoft.Insights/dataCollectionRules/*\",\r\n \"Microsoft.Insights/dataCollectionRuleAssociations/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/metricalerts/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/notificationStatus/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/scheduledqueryrules/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.Insights/workbooktemplates/*\",\r\n \"Microsoft.Insights/privateLinkScopes/*\",\r\n \"Microsoft.Insights/privateLinkScopeOperationStatuses/*\",\r\n \"Microsoft.Monitor/accounts/*\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.OperationalInsights/locations/workspaces/failover/action\",\r\n \"Microsoft.OperationalInsights/workspaces/failback/action\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\r\n \"Microsoft.AlertsManagement/actionRules/*\",\r\n \"Microsoft.AlertsManagement/smartGroups/*\",\r\n \"Microsoft.AlertsManagement/migrateFromSmartDetection/*\",\r\n \"Microsoft.AlertsManagement/investigations/*\",\r\n \"Microsoft.AlertsManagement/prometheusRuleGroups/*\",\r\n \"Microsoft.Monitor/investigations/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2024-09-26T15:23:00.7494092Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Metrics Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables publishing metrics against Azure resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Insights/Metrics/Write\",\r\n \"Microsoft.Insights/Telemetry/Write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-14T00:36:16.5610279Z\",\r\n \"updatedOn\": \"2022-01-04T00:38:04.0289073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3913510d-42f4-4e42-8a64-420c390055eb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Purview role 1 (Deprecated)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Deprecated role.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Purview/accounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Purview/accounts/data/read\",\r\n \"Microsoft.Purview/accounts/data/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-14T02:37:15.0123345Z\",\r\n \"updatedOn\": \"2022-01-04T00:43:15.6924286Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8a3c2885-9b38-4fd2-9d99-91af537c1347\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8a3c2885-9b38-4fd2-9d99-91af537c1347\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Purview role 2 (Deprecated)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Deprecated role.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Purview/accounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Purview/accounts/scan/read\",\r\n \"Microsoft.Purview/accounts/scan/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-14T02:40:05.0975648Z\",\r\n \"updatedOn\": \"2022-01-04T00:47:22.9678219Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/200bba9e-f0c8-430f-892b-6f0794863803\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"200bba9e-f0c8-430f-892b-6f0794863803\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Purview role 3 (Deprecated)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Deprecated role.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Purview/accounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Purview/accounts/data/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-11-14T02:39:22.234474Z\",\r\n \"updatedOn\": \"2022-01-04T00:48:08.2844802Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ff100721-1b9d-43d8-af52-42b69c1272db\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ff100721-1b9d-43d8-af52-42b69c1272db\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Autonomous Development Platform Data Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permissions to upload and manage new Autonomous Development Platform measurements.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/discoveries/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/uploads/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurements/states/new/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurementCollections/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/accounts/measurementCollections/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/read\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/discoveries/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/uploads/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/classifications/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/dataStreams/classifications/*\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurementCollections/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurements/states/new/changeState/action\",\r\n \"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/changeState/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-15T11:30:01.7459379Z\",\r\n \"updatedOn\": \"2022-09-15T19:15:50.9036822Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b8b15564-4fa6-4a59-ab12-03e1d9594795\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b8b15564-4fa6-4a59-ab12-03e1d9594795\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Autonomous Development Platform Data Owner (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to Autonomous Development Platform data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-15T12:13:59.9702378Z\",\r\n \"updatedOn\": \"2022-01-04T13:20:26.2040404Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/27f8b550-c507-4db9-86f2-f4b8e816d59d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"27f8b550-c507-4db9-86f2-f4b8e816d59d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Autonomous Development Platform Data Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read access to Autonomous Development Platform data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AutonomousDevelopmentPlatform/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-12-15T12:11:31.9843256Z\",\r\n \"updatedOn\": \"2022-01-04T13:21:04.3207709Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d63b75f7-47ea-4f27-92ac-e0d173aaf093\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d63b75f7-47ea-4f27-92ac-e0d173aaf093\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Officer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Perform any action on the keys of a key vault, except manage permissions. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/*\",\r\n \"Microsoft.KeyVault/vaults/keyrotationpolicies/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.0099249Z\",\r\n \"updatedOn\": \"2022-01-06T23:21:17.9760884Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/14b46e9e-c2b7-41b4-b07b-48a6ebf60603\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"14b46e9e-c2b7-41b4-b07b-48a6ebf60603\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Update Deployments Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives you read access to management operations, but does not allow making changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/read\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-22T00:01:34.705363Z\",\r\n \"updatedOn\": \"2022-01-13T01:35:51.6463216Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/49e2f5d2-7741-4835-8efa-19e1fe35e47f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49e2f5d2-7741-4835-8efa-19e1fe35e47f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Device Update Deployments Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives you full access to management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/alertRules/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/read\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/write\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/management/delete\",\r\n \"Microsoft.DeviceUpdate/accounts/instances/updates/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-08-21T23:59:52.1001666Z\",\r\n \"updatedOn\": \"2022-01-13T01:59:19.4616366Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e4237640-0e3d-4a46-8fda-70bc94856432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e4237640-0e3d-4a46-8fda-70bc94856432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc VMware Private Clouds Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Arc VMware Private Clouds Onboarding role has permissions to provision all the required resources for onboard and deboard vCenter instances to Azure.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ConnectedVMwarevSphere/vcenters/Write\",\r\n \"Microsoft.ConnectedVMwarevSphere/vcenters/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/vcenters/Delete\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/Write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/Read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/Delete\",\r\n \"Microsoft.KubernetesConfiguration/operations/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Write\",\r\n \"Microsoft.ExtendedLocation/customLocations/Delete\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ResourceConnector/appliances/Read\",\r\n \"Microsoft.ResourceConnector/appliances/Write\",\r\n \"Microsoft.ResourceConnector/appliances/Delete\",\r\n \"Microsoft.ResourceConnector/appliances/listClusterUserCredential/action\",\r\n \"Microsoft.BackupSolutions/vmwareapplications/write\",\r\n \"Microsoft.BackupSolutions/vmwareapplications/delete\",\r\n \"Microsoft.BackupSolutions/vmwareapplications/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-11-01T22:18:08.4480747Z\",\r\n \"updatedOn\": \"2023-08-21T15:00:43.2807863Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/67d33e57-3129-45e6-bb0b-7cc522f762fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"67d33e57-3129-45e6-bb0b-7cc522f762fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Chamber Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything under your Modeling and Simulation Workbench chamber.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ModSimWorkbench/*/read\",\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/fileRequests/manage/action\",\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/connector/setCopyPaste/action\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/upload/action\",\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/files/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-12-15T20:53:14.4428297Z\",\r\n \"updatedOn\": \"2024-03-29T22:26:19.3515764Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4e9b8407-af2e-495b-ae54-bb60a55b1b5a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e9b8407-af2e-495b-ae54-bb60a55b1b5a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Sentinel Automation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft Sentinel Automation Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Logic/workflows/triggers/read\",\r\n \"Microsoft.Logic/workflows/triggers/listCallbackUrl/action\",\r\n \"Microsoft.Logic/workflows/runs/read\",\r\n \"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/read\",\r\n \"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/listCallbackUrl/action\",\r\n \"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/runs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-01-24T08:50:52.0382991Z\",\r\n \"updatedOn\": \"2022-01-26T09:25:00.4699337Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f4c81013-99ee-4d62-a7ee-b3f1f648599a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f4c81013-99ee-4d62-a7ee-b3f1f648599a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can't make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Cdn/profiles/afdendpoints/validateCustomDomain/action\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2023-12-08T09:25:10.8320712Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Chamber User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything under your Modeling and Simulation Workbench chamber, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/*/read\",\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/workloads/*\",\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/getUploadUri/action\",\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/fileRequests/getDownloadUri/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ModSimWorkbench/workbenches/chambers/upload/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2021-12-15T20:51:06.2119764Z\",\r\n \"updatedOn\": \"2023-02-13T16:14:49.7073547Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4447db05-44ed-4da3-ae60-6cbece780e32\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4447db05-44ed-4da3-ae60-6cbece780e32\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Speech User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Access to the real-time speech recognition and batch transcription APIs, real-time speech synthesis and long audio APIs, as well as to read the data/test/model/endpoint for custom models, but can’t create, delete or modify the data/test/model/endpoint for custom models.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/read\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/write\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/delete\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/action\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*/frontend/action\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/text-dependent/*/action\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/text-independent/*/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVoice/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVoice/evaluations/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVoice/longaudiosynthesis/*\",\r\n \"Microsoft.CognitiveServices/accounts/AudioContentCreation/*\",\r\n \"Microsoft.CognitiveServices/accounts/VideoTranslation/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomAvatar/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/BatchAvatar/*\",\r\n \"Microsoft.CognitiveServices/accounts/BatchTextToSpeech/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/files/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/utterances/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2021-03-30T11:28:27.4339032Z\",\r\n \"updatedOn\": \"2024-10-21T15:04:46.4452794Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f2dc8367-1007-4938-bd23-fe263f013447\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f2dc8367-1007-4938-bd23-fe263f013447\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Windows Admin Center Administrator Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let's you manage the OS of your resource via Windows Admin Center as an administrator.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/*/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/*\",\r\n \"Microsoft.HybridCompute/machines/upgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\r\n \"Microsoft.Network/networkWatchers/securityGroupView/action\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/write\",\r\n \"Microsoft.HybridConnectivity/endpoints/write\",\r\n \"Microsoft.HybridConnectivity/endpoints/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/write\",\r\n \"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/listManagedProxyDetails/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/patchAssessmentResults/latest/read\",\r\n \"Microsoft.Compute/virtualMachines/patchAssessmentResults/latest/softwarePatches/read\",\r\n \"Microsoft.Compute/virtualMachines/patchInstallationResults/read\",\r\n \"Microsoft.Compute/virtualMachines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/runCommands/read\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/locations/publishers/artifacttypes/types/read\",\r\n \"Microsoft.Compute/locations/publishers/artifacttypes/types/versions/read\",\r\n \"Microsoft.Compute/diskAccesses/read\",\r\n \"Microsoft.Compute/galleries/images/read\",\r\n \"Microsoft.Compute/images/read\",\r\n \"Microsoft.AzureStackHCI/Clusters/Read\",\r\n \"Microsoft.AzureStackHCI/Clusters/ArcSettings/Read\",\r\n \"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Read\",\r\n \"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Write\",\r\n \"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Delete\",\r\n \"Microsoft.AzureStackHCI/Operations/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Read\",\r\n \"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Extensions/Write\",\r\n \"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Extensions/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HybridCompute/machines/WACLoginAsAdmin/action\",\r\n \"Microsoft.Compute/virtualMachines/WACloginAsAdmin/action\",\r\n \"Microsoft.AzureStackHCI/Clusters/WACloginAsAdmin/Action\",\r\n \"Microsoft.ConnectedVMwarevSphere/virtualmachines/WACloginAsAdmin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-01-12T00:51:19.5581155Z\",\r\n \"updatedOn\": \"2024-01-25T16:40:52.3962677Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a6333a3e-0164-44c3-b281-7a577aff287f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a6333a3e-0164-44c3-b281-7a577aff287f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Policy Add-on Deployment\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Deploy the Azure Policy add-on on Azure Kubernetes Service clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/publicIPPrefixes/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Compute/diskEncryptionSets/read\",\r\n \"Microsoft.Compute/proximityPlacementGroups/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-02-07T20:51:48.5662807Z\",\r\n \"updatedOn\": \"2022-03-16T01:35:31.5373337Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18ed5180-3e48-46fd-8541-4ea054d57064\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Guest Configuration Resource Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, write Guest Configuration Resource.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/write\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/*/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-01-13T21:31:41.9626667Z\",\r\n \"updatedOn\": \"2022-02-10T19:22:44.9057916Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/088ab73d-1256-47ae-bea9-9de8e7131f31\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"088ab73d-1256-47ae-bea9-9de8e7131f31\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Domain Services Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view Azure AD Domain Services and related network configurations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Insights/Logs/Read\",\r\n \"Microsoft.Insights/Metrics/read\",\r\n \"Microsoft.Insights/DiagnosticSettings/read\",\r\n \"Microsoft.Insights/DiagnosticSettingsCategories/Read\",\r\n \"Microsoft.AAD/domainServices/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/azureFirewalls/read\",\r\n \"Microsoft.Network/ddosProtectionPlans/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/*/read\",\r\n \"Microsoft.Network/natGateways/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/routeTables/read\",\r\n \"Microsoft.Network/routeTables/routes/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-02-15T19:38:46.904317Z\",\r\n \"updatedOn\": \"2022-06-27T19:30:44.3629686Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/361898ef-9ed1-48c2-849c-a832951106bb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"361898ef-9ed1-48c2-849c-a832951106bb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Domain Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Azure AD Domain Services and related network configurations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Insights/Logs/Read\",\r\n \"Microsoft.Insights/Metrics/Read\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/DiagnosticSettingsCategories/Read\",\r\n \"Microsoft.AAD/register/action\",\r\n \"Microsoft.AAD/unregister/action\",\r\n \"Microsoft.AAD/domainServices/*\",\r\n \"Microsoft.Network/register/action\",\r\n \"Microsoft.Network/unregister/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworks/peer/action\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\r\n \"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/azureFirewalls/read\",\r\n \"Microsoft.Network/ddosProtectionPlans/read\",\r\n \"Microsoft.Network/ddosProtectionPlans/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/delete\",\r\n \"Microsoft.Network/loadBalancers/*/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/natGateways/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/write\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\r\n \"Microsoft.Network/routeTables/read\",\r\n \"Microsoft.Network/routeTables/write\",\r\n \"Microsoft.Network/routeTables/delete\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Network/routeTables/routes/read\",\r\n \"Microsoft.Network/routeTables/routes/write\",\r\n \"Microsoft.Network/routeTables/routes/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-02-15T19:40:22.3943189Z\",\r\n \"updatedOn\": \"2022-06-27T19:30:44.3629686Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/eeaeda52-9324-47f6-8069-5d5bade478b2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"eeaeda52-9324-47f6-8069-5d5bade478b2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Resolver Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS resolver resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/dnsResolvers/read\",\r\n \"Microsoft.Network/dnsResolvers/write\",\r\n \"Microsoft.Network/dnsResolvers/delete\",\r\n \"Microsoft.Network/dnsResolvers/join/action\",\r\n \"Microsoft.Network/dnsResolvers/inboundEndpoints/read\",\r\n \"Microsoft.Network/dnsResolvers/inboundEndpoints/write\",\r\n \"Microsoft.Network/dnsResolvers/inboundEndpoints/delete\",\r\n \"Microsoft.Network/dnsResolvers/inboundEndpoints/join/action\",\r\n \"Microsoft.Network/dnsResolvers/outboundEndpoints/read\",\r\n \"Microsoft.Network/dnsResolvers/outboundEndpoints/write\",\r\n \"Microsoft.Network/dnsResolvers/outboundEndpoints/delete\",\r\n \"Microsoft.Network/dnsResolvers/outboundEndpoints/join/action\",\r\n \"Microsoft.Network/dnsForwardingRulesets/read\",\r\n \"Microsoft.Network/dnsForwardingRulesets/write\",\r\n \"Microsoft.Network/dnsForwardingRulesets/delete\",\r\n \"Microsoft.Network/dnsForwardingRulesets/join/action\",\r\n \"Microsoft.Network/dnsForwardingRulesets/forwardingRules/read\",\r\n \"Microsoft.Network/dnsForwardingRulesets/forwardingRules/write\",\r\n \"Microsoft.Network/dnsForwardingRulesets/forwardingRules/delete\",\r\n \"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/read\",\r\n \"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/write\",\r\n \"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/delete\",\r\n \"Microsoft.Network/locations/dnsResolverOperationResults/read\",\r\n \"Microsoft.Network/locations/dnsResolverOperationStatuses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Network/virtualNetworks/joinLoadBalancer/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinLoadBalancer/action\",\r\n \"Microsoft.Network/natGateways/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Network/serviceEndpointPolicies/join/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-02-16T23:25:04.4308795Z\",\r\n \"updatedOn\": \"2022-03-12T03:10:56.0891783Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0f2ebee7-ffd4-4fc0-b3b7-664099fdad5d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0f2ebee7-ffd4-4fc0-b3b7-664099fdad5d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Enabled Kubernetes Cluster User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster user credentials action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/listClusterUserCredentials/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Kubernetes/connectedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-28T17:37:00.7637445Z\",\r\n \"updatedOn\": \"2022-02-17T02:29:05.1000798Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/00493d72-78f6-4148-b6c5-d3ce8e4799dd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00493d72-78f6-4148-b6c5-d3ce8e4799dd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Operator for Managed Disks\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permissions to upload data to empty managed disks, read, or export data of managed disks (not attached to running VMs) and snapshots using SAS URIs and Azure AD authentication.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/disks/download/action\",\r\n \"Microsoft.Compute/disks/upload/action\",\r\n \"Microsoft.Compute/snapshots/download/action\",\r\n \"Microsoft.Compute/snapshots/upload/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-03-01T07:44:08.5420759Z\",\r\n \"updatedOn\": \"2022-03-01T07:44:08.5420759Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/959f8984-c045-4866-89c7-12bf9737be2e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"959f8984-c045-4866-89c7-12bf9737be2e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AgFood Platform Sensor Partner Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides contribute access to manage sensor related entities in AgFood Platform Service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/sensorPartnerScope/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/sensorPartnerScope/sensors/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2022-03-09T11:06:02.2546966Z\",\r\n \"updatedOn\": \"2022-10-27T09:36:05.2105861Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6b77f0a0-0d89-41cc-acd1-579c22c17a67\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6b77f0a0-0d89-41cc-acd1-579c22c17a67\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Compute Gallery Sharing Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role allows user to share gallery to another subscription/tenant or share it to the public.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/galleries/share/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-03-10T06:37:39.5861946Z\",\r\n \"updatedOn\": \"2022-03-26T02:42:25.9674154Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1ef6a3be-d0ac-425d-8c01-acb62866290b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1ef6a3be-d0ac-425d-8c01-acb62866290b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduled Patching Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to manage maintenance configurations with maintenance scope InGuestPatch and corresponding configuration assignments\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Maintenance/maintenanceConfigurations/read\",\r\n \"Microsoft.Maintenance/maintenanceConfigurations/write\",\r\n \"Microsoft.Maintenance/maintenanceConfigurations/delete\",\r\n \"Microsoft.Maintenance/configurationAssignments/read\",\r\n \"Microsoft.Maintenance/configurationAssignments/write\",\r\n \"Microsoft.Maintenance/configurationAssignments/delete\",\r\n \"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/read\",\r\n \"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/write\",\r\n \"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/delete\",\r\n \"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/read\",\r\n \"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/write\",\r\n \"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-03-21T16:36:03.6770776Z\",\r\n \"updatedOn\": \"2022-04-13T14:13:00.6215441Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cd08ab90-6b14-449c-ad9a-8f8e549482c6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cd08ab90-6b14-449c-ad9a-8f8e549482c6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevCenter Dev Box User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to create and manage dev boxes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DevCenter/projects/read\",\r\n \"Microsoft.DevCenter/projects/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DevCenter/projects/users/devboxes/userStop/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userStart/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userGetRemoteConnection/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userRead/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userWrite/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userDelete/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userUpcomingActionRead/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userUpcomingActionManage/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userActionRead/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userActionManage/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userCustomize/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-01T00:43:09.4468117Z\",\r\n \"updatedOn\": \"2023-10-19T19:09:51.437007Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/45d50f46-0b78-4001-a660-4198cbe8cd05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"45d50f46-0b78-4001-a660-4198cbe8cd05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevCenter Project Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to manage project resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DevCenter/projects/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.DevCenter/projects/write\",\r\n \"Microsoft.DevCenter/projects/delete\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.DevCenter/projects/users/devboxes/adminStart/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/adminStop/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/adminRead/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/adminWrite/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/adminDelete/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userStop/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userStart/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userGetRemoteConnection/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userRead/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userWrite/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userDelete/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userActionRead/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userActionManage/action\",\r\n \"Microsoft.DevCenter/projects/users/devboxes/userCustomize/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminRead/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/userWrite/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminWrite/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/userDelete/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminDelete/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminAction/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminActionRead/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminActionManage/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminOutputsRead/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-01T01:58:38.0472365Z\",\r\n \"updatedOn\": \"2024-08-12T16:09:21.8719358Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/331c37c6-af14-46d9-b9f4-e1909e1b95a0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"331c37c6-af14-46d9-b9f4-e1909e1b95a0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Local User Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as a local user configured on the arc server\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/*/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-07T06:13:18.8975022Z\",\r\n \"updatedOn\": \"2022-04-17T01:05:14.2345428Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/602da2ba-a5c2-41da-b01d-5360126ab525\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"602da2ba-a5c2-41da-b01d-5360126ab525\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc ScVmm Private Cloud User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Arc ScVmm Private Cloud User has permissions to use the ScVmm resources to deploy VMs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"microsoft.scvmm/virtualnetworks/join/action\",\r\n \"microsoft.scvmm/virtualnetworks/Read\",\r\n \"microsoft.scvmm/virtualmachinetemplates/clone/action\",\r\n \"microsoft.scvmm/virtualmachinetemplates/Read\",\r\n \"microsoft.scvmm/clouds/deploy/action\",\r\n \"microsoft.scvmm/clouds/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/enabledresourcetypes/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-13T23:34:21.1716375Z\",\r\n \"updatedOn\": \"2023-10-09T15:06:52.9183534Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c0781e91-8102-4553-8951-97c6d4243cda\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c0781e91-8102-4553-8951-97c6d4243cda\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc ScVmm VM Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Arc ScVmm VM Contributor has permissions to perform all VM actions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.scvmm/virtualmachines/*\",\r\n \"microsoft.scvmm/virtualMachineInstances/*\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/assessPatches/action\",\r\n \"Microsoft.HybridCompute/machines/installPatches/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\r\n \"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/write\",\r\n \"Microsoft.HybridCompute/machines/runcommands/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/licenses/write\",\r\n \"Microsoft.HybridCompute/licenses/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-13T23:34:21.1716375Z\",\r\n \"updatedOn\": \"2023-10-09T15:06:52.9193525Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e582369a-e17b-42a5-b10c-874c387c530b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e582369a-e17b-42a5-b10c-874c387c530b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc ScVmm Private Clouds Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Arc ScVmm Private Clouds Onboarding role has permissions to provision all the required resources for onboard and deboard vmm server instances to Azure.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.scvmm/vmmservers/Read\",\r\n \"microsoft.scvmm/vmmservers/Write\",\r\n \"microsoft.scvmm/vmmservers/Delete\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-13T23:34:21.1716375Z\",\r\n \"updatedOn\": \"2023-05-22T15:13:04.902983Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6aac74c4-6311-40d2-bbdd-7d01e7c6e3a9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6aac74c4-6311-40d2-bbdd-7d01e7c6e3a9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc ScVmm Administrator role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Arc ScVmm VM Administrator has permissions to perform all ScVmm actions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ScVmm/*\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/assessPatches/action\",\r\n \"Microsoft.HybridCompute/machines/installPatches/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\r\n \"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/write\",\r\n \"Microsoft.HybridCompute/machines/runcommands/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/licenses/write\",\r\n \"Microsoft.HybridCompute/licenses/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-13T23:34:24.1295963Z\",\r\n \"updatedOn\": \"2023-10-09T15:06:52.9193525Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a92dfd61-77f9-4aec-a531-19858b406c87\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a92dfd61-77f9-4aec-a531-19858b406c87\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight on AKS Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants a user/group the ability to create, delete and manage clusters within a given cluster pool. Cluster Admin can also run workloads, monitor, and manage all user activity on these clusters.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/write\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/delete\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/resize/action\",\r\n \"Microsoft.HDInsight/clusterpools/clusters/instanceviews/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/jobs/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/runjob/action\",\r\n \"Microsoft.HDInsight/clusterpools/clusters/serviceconfigs/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/availableupgrades/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/upgrade/action\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/rollback/action\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/upgradehistories/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/libraries/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/managelibraries/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/*/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/logs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-14T07:38:22.8690141Z\",\r\n \"updatedOn\": \"2024-07-02T15:07:53.5776614Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd036e6b-1266-47a0-b0bb-a05d04831731\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd036e6b-1266-47a0-b0bb-a05d04831731\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight on AKS Cluster Pool Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, create, modify and delete HDInsight on AKS cluster pools and create clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/write\",\r\n \"Microsoft.HDInsight/clusterPools/delete\",\r\n \"Microsoft.HDInsight/clusterPools/read\",\r\n \"Microsoft.HDInsight/clusterPools/write\",\r\n \"Microsoft.HDInsight/clusterpools/availableupgrades/read\",\r\n \"Microsoft.HDInsight/clusterpools/upgrade/action\",\r\n \"Microsoft.HDInsight/clusterPools/upgradehistories/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/*/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/logs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-14T07:38:22.8690141Z\",\r\n \"updatedOn\": \"2024-07-02T15:07:54.2284774Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7656b436-37d4-490a-a4ab-d39f838f0042\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7656b436-37d4-490a-a4ab-d39f838f0042\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Importer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and import FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/import/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-19T14:05:02.2341374Z\",\r\n \"updatedOn\": \"2022-04-21T15:21:45.3114429Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4465e953-8ced-4406-a58e-0f6e3f3b530b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4465e953-8ced-4406-a58e-0f6e3f3b530b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight on AKS Cluster Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants a user/group the ability to read cluster configurations, resize clusters and run jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HDInsight/clusterPools/read\",\r\n \"Microsoft.Hdinsight/clusterpools/clusters/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/resize/action\",\r\n \"Microsoft.HDInsight/clusterpools/clusters/instanceviews/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/jobs/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/runjob/action\",\r\n \"Microsoft.HDInsight/clusterpools/clusters/serviceconfigs/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/availableupgrades/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/upgradehistories/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/libraries/read\",\r\n \"Microsoft.HDInsight/clusterPools/clusters/managelibraries/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/logs/read\",\r\n \"Microsoft.Insights/diagnosticSettings/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-04-26T16:16:21.608189Z\",\r\n \"updatedOn\": \"2024-07-02T15:07:53.5776614Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bcf28286-af25-4c81-bb6f-351fcab5dbe9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bcf28286-af25-4c81-bb6f-351fcab5dbe9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Developer Portal Content Editor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can customize the developer portal, edit its content, and publish it.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/portalRevisions/read\",\r\n \"Microsoft.ApiManagement/service/portalRevisions/write\",\r\n \"Microsoft.ApiManagement/service/contentTypes/read\",\r\n \"Microsoft.ApiManagement/service/contentTypes/delete\",\r\n \"Microsoft.ApiManagement/service/contentTypes/write\",\r\n \"Microsoft.ApiManagement/service/contentTypes/contentItems/read\",\r\n \"Microsoft.ApiManagement/service/contentTypes/contentItems/write\",\r\n \"Microsoft.ApiManagement/service/contentTypes/contentItems/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-05-06T23:48:52.0904132Z\",\r\n \"updatedOn\": \"2022-05-11T03:49:58.0615604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c031e6a8-4391-4de0-8d69-4706a7ed3729\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c031e6a8-4391-4de0-8d69-4706a7ed3729\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"VM Scanner Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role that provides access to disk snapshot for security analysis.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Compute/diskEncryptionSets/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-05-15T22:07:11.4824101Z\",\r\n \"updatedOn\": \"2024-09-10T15:22:50.4935371Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d24ecba3-c1f4-40fa-a7bb-4588a071e8fd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic SAN Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to all resources under Azure Elastic SAN including changing network security policies to unblock data path access\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ElasticSan/elasticSans/*\",\r\n \"Microsoft.ElasticSan/locations/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-05-26T14:43:05.0517355Z\",\r\n \"updatedOn\": \"2022-08-23T19:38:11.070975Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/80dcbedb-47ef-405d-95bd-188a1b4ac406\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"80dcbedb-47ef-405d-95bd-188a1b4ac406\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic SAN Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for control path read access to Azure Elastic SAN\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ElasticSan/elasticSans/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-06-01T09:07:18.102055Z\",\r\n \"updatedOn\": \"2022-08-23T19:38:11.070975Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/af6a70f8-3c9f-4105-acf1-d719e9fca4ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"af6a70f8-3c9f-4105-acf1-d719e9fca4ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Power On Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide permission to the Azure Virtual Desktop Resource Provider to start virtual machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/read\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/start/action\",\r\n \"Microsoft.AzureStackHCI/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-06-29T03:46:13.8314771Z\",\r\n \"updatedOn\": \"2024-02-13T16:21:42.6510575Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/489581de-a3bd-480d-9518-53dea7416b33\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"489581de-a3bd-480d-9518-53dea7416b33\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role is in preview and subject to change. Provide permission to the Azure Virtual Desktop Resource Provider to create, delete, update, start, and stop virtual machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/write\",\r\n \"Microsoft.DesktopVirtualization/hostpools/retrieveRegistrationToken/action\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/write\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/delete\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/disconnect/action\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/sendMessage/action\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionHostConfigurations/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/doNotUseInternalAPI/action\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/retryprovisioning/action\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/availabilitySets/write\",\r\n \"Microsoft.Compute/availabilitySets/vmSizes/read\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/galleries/read\",\r\n \"Microsoft.Compute/galleries/images/read\",\r\n \"Microsoft.Compute/galleries/images/versions/read\",\r\n \"Microsoft.Compute/images/read\",\r\n \"Microsoft.Compute/locations/usages/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/skus/read\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/delete\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/runCommand/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/write\",\r\n \"Microsoft.Compute/virtualMachines/extensions/delete\",\r\n \"Microsoft.Compute/virtualMachines/runCommands/read\",\r\n \"Microsoft.Compute/virtualMachines/runCommands/write\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/usages/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Marketplace/offerTypes/publishers/offers/plans/agreements/read\",\r\n \"Microsoft.KeyVault/vaults/deploy/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.DesktopVirtualization/scalingPlans/read\",\r\n \"Microsoft.DesktopVirtualization/scalingPlans/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-06-29T03:46:13.8314771Z\",\r\n \"updatedOn\": \"2024-09-11T15:31:21.7277586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a959dbd1-f747-45e3-8ba6-dd80f235f97c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a959dbd1-f747-45e3-8ba6-dd80f235f97c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization Power On Off Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide permission to the Azure Virtual Desktop Resource Provider to start and stop virtual machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.AzureStackHCI/operations/read\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/read\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/restart/action\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/start/action\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/stop/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesCancelOperations/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesExecuteDeallocate/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesExecuteHibernate/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesExecuteStart/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesGetOperationErrors/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesGetOperationStatus/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesSubmitDeallocate/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesSubmitHibernate/action\",\r\n \"Microsoft.ComputeSchedule/locations/virtualMachinesSubmitStart/action\",\r\n \"Microsoft.ComputeSchedule/register/action\",\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/delete\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/read\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/sendMessage/action\",\r\n \"Microsoft.DesktopVirtualization/hostpools/sessionhosts/write\",\r\n \"Microsoft.DesktopVirtualization/hostpools/write\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/eventtypes/values/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-06-29T03:46:13.8314771Z\",\r\n \"updatedOn\": \"2024-08-16T18:32:41.4531347Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/40c5ff49-9181-41f8-ae61-143b0e78555e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"40c5ff49-9181-41f8-ae61-143b0e78555e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Access Review Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you grant Access Review System app permissions to discover and revoke access as needed by the access review process.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Management/getEntities/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-07-04T19:06:39.6698534Z\",\r\n \"updatedOn\": \"2022-07-04T19:06:39.6698534Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/76cc9ee4-d5d3-4a45-a930-26add3d73475\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76cc9ee4-d5d3-4a45-a930-26add3d73475\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic SAN Volume Group Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to a volume group in Azure Elastic SAN including changing network security policies to unblock data path access\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/*\",\r\n \"Microsoft.ElasticSan/locations/asyncoperations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-07-04T19:06:39.6698534Z\",\r\n \"updatedOn\": \"2022-08-23T19:38:11.070975Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a8281131-f312-4f34-8d98-ae12be9f0d23\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a8281131-f312-4f34-8d98-ae12be9f0d23\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Trusted Signing Identity Verifier\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage identity or business verification requests. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CodeSigning/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CodeSigning/IdentityVerification/Read\",\r\n \"Microsoft.CodeSigning/IdentityVerification/Write\",\r\n \"Microsoft.CodeSigning/IdentityVerification/Delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-07-29T09:38:19.4833637Z\",\r\n \"updatedOn\": \"2024-10-25T14:18:04.3435129Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4339b7cf-9826-4e41-b4ed-c7f4505dac08\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4339b7cf-9826-4e41-b4ed-c7f4505dac08\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Video Indexer Restricted Viewer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has access to view and search through all video's insights and transcription in the Video Indexer portal. No access to model customization, embedding of widget, downloading videos, or sharing the account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.VideoIndexer/*/read\",\r\n \"Microsoft.VideoIndexer/accounts/*/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.VideoIndexer/*/write\",\r\n \"Microsoft.VideoIndexer/*/delete\",\r\n \"Microsoft.VideoIndexer/accounts/generateAccessToken/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-09T22:16:43.154985Z\",\r\n \"updatedOn\": \"2022-08-09T22:16:43.154985Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a2c4a527-7dc0-4ee3-897b-403ade70fafb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a2c4a527-7dc0-4ee3-897b-403ade70fafb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can access the data in an Azure Monitor Workspace.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Monitor/accounts/data/metrics/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-22T17:29:10.2888534Z\",\r\n \"updatedOn\": \"2022-10-07T22:54:50.720865Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b0d8363b-8ddd-447d-831f-62ca05bff136\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b0d8363b-8ddd-447d-831f-62ca05bff136\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager RBAC Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read-only access to most Kubernetes resources within a namespace in the fleet-managed hub cluster. It does not allow viewing roles or role bindings. This role does not allow viewing Secrets, since reading the contents of Secrets enables access to ServiceAccount credentials in the namespace, which would allow API access as any ServiceAccount in the namespace (a form of privilege escalation). Applying this role at cluster scope will give access across all namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerService/fleets/read\",\r\n \"Microsoft.ContainerService/fleets/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/read\",\r\n \"Microsoft.ContainerService/fleets/configmaps/read\",\r\n \"Microsoft.ContainerService/fleets/endpoints/read\",\r\n \"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/fleets/events/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/limitranges/read\",\r\n \"Microsoft.ContainerService/fleets/namespaces/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\r\n \"Microsoft.ContainerService/fleets/resourcequotas/read\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/read\",\r\n \"Microsoft.ContainerService/fleets/services/read\",\r\n \"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/internalmemberclusters/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverrides/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverridesnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/works/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-22T19:30:13.8996497Z\",\r\n \"updatedOn\": \"2024-10-24T18:43:37.0074966Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/30b27cfc-9c84-438e-b0ce-70e35255df80\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"30b27cfc-9c84-438e-b0ce-70e35255df80\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager RBAC Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read/write access to all Kubernetes resources in the fleet-managed hub cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerService/fleets/read\",\r\n \"Microsoft.ContainerService/fleets/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/fleets/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-22T19:30:13.8996497Z\",\r\n \"updatedOn\": \"2024-03-28T21:19:22.9674826Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18ab4d3d-a1bf-4477-8ad9-8359bc988f69\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager RBAC Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read/write access to Kubernetes resources within a namespace in the fleet-managed hub cluster - provides write permissions on most objects within a a namespace, with the exception of ResourceQuota object and the namespace object itself. Applying this role at cluster scope will give access across all namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerService/fleets/read\",\r\n \"Microsoft.ContainerService/fleets/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/*\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/*\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/*\",\r\n \"Microsoft.ContainerService/fleets/authorization.k8s.io/localsubjectaccessreviews/write\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/*\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/*\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/*\",\r\n \"Microsoft.ContainerService/fleets/configmaps/*\",\r\n \"Microsoft.ContainerService/fleets/endpoints/*\",\r\n \"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/fleets/events/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/*\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/*\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/*\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/*\",\r\n \"Microsoft.ContainerService/fleets/limitranges/read\",\r\n \"Microsoft.ContainerService/fleets/namespaces/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/*\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/*\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/*\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/*\",\r\n \"Microsoft.ContainerService/fleets/rbac.authorization.k8s.io/rolebindings/*\",\r\n \"Microsoft.ContainerService/fleets/rbac.authorization.k8s.io/roles/*\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/*\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/*\",\r\n \"Microsoft.ContainerService/fleets/resourcequotas/read\",\r\n \"Microsoft.ContainerService/fleets/secrets/*\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/*\",\r\n \"Microsoft.ContainerService/fleets/services/*\",\r\n \"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/internalmemberclusters/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverrides/*\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverridesnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/works/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-22T19:30:13.8996497Z\",\r\n \"updatedOn\": \"2024-10-22T15:14:07.0554269Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/434fb43a-c01c-447e-9f67-c3ad923cfaba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"434fb43a-c01c-447e-9f67-c3ad923cfaba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager RBAC Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read/write access to most Kubernetes resources within a namespace in the fleet-managed hub cluster. This role does not allow viewing or modifying roles or role bindings. However, this role allows accessing Secrets as any ServiceAccount in the namespace, so it can be used to gain the API access levels of any ServiceAccount in the namespace.  Applying this role at cluster scope will give access across all namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerService/fleets/read\",\r\n \"Microsoft.ContainerService/fleets/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/write\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/write\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/write\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/write\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/write\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/read\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/write\",\r\n \"Microsoft.ContainerService/fleets/configmaps/read\",\r\n \"Microsoft.ContainerService/fleets/configmaps/write\",\r\n \"Microsoft.ContainerService/fleets/endpoints/read\",\r\n \"Microsoft.ContainerService/fleets/endpoints/write\",\r\n \"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/fleets/events/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/write\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/write\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/write\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/write\",\r\n \"Microsoft.ContainerService/fleets/limitranges/read\",\r\n \"Microsoft.ContainerService/fleets/namespaces/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/write\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/write\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/write\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/write\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/write\",\r\n \"Microsoft.ContainerService/fleets/resourcequotas/read\",\r\n \"Microsoft.ContainerService/fleets/secrets/read\",\r\n \"Microsoft.ContainerService/fleets/secrets/write\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/read\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/write\",\r\n \"Microsoft.ContainerService/fleets/services/read\",\r\n \"Microsoft.ContainerService/fleets/services/write\",\r\n \"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/internalmemberclusters/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverrides/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverrides/write\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverridesnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/works/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-22T19:30:13.8996497Z\",\r\n \"updatedOn\": \"2024-10-22T15:14:09.1397927Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5af6afb3-c06c-4fa4-8848-71a8aee05683\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5af6afb3-c06c-4fa4-8848-71a8aee05683\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read/write access to Azure resources provided by Azure Kubernetes Fleet Manager, including fleets, fleet members, fleet update strategies, fleet update runs, etc.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/fleets/*\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-22T19:30:13.8996497Z\",\r\n \"updatedOn\": \"2024-03-28T21:19:22.9654862Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/63bb64ad-9799-4770-b5c3-24ed299a07bf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"63bb64ad-9799-4770-b5c3-24ed299a07bf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Namespace User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows a user to read namespace resources and retrieve kubeconfig for the cluster\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.KubernetesConfiguration/namespaces/read\",\r\n \"Microsoft.KubernetesConfiguration/namespaces/listUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-08-24T10:06:57.4909513Z\",\r\n \"updatedOn\": \"2022-08-24T10:06:57.4909513Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ba79058c-0414-4a34-9e42-c3399d80cd5a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ba79058c-0414-4a34-9e42-c3399d80cd5a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Labeling - Labeler\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can label data in Labeling.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/experiments/runs/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/labeling/projects/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/labeling/projects/summary/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/labeling/labels/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/labeling/labels/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-02T22:35:46.9532934Z\",\r\n \"updatedOn\": \"2022-09-08T23:03:02.1057014Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c6decf44-fd0a-444c-a844-d653c394e7ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c6decf44-fd0a-444c-a844-d653c394e7ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Role Based Access Control Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage access to Azure resources by assigning roles using Azure RBAC. This role does not allow you to manage access using other ways, such as Azure Policy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-07T02:29:29.6592395Z\",\r\n \"updatedOn\": \"2023-11-09T20:56:14.1691995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f58310d9-a9f6-439a-9e8d-f62e7b41a168\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Template Spec Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to Template Specs at the assigned scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/templateSpecs/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-08T01:58:14.2969628Z\",\r\n \"updatedOn\": \"2022-09-08T01:58:14.2969628Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/392ae280-861d-42bd-9ea5-08ee6d83b80e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"392ae280-861d-42bd-9ea5-08ee6d83b80e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Template Spec Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows full access to Template Spec operations at the assigned scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/templateSpecs/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-08T01:58:14.2969628Z\",\r\n \"updatedOn\": \"2022-09-08T01:58:14.2969628Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1c9b6475-caf0-4164-b5a1-2142a7116f4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1c9b6475-caf0-4164-b5a1-2142a7116f4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Sentinel Playbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft Sentinel Playbook Operator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Logic/workflows/read\",\r\n \"Microsoft.Logic/workflows/triggers/listCallbackUrl/action\",\r\n \"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/listCallbackUrl/action\",\r\n \"Microsoft.Web/sites/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-20T19:20:30.6118766Z\",\r\n \"updatedOn\": \"2022-12-07T20:30:39.3980234Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/51d6186e-6489-4900-b93f-92e23144cca5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"51d6186e-6489-4900-b93f-92e23144cca5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Deployment Environments User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to manage environment resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DevCenter/projects/read\",\r\n \"Microsoft.DevCenter/projects/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.DevCenter/projects/pools/read\",\r\n \"Microsoft.DevCenter/projects/pools/schedules/read\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.DevCenter/projects/users/environments/userRead/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/userWrite/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/userDelete/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/userActionManage/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/userOutputsRead/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-22T01:04:20.3753915Z\",\r\n \"updatedOn\": \"2023-11-11T03:17:04.9397265Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18e40d4e-8d2e-438d-97e1-9528336e149c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18e40d4e-8d2e-438d-97e1-9528336e149c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Connect Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Spring Apps Connect Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/apps/deployments/connect/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-23T11:08:28.467483Z\",\r\n \"updatedOn\": \"2022-09-23T11:08:28.467483Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/80558df3-64f9-4c0f-b32d-e5094b036b0b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"80558df3-64f9-4c0f-b32d-e5094b036b0b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Remote Debugging Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Spring Apps Remote Debugging Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/apps/deployments/remotedebugging/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-23T11:23:41.716385Z\",\r\n \"updatedOn\": \"2022-09-23T11:23:41.716385Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a99b0159-1064-4c22-a57b-c9b3caa1c054\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a99b0159-1064-4c22-a57b-c9b3caa1c054\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AzureML Registry User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform all actions on Machine Learning Services Registry assets as well as get Registry resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/registries/read\",\r\n \"Microsoft.MachineLearningServices/registries/assets/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-27T19:16:52.1052938Z\",\r\n \"updatedOn\": \"2022-09-27T19:16:52.1052938Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1823dd4f-9b8c-4ab6-ab4e-7397a3684615\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1823dd4f-9b8c-4ab6-ab4e-7397a3684615\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AzureML Compute Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can access and perform CRUD operations on Machine Learning Services managed compute resources (including Notebook VMs).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/computes/*\",\r\n \"Microsoft.MachineLearningServices/workspaces/notebooks/vm/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-09-27T19:16:52.1052938Z\",\r\n \"updatedOn\": \"2022-09-27T19:16:52.1052938Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e503ece1-11d0-4e8e-8e2c-7a6c3bf38815\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e503ece1-11d0-4e8e-8e2c-7a6c3bf38815\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Center for SAP solutions reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role provides read access to all capabilities of Azure Center for SAP solutions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Workloads/sapvirtualInstances/*/read\",\r\n \"Microsoft.Workloads/Locations/*/read\",\r\n \"Microsoft.Workloads/Operations/read\",\r\n \"Microsoft.Workloads/Locations/OperationStatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\r\n \"Microsoft.Network/networkInterfaces/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\r\n \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Network/loadBalancers/networkInterfaces/read\",\r\n \"Microsoft.Network/loadBalancers/outboundRules/read\",\r\n \"Microsoft.Network/loadBalancers/virtualMachines/read\",\r\n \"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/privateEndpoints/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/disks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-03T19:05:48.2297299Z\",\r\n \"updatedOn\": \"2024-01-15T16:09:45.4170106Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/05352d14-a920-4328-a0de-4cbe7430e26b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"05352d14-a920-4328-a0de-4cbe7430e26b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Center for SAP solutions service role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Center for SAP solutions service role - This role is intended to be used for providing the permissions to user assigned managed identity. Azure Center for SAP solutions will use this identity to deploy and manage SAP systems.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/write\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/write\",\r\n \"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\r\n \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Network/loadBalancers/networkInterfaces/read\",\r\n \"Microsoft.Network/loadBalancers/outboundRules/read\",\r\n \"Microsoft.Network/loadBalancers/virtualMachines/read\",\r\n \"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\r\n \"Microsoft.Network/networkInterfaces/loadBalancers/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/ipconfigurations/join/action\",\r\n \"Microsoft.Network/privateEndpoints/read\",\r\n \"Microsoft.Network/privateEndpoints/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/frontendIPConfigurations/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinLoadBalancer/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/PrivateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/write\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/availabilitySets/write\",\r\n \"Microsoft.Compute/skus/read\",\r\n \"Microsoft.Compute/sshPublicKeys/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/write\",\r\n \"Microsoft.Compute/virtualMachines/extensions/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-03T19:05:48.2297299Z\",\r\n \"updatedOn\": \"2023-02-03T07:40:22.4872528Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/aabbc5dd-1af0-458b-a942-81af88f9c138\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"aabbc5dd-1af0-458b-a942-81af88f9c138\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Center for SAP solutions administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role provides read and write access to all capabilities of Azure Center for SAP solutions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Workloads/sapvirtualInstances/*/read\",\r\n \"Microsoft.Workloads/sapVirtualInstances/*/write\",\r\n \"Microsoft.Workloads/sapVirtualInstances/*/delete\",\r\n \"Microsoft.Workloads/Locations/*/action\",\r\n \"Microsoft.Workloads/Locations/*/read\",\r\n \"Microsoft.Workloads/sapVirtualInstances/*/start/action\",\r\n \"Microsoft.Workloads/sapVirtualInstances/*/stop/action\",\r\n \"Microsoft.Workloads/connectors/*/read\",\r\n \"Microsoft.Workloads/connectors/*/write\",\r\n \"Microsoft.Workloads/connectors/*/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\r\n \"Microsoft.Network/networkInterfaces/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\r\n \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Network/loadBalancers/networkInterfaces/read\",\r\n \"Microsoft.Network/loadBalancers/outboundRules/read\",\r\n \"Microsoft.Network/loadBalancers/virtualMachines/read\",\r\n \"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Network/privateEndpoints/read\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/sshPublicKeys/read\",\r\n \"Microsoft.Compute/sshPublicKeys/write\",\r\n \"Microsoft.Compute/sshPublicKeys/*/generateKeyPair/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/delete\",\r\n \"Microsoft.Compute/disks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-04T19:16:18.4584328Z\",\r\n \"updatedOn\": \"2023-06-22T15:42:45.8397465Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7b0c7e81-271f-4c71-90bf-e30bdfdbc2f7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7b0c7e81-271f-4c71-90bf-e30bdfdbc2f7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AppGw for Containers Configuration Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows access and configuration updates to Application Gateway for Containers resource.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceNetworking/trafficControllers/read\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/write\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/delete\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/frontends/read\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/frontends/write\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/frontends/delete\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/associations/read\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/associations/write\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/associations/delete\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/*/read\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/*/write\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/*/delete\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/read\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/write\",\r\n \"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-06T05:17:45.6989401Z\",\r\n \"updatedOn\": \"2024-10-30T15:35:07.021944Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fbc52c3f-28ad-4303-a892-8a056630b8f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbc52c3f-28ad-4303-a892-8a056630b8f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR SMART User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user to access FHIR Service according to SMART on FHIR specification\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/smart/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/smart/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-26T19:22:25.1242244Z\",\r\n \"updatedOn\": \"2022-12-07T22:32:44.8392379Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4ba50f17-9666-485c-a643-ff00808643f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4ba50f17-9666-485c-a643-ff00808643f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services OpenAI Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access including the ability to fine-tune, deploy and generate text\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/deployments/write\",\r\n \"Microsoft.CognitiveServices/accounts/deployments/delete\",\r\n \"Microsoft.CognitiveServices/accounts/raiPolicies/read\",\r\n \"Microsoft.CognitiveServices/accounts/raiPolicies/write\",\r\n \"Microsoft.CognitiveServices/accounts/raiPolicies/delete\",\r\n \"Microsoft.CognitiveServices/accounts/commitmentplans/read\",\r\n \"Microsoft.CognitiveServices/accounts/commitmentplans/write\",\r\n \"Microsoft.CognitiveServices/accounts/commitmentplans/delete\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-27T00:27:28.391312Z\",\r\n \"updatedOn\": \"2023-08-28T15:04:12.4261733Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a001fd3d-188f-4b5d-821b-7da978bf7442\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services OpenAI User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Ability to view files, models, deployments. Readers can't make any changes They can inference and create images\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/engines/completions/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/engines/search/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/engines/generate/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/audio/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/search/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/completions/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/chat/completions/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/realtime/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/extensions/chat/completions/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/deployments/embeddings/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/images/generations/action\",\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/assistants/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/stored-completions/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-27T00:27:28.391312Z\",\r\n \"updatedOn\": \"2024-12-05T16:14:32.5827273Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Impact Reporter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows access to create/report, read and delete impacts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Impact/WorkloadImpacts/*\",\r\n \"Microsoft.Impact/ImpactCategories/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-28T00:36:17.1232767Z\",\r\n \"updatedOn\": \"2022-11-14T18:04:31.5896097Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/36e80216-a7e8-4f42-a7e1-f12c98cbaf8a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36e80216-a7e8-4f42-a7e1-f12c98cbaf8a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Impact Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read-only access to reported impacts and impact categories\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Impact/WorkloadImpacts/read\",\r\n \"Microsoft.Impact/ImpactCategories/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-10-28T00:51:29.5105806Z\",\r\n \"updatedOn\": \"2022-11-14T18:04:31.5896097Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/68ff5d27-c7f5-4fa9-a21c-785d0df7bd9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"68ff5d27-c7f5-4fa9-a21c-785d0df7bd9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ContainerApp Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View all containerapp resources, but does not allow you to make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.App/containerApps/*/read\",\r\n \"Microsoft.App/containerApps/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-11-14T18:04:30.1574093Z\",\r\n \"updatedOn\": \"2023-01-02T18:11:44.7991494Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster Monitoring User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster monitoring user credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterMonitoringUserCredential/action\",\r\n \"Microsoft.ContainerService/managedClusters/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-11-14T18:04:30.1574093Z\",\r\n \"updatedOn\": \"2023-02-07T16:15:04.0057947Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1afdec4b-e479-420e-99e7-f82237c7c5e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1afdec4b-e479-420e-99e7-f82237c7c5e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Resource Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Custom Role for AzureStackHCI RP to manage hybrid compute machines and hybrid connectivity endpoints in a resource group\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/*/read\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/write\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/*/read\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridConnectivity/endpoints/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/read\",\r\n \"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/write\",\r\n \"Microsoft.HybridConnectivity/endpoints/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.EdgeMarketplace/locations/operationStatuses/read\",\r\n \"Microsoft.EdgeMarketPlace/offers/getAccessToken/action\",\r\n \"Microsoft.EdgeMarketPlace/offers/generateAccessToken/action\",\r\n \"Microsoft.EdgeMarketplace/publishers/read\",\r\n \"Microsoft.EdgeMarketplace/offers/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.Attestation/attestationProviders/write\",\r\n \"Microsoft.Attestation/attestationProviders/read\",\r\n \"Microsoft.Attestation/attestationProviders/delete\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/write\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-11-15T18:14:23.5051702Z\",\r\n \"updatedOn\": \"2024-08-27T15:13:33.329785Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f5819b54-e033-4d82-ac66-4fec3cbf3f4c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f5819b54-e033-4d82-ac66-4fec3cbf3f4c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SqlDb Migration Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role for SqlDb migration\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/write\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/write\",\r\n \"Microsoft.Sql/servers/databases/delete\",\r\n \"Microsoft.DataMigration/locations/operationResults/read\",\r\n \"Microsoft.DataMigration/locations/operationStatuses/read\",\r\n \"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\",\r\n \"Microsoft.DataMigration/databaseMigrations/write\",\r\n \"Microsoft.DataMigration/databaseMigrations/read\",\r\n \"Microsoft.DataMigration/databaseMigrations/delete\",\r\n \"Microsoft.DataMigration/databaseMigrations/cancel/action\",\r\n \"Microsoft.DataMigration/databaseMigrations/cutover/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/write\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/delete\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/read\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\",\r\n \"Microsoft.DataMigration/register/action\",\r\n \"Microsoft.DataMigration/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2022-12-08T01:05:20.5512514Z\",\r\n \"updatedOn\": \"2023-02-21T16:08:29.5359253Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/189207d4-bb67-4208-a635-b06afe8b2c57\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"189207d4-bb67-4208-a635-b06afe8b2c57\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services GDU Solution\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to GDU Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-12T12:10:00.3896956Z\",\r\n \"updatedOn\": \"2024-05-29T15:22:21.435313Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c4bc862a-3b64-4a35-a021-a380c159b042\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c4bc862a-3b64-4a35-a021-a380c159b042\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services Imagery Solution\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to Imagery Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-12T12:10:00.3896956Z\",\r\n \"updatedOn\": \"2024-05-29T15:22:21.4373143Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ef29765d-0d37-4119-a4f8-f9f9902c9588\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ef29765d-0d37-4119-a4f8-f9f9902c9588\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Center for SAP solutions Service role for management\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role has permissions that the user assigned managed identity must have to enable registration for the existing systems.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-13T11:09:47.8459997Z\",\r\n \"updatedOn\": \"2023-02-03T07:40:22.4872528Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0105a6b0-4bb9-43d2-982a-12806f9faddb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0105a6b0-4bb9-43d2-982a-12806f9faddb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Center for SAP solutions Management role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role has permissions which allow users to register existing systems, view and manage systems.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-13T11:09:47.8459997Z\",\r\n \"updatedOn\": \"2023-02-03T07:40:22.4872528Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6d949e1d-41e2-46e3-8920-c6e4f31a8310\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d949e1d-41e2-46e3-8920-c6e4f31a8310\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Agentless Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants Microsoft Defender for Cloud access to Azure Kubernetes Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/write\",\r\n \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/read\",\r\n \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/delete\",\r\n \"Microsoft.ContainerService/managedClusters/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/providers/features/register/action\",\r\n \"Microsoft.Security/pricings/securityoperators/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-13T15:12:20.5820146Z\",\r\n \"updatedOn\": \"2023-08-25T15:34:13.2516334Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d5a2ae44-610b-4500-93be-660a0c5f5ca6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Usage Billing Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Usage Billing shared BuiltIn role to be used for all Customer Account Authentication\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.UsageBilling/accounts/inputs/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-13T22:47:11.6100638Z\",\r\n \"updatedOn\": \"2023-01-27T19:26:48.9547723Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f0310ce6-e953-4cf8-b892-fb1c87eaf7f6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f0310ce6-e953-4cf8-b892-fb1c87eaf7f6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Container Registry secure supply chain operator service role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants Microsoft Defender for Cloud access to Azure Container Registry for security assessment of container images\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\",\r\n \"Microsoft.ContainerRegistry/registries/push/write\",\r\n \"Microsoft.ContainerRegistry/registries/artifacts/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/write\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/write\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/delete\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-01-19T17:59:50.7903056Z\",\r\n \"updatedOn\": \"2024-06-13T15:33:45.0796716Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/96062cf7-95ca-4f89-9b9d-2a2aa47356af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"96062cf7-95ca-4f89-9b9d-2a2aa47356af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SqlMI Migration Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role for SqlMI migration\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sql/managedInstances/read\",\r\n \"Microsoft.Sql/managedInstances/write\",\r\n \"Microsoft.Sql/managedInstances/databases/read\",\r\n \"Microsoft.Sql/managedInstances/databases/write\",\r\n \"Microsoft.Sql/managedInstances/databases/delete\",\r\n \"Microsoft.Sql/managedInstances/metrics/read\",\r\n \"Microsoft.DataMigration/locations/operationResults/read\",\r\n \"Microsoft.DataMigration/locations/operationStatuses/read\",\r\n \"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\",\r\n \"Microsoft.DataMigration/databaseMigrations/write\",\r\n \"Microsoft.DataMigration/databaseMigrations/read\",\r\n \"Microsoft.DataMigration/databaseMigrations/delete\",\r\n \"Microsoft.DataMigration/databaseMigrations/cancel/action\",\r\n \"Microsoft.DataMigration/databaseMigrations/cutover/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/write\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/delete\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/read\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\",\r\n \"Microsoft.DataMigration/register/action\",\r\n \"Microsoft.DataMigration/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-01T16:14:46.1546624Z\",\r\n \"updatedOn\": \"2023-02-21T16:08:31.3805596Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1d335eef-eee1-47fe-a9e0-53214eba8872\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d335eef-eee1-47fe-a9e0-53214eba8872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SqlVM Migration Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role for SqlVM migration\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DataMigration/locations/operationResults/read\",\r\n \"Microsoft.DataMigration/locations/operationStatuses/read\",\r\n \"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\",\r\n \"Microsoft.DataMigration/databaseMigrations/write\",\r\n \"Microsoft.DataMigration/databaseMigrations/read\",\r\n \"Microsoft.DataMigration/databaseMigrations/delete\",\r\n \"Microsoft.DataMigration/databaseMigrations/cancel/action\",\r\n \"Microsoft.DataMigration/databaseMigrations/cutover/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/write\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/delete\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/read\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\r\n \"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\",\r\n \"Microsoft.DataMigration/register/action\",\r\n \"Microsoft.DataMigration/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.SqlVirtualMachine/sqlVirtualMachines/read\",\r\n \"Microsoft.SqlVirtualMachine/sqlVirtualMachines/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-01T16:14:48.7360987Z\",\r\n \"updatedOn\": \"2023-02-21T16:08:29.7399332Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ae8036db-e102-405b-a1b9-bae082ea436d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae8036db-e102-405b-a1b9-bae082ea436d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services CWUM Solution\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to CWUM Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-01T16:14:48.7360987Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4430427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a9b99099-ead7-47db-8fcf-072597a61dfa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a9b99099-ead7-47db-8fcf-072597a61dfa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Front Door Domain Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"For internal use within Azure. Can manage Azure Front Door domains, but can't grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Cdn/operationresults/profileresults/customdomainresults/read\",\r\n \"Microsoft.Cdn/profiles/customdomains/read\",\r\n \"Microsoft.Cdn/profiles/customdomains/write\",\r\n \"Microsoft.Cdn/profiles/customdomains/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-03T15:30:15.5041698Z\",\r\n \"updatedOn\": \"2023-12-08T09:25:10.8300706Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0ab34830-df19-4f8c-b84e-aa85b8afa6e8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0ab34830-df19-4f8c-b84e-aa85b8afa6e8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Front Door Secret Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"For internal use within Azure. Can manage Azure Front Door secrets, but can't grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Cdn/operationresults/profileresults/secretresults/read\",\r\n \"Microsoft.Cdn/profiles/secrets/read\",\r\n \"Microsoft.Cdn/profiles/secrets/write\",\r\n \"Microsoft.Cdn/profiles/secrets/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-03T15:30:15.5041698Z\",\r\n \"updatedOn\": \"2023-12-08T08:24:04.8674145Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3f2eb865-5811-4578-b90a-6fc6fa0df8e5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3f2eb865-5811-4578-b90a-6fc6fa0df8e5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Front Door Domain Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"For internal use within Azure. Can view Azure Front Door domains, but can't make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Cdn/operationresults/profileresults/customdomainresults/read\",\r\n \"Microsoft.Cdn/profiles/customdomains/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-03T15:30:15.5041698Z\",\r\n \"updatedOn\": \"2023-12-08T09:25:10.8410705Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0f99d363-226e-4dca-9920-b807cf8e1a5f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0f99d363-226e-4dca-9920-b807cf8e1a5f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Front Door Secret Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"For internal use within Azure. Can view Azure Front Door secrets, but can't make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Cdn/operationresults/profileresults/secretresults/read\",\r\n \"Microsoft.Cdn/profiles/secrets/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-03T15:30:20.1814931Z\",\r\n \"updatedOn\": \"2023-12-08T08:24:04.8674145Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0db238c4-885e-4c4f-a933-aa2cef684fca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0db238c4-885e-4c4f-a933-aa2cef684fca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"MySQL Backup And Export Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage backup and export resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DBforMySQL/flexibleServers/validateBackup/action\",\r\n \"Microsoft.DBforMySQL/flexibleServers/backupAndExport/action\",\r\n \"Microsoft.DBforMySQL/locations/operationResults/read\",\r\n \"Microsoft.DBforMySQL/locations/azureAsyncOperation/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-06T16:01:22.3871138Z\",\r\n \"updatedOn\": \"2023-05-15T15:01:03.12045Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d18ad5f3-1baf-4119-b49b-d944edb1f9d0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d18ad5f3-1baf-4119-b49b-d944edb1f9d0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"LocalNGFirewallAdministrator role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user to create, modify, describe, or delete NGFirewalls.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"PaloAltoNetworks.Cloudngfw/firewalls/*\",\r\n \"PaloAltoNetworks.Cloudngfw/localRulestacks/read\",\r\n \"PaloAltoNetworks.Cloudngfw/globalRulestacks/read\",\r\n \"PaloAltoNetworks.Cloudngfw/Locations/operationStatuses/read\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\",\r\n \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/networkVirtualAppliances/read\",\r\n \"Microsoft.Network/networkVirtualAppliances/write\",\r\n \"Microsoft.Network/networkVirtualAppliances/delete\",\r\n \"Microsoft.Network/virtualHubs/read\",\r\n \"Microsoft.Network/virtualWans/read\",\r\n \"Microsoft.Network/virtualWans/virtualHubs/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-06T16:01:22.3881136Z\",\r\n \"updatedOn\": \"2023-03-14T15:28:19.3614218Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a8835c7d-b5cb-47fa-b6f0-65ea10ce07a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a8835c7d-b5cb-47fa-b6f0-65ea10ce07a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack HCI Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to the cluster and its resources, including the ability to register Azure Stack HCI and assign others as Azure Arc HCI VM Contributor and/or Azure Arc HCI VM Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStackHCI/register/action\",\r\n \"Microsoft.AzureStackHCI/Unregister/Action\",\r\n \"Microsoft.AzureStackHCI/clusters/*\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/Write\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Write\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/Delete\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Delete\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/join/action\",\r\n \"Microsoft.HybridCompute/register/action\",\r\n \"Microsoft.GuestConfiguration/register/action\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.HybridConnectivity/register/action\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.AzureStackHCI/*\",\r\n \"Microsoft.AzureStackHCI/EdgeMachines/*\",\r\n \"Microsoft.AzureStackHCI/DevicePools/*\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/assessPatches/action\",\r\n \"Microsoft.HybridCompute/machines/installPatches/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\r\n \"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/write\",\r\n \"Microsoft.HybridCompute/machines/runcommands/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/licenses/write\",\r\n \"Microsoft.HybridCompute/licenses/delete\",\r\n \"Microsoft.ResourceConnector/register/action\",\r\n \"Microsoft.ResourceConnector/appliances/read\",\r\n \"Microsoft.ResourceConnector/appliances/write\",\r\n \"Microsoft.ResourceConnector/appliances/delete\",\r\n \"Microsoft.ResourceConnector/locations/operationresults/read\",\r\n \"Microsoft.ResourceConnector/locations/operationsstatus/read\",\r\n \"Microsoft.ResourceConnector/appliances/listClusterUserCredential/action\",\r\n \"Microsoft.ResourceConnector/appliances/listKeys/action\",\r\n \"Microsoft.ResourceConnector/operations/read\",\r\n \"Microsoft.ExtendedLocation/register/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/write\",\r\n \"Microsoft.ExtendedLocation/customLocations/delete\",\r\n \"Microsoft.EdgeMarketplace/offers/read\",\r\n \"Microsoft.EdgeMarketplace/publishers/read\",\r\n \"Microsoft.Kubernetes/register/action\",\r\n \"Microsoft.KubernetesConfiguration/register/action\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.KubernetesConfiguration/namespaces/read\",\r\n \"Microsoft.KubernetesConfiguration/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Write\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Read\",\r\n \"Microsoft.HybridContainerService/register/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{f5819b54-e033-4d82-ac66-4fec3cbf3f4c, cd570a14-e51a-42ad-bac8-bafd67325302, b64e21ea-ac4e-4cdf-9dc9-5b892992bee7, 4b3fe76c-f777-4d24-a2d7-b027b0f7b273, 874d1c73-6003-4e60-a13a-cb31ea190a85,865ae368-6a45-4bd1-8fbf-0d5151f56fc1,7b1f81f9-4196-4058-8aae-762e593270df,4633458b-17de-408a-b874-0445c86b69e6,c99c945f-8bd1-4fb1-a903-01460aae6068})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{f5819b54-e033-4d82-ac66-4fec3cbf3f4c, cd570a14-e51a-42ad-bac8-bafd67325302, b64e21ea-ac4e-4cdf-9dc9-5b892992bee7, 4b3fe76c-f777-4d24-a2d7-b027b0f7b273, 874d1c73-6003-4e60-a13a-cb31ea190a85,865ae368-6a45-4bd1-8fbf-0d5151f56fc1,7b1f81f9-4196-4058-8aae-762e593270df,4633458b-17de-408a-b874-0445c86b69e6,c99c945f-8bd1-4fb1-a903-01460aae6068}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-06T16:01:22.3871138Z\",\r\n \"updatedOn\": \"2025-01-31T17:57:03.793784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bda0d508-adf1-4af0-9c28-88919fc3ae06\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bda0d508-adf1-4af0-9c28-88919fc3ae06\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"LocalRulestacksAdministrator role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows users to create, modify, describe, or delete Rulestacks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"PaloAltoNetworks.Cloudngfw/localRulestacks/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-02-06T16:01:22.3891153Z\",\r\n \"updatedOn\": \"2023-02-21T16:08:31.3805596Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bfc3b73d-c6ff-45eb-9a5f-40298295bf20\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfc3b73d-c6ff-45eb-9a5f-40298295bf20\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Extension for SQL Server Deployment\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.AzureArcData service role to enable deployment of Azure Extension for SQL Server\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-10T19:24:06.0772059Z\",\r\n \"updatedOn\": \"2023-03-16T22:04:26.5984064Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7392c568-9289-4bde-aaaa-b7131215889d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7392c568-9289-4bde-aaaa-b7131215889d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Read and Batch Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role can be used to assign read and batch actions on Azure Maps.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/services/*/read\",\r\n \"Microsoft.Maps/accounts/services/batch/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-16T22:04:26.5974054Z\",\r\n \"updatedOn\": \"2023-05-17T15:23:09.9109438Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d6470a16-71bd-43ab-86b3-6f3a73f4e787\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d6470a16-71bd-43ab-86b3-6f3a73f4e787\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Workspace Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has read-only access to entities in the workspace. This role should be assigned on the workspace scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-22T15:15:20.4542963Z\",\r\n \"updatedOn\": \"2023-03-22T15:15:20.4542963Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ef1c2c96-4a77-49e8-b9a4-6179fe1d2fd2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ef1c2c96-4a77-49e8-b9a4-6179fe1d2fd2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Workspace API Product Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has read access to entities in the workspace and read and write access to entities for publishing APIs. This role should be assigned on the workspace scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/workspaces/*/read\",\r\n \"Microsoft.ApiManagement/service/workspaces/products/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/subscriptions/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/groups/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/tags/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/notifications/*\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-22T15:15:20.4542963Z\",\r\n \"updatedOn\": \"2023-03-22T15:15:20.4542963Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/73c2c328-d004-4c5e-938c-35c6f5679a1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c2c328-d004-4c5e-938c-35c6f5679a1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Workspace API Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has read access to entities in the workspace and read and write access to entities for editing APIs. This role should be assigned on the workspace scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/workspaces/*/read\",\r\n \"Microsoft.ApiManagement/service/workspaces/apis/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/apiVersionSets/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/policies/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/schemas/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/products/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/policyFragments/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/namedValues/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/tags/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/backends/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/certificates/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/diagnostics/*\",\r\n \"Microsoft.ApiManagement/service/workspaces/loggers/*\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-22T15:15:20.4542963Z\",\r\n \"updatedOn\": \"2024-07-22T15:08:54.4352609Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/56328988-075d-4c6a-8766-d93edd6725b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"56328988-075d-4c6a-8766-d93edd6725b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Workspace API Product Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has the same access as API Management Service Workspace API Developer as well as read access to users and write access to allow assigning users to groups. This role should be assigned on the service scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/users/read\",\r\n \"Microsoft.ApiManagement/service/tags/read\",\r\n \"Microsoft.ApiManagement/service/tags/apiLinks/*\",\r\n \"Microsoft.ApiManagement/service/tags/operationLinks/*\",\r\n \"Microsoft.ApiManagement/service/tags/productLinks/*\",\r\n \"Microsoft.ApiManagement/service/products/read\",\r\n \"Microsoft.ApiManagement/service/products/apiLinks/*\",\r\n \"Microsoft.ApiManagement/service/groups/read\",\r\n \"Microsoft.ApiManagement/service/groups/users/*\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/authorizationServers/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-22T15:15:20.4542963Z\",\r\n \"updatedOn\": \"2024-08-30T15:40:51.7523528Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d59a3e9c-6d52-4a5a-aeed-6bf3cf0e31da\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d59a3e9c-6d52-4a5a-aeed-6bf3cf0e31da\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Workspace API Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Has read access to tags and products and write access to allow: assigning APIs to products, assigning tags to products and APIs. This role should be assigned on the service scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/tags/read\",\r\n \"Microsoft.ApiManagement/service/tags/apiLinks/*\",\r\n \"Microsoft.ApiManagement/service/tags/operationLinks/*\",\r\n \"Microsoft.ApiManagement/service/tags/productLinks/*\",\r\n \"Microsoft.ApiManagement/service/products/read\",\r\n \"Microsoft.ApiManagement/service/products/apiLinks/*\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/authorizationServers/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-22T15:15:22.2253607Z\",\r\n \"updatedOn\": \"2024-08-30T15:40:51.7523528Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9565a273-41b9-4368-97d2-aeb0c976a9b3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9565a273-41b9-4368-97d2-aeb0c976a9b3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Workspace Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage the workspace and view, but not modify its members. This role should be assigned on the workspace scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/workspaces/*\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-22T15:15:21.2657951Z\",\r\n \"updatedOn\": \"2023-03-22T15:15:21.2657951Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0c34c906-8d99-4cb7-8bb7-33f5b0a1a799\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0c34c906-8d99-4cb7-8bb7-33f5b0a1a799\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data Privileged Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Customer has read access on Azure Storage file shares.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/readFileBackupSemantics/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-24T20:36:33.5999978Z\",\r\n \"updatedOn\": \"2023-04-07T19:31:54.7331401Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b8eda974-7b85-4f76-af95-65846b26df6d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b8eda974-7b85-4f76-af95-65846b26df6d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data Privileged Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Customer has read, write, delete and modify NTFS permission access on Azure Storage file shares.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/readFileBackupSemantics/action\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/writeFileBackupSemantics/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-24T20:51:46.4662516Z\",\r\n \"updatedOn\": \"2023-04-07T19:31:53.4135545Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/69566ab7-960f-475b-8e7c-b3118f30c6bd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"69566ab7-960f-475b-8e7c-b3118f30c6bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Windows 365 Network User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role is used by Windows 365 to read virtual networks and join the designated virtual networks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/usages/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-27T15:08:56.6070697Z\",\r\n \"updatedOn\": \"2023-07-27T15:18:15.2012422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7eabc9a4-85f7-4f71-b8ab-75daaccc1033\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7eabc9a4-85f7-4f71-b8ab-75daaccc1033\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Windows 365 Network Interface Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role is used by Windows 365 to provision required network resources and join Microsoft-hosted VMs to network interfaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourcegroups/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/usages/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/effectiveNetworkSecurityGroups/action\",\r\n \"Microsoft.Network/networkInterfaces/effectiveRouteTable/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-27T15:08:58.3984832Z\",\r\n \"updatedOn\": \"2023-07-27T15:18:15.2012422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1f135831-5bbe-4924-9016-264044c00788\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1f135831-5bbe-4924-9016-264044c00788\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Windows365SubscriptionReader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read subscriptions, images, azure firewalls. This role is used in Windows365 scenarios.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-03-27T15:08:58.3984832Z\",\r\n \"updatedOn\": \"2023-03-27T15:08:58.3984832Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3d55a8f6-4133-418d-8051-facdb1735758\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3d55a8f6-4133-418d-8051-facdb1735758\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Compliance Automation Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, download, modify and delete reports objects and related other resource objects.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppComplianceAutomation/*\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/write\",\r\n \"Microsoft.Storage/storageAccounts/fileservices/write\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.PolicyInsights/policyStates/queryResults/action\",\r\n \"Microsoft.PolicyInsights/policyStates/triggerEvaluation/action\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/tags/read\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Security/automations/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Security/automations/delete\",\r\n \"Microsoft.Security/automations/write\",\r\n \"Microsoft.Security/register/action\",\r\n \"Microsoft.Security/unregister/action\",\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-04-14T05:39:53.8680786Z\",\r\n \"updatedOn\": \"2023-05-26T04:59:13.9237237Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0f37683f-2463-46b6-9ce7-9b788b988ba2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0f37683f-2463-46b6-9ce7-9b788b988ba2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Compliance Automation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, download the reports objects and related other resource objects.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-04-14T05:39:53.8670787Z\",\r\n \"updatedOn\": \"2023-09-27T15:29:28.845747Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ffc6bbe0-e443-4c3b-bf54-26581bb2f78e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ffc6bbe0-e443-4c3b-bf54-26581bb2f78e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sphere Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user read and write access to Azure Sphere resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureSphere/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/DiagnosticSettingsCategories/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-02T15:22:08.6728628Z\",\r\n \"updatedOn\": \"2023-05-08T15:10:38.0545692Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8b9dfcab-4b77-4632-a6df-94bd07820648\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8b9dfcab-4b77-4632-a6df-94bd07820648\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SaaS Hub Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"SaaS Hub contributor can manage SaaS Hub resource\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.SaaSHub/cloudservices/read\",\r\n \"Microsoft.SaaSHub/cloudservices/write\",\r\n \"Microsoft.SaaSHub/cloudservices/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-03T15:33:04.5437406Z\",\r\n \"updatedOn\": \"2023-05-12T22:22:08.3454165Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e9b8712a-cbcf-4ea7-b0f7-e71b803401e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e9b8712a-cbcf-4ea7-b0f7-e71b803401e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sphere Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user to read Azure Sphere resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureSphere/*/read\",\r\n \"Microsoft.AzureSphere/catalogs/countDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDeviceGroups/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDeviceInsights/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDeployments/action\",\r\n \"Microsoft.AzureSphere/catalogs/products/countDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/products/deviceGroups/countDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/certificates/retrieveCertChain/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/DiagnosticSettings/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-08T15:10:38.0395671Z\",\r\n \"updatedOn\": \"2023-05-12T22:22:08.3454165Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c8ae6279-5a0b-4cb2-b3f0-d4d62845742c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c8ae6279-5a0b-4cb2-b3f0-d4d62845742c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sphere Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user to read and download Azure Sphere resources and upload images.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureSphere/*/read\",\r\n \"Microsoft.AzureSphere/catalogs/countDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDeviceGroups/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDeviceInsights/action\",\r\n \"Microsoft.AzureSphere/catalogs/listDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/products/countDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/products/deviceGroups/countDevices/action\",\r\n \"Microsoft.AzureSphere/catalogs/certificates/retrieveProofOfPossessionNonce/action\",\r\n \"Microsoft.AzureSphere/catalogs/certificates/retrieveCertChain/action\",\r\n \"Microsoft.AzureSphere/catalogs/images/write\",\r\n \"Microsoft.AzureSphere/catalogs/uploadImage/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/DiagnosticSettings/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-08T15:10:38.0395671Z\",\r\n \"updatedOn\": \"2024-01-29T16:00:37.3526635Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6d994134-994b-4a59-9974-f479f0b227fb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d994134-994b-4a59-9974-f479f0b227fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Procurement Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the procurement of products and services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.SaaSHub/cloudservices/read\",\r\n \"Microsoft.SaaSHub/cloudservices/write\",\r\n \"Microsoft.SaaSHub/cloudservices/delete\",\r\n \"Microsoft.SaaSHub/register/action\",\r\n \"Microsoft.SaaS/resources/read\",\r\n \"Microsoft.SaaS/resources/write\",\r\n \"Microsoft.SaaS/resources/delete\",\r\n \"Microsoft.SaaS/register/action\",\r\n \"Microsoft.ProfessionalService/resources/read\",\r\n \"Microsoft.ProfessionalService/resources/write\",\r\n \"Microsoft.ProfessionalService/resources/delete\",\r\n \"Microsoft.ProfessionalService/register/action\",\r\n \"Microsoft.BillingBenefits/register/action\",\r\n \"Microsoft.BillingBenefits/maccs/read\",\r\n \"Microsoft.BillingBenefits/maccs/write\",\r\n \"Microsoft.BillingBenefits/maccs/delete\",\r\n \"Microsoft.BillingBenefits/maccs/cancel/action\",\r\n \"Microsoft.BillingBenefits/maccs/chargeShortfall/action\",\r\n \"Microsoft.BillingBenefits/maccs/contributors/read\",\r\n \"Microsoft.EnterpriseSupport/enterpriseSupports/read\",\r\n \"Microsoft.EnterpriseSupport/enterpriseSupports/write\",\r\n \"Microsoft.EnterpriseSupport/enterpriseSupports/delete\",\r\n \"Microsoft.EnterpriseSupport/register/action\",\r\n \"Microsoft.SoftwarePlan/register/action\",\r\n \"Microsoft.SoftwarePlan/softwareSubscriptions/read\",\r\n \"Microsoft.SoftwarePlan/softwareSubscriptions/write\",\r\n \"Microsoft.SoftwarePlan/softwareSubscriptions/delete\",\r\n \"Microsoft.SoftwarePlan/softwareSubscriptions/cancel/action\",\r\n \"Microsoft.SoftwarePlan/softwareSubscriptions/listKeys/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-10T15:28:24.1871677Z\",\r\n \"updatedOn\": \"2024-08-28T15:23:36.0821031Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/be1a1ac2-09d3-4261-9e57-a73a6e227f53\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"be1a1ac2-09d3-4261-9e57-a73a6e227f53\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Machine Learning Workspace Connection Secrets Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can list workspace connection secrets\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/connections/listsecrets/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/metadata/secrets/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-10T15:28:24.1871677Z\",\r\n \"updatedOn\": \"2023-10-16T15:13:20.5931766Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ea01e6af-a1c1-4350-9563-ad00f8c72ec5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ea01e6af-a1c1-4350-9563-ad00f8c72ec5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Search Serverless Data Reader (Deprecated)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role has been deprecated\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveSearch/indexes/schema/read\",\r\n \"Microsoft.CognitiveSearch/indexes/documents/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-16T15:12:24.3993826Z\",\r\n \"updatedOn\": \"2024-02-07T16:10:08.5177317Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/79b01272-bf9f-4f4c-9517-5506269cf524\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"79b01272-bf9f-4f4c-9517-5506269cf524\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Search Serverless Data Contributor (Deprecated)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role has been deprecated\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveSearch/indexes/schema/*\",\r\n \"Microsoft.CognitiveSearch/indexes/documents/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-16T15:12:24.3943867Z\",\r\n \"updatedOn\": \"2024-02-07T16:10:08.516731Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7ac06ca7-21ca-47e3-a67b-cbd6e6223baf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ac06ca7-21ca-47e3-a67b-cbd6e6223baf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Community Owner Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Community Owner Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/register/action\",\r\n \"Microsoft.Mission/unregister/action\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/read\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/write\",\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/catalogs/read\",\r\n \"Microsoft.Mission/catalogs/write\",\r\n \"Microsoft.Mission/catalogs/delete\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Mission/communities/write\",\r\n \"Microsoft.Mission/communities/delete\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/internalConnections/write\",\r\n \"Microsoft.Mission/internalConnections/delete\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/write\",\r\n \"Microsoft.Mission/virtualEnclaves/delete\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/write\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/write\",\r\n \"Microsoft.Mission/communities/communityEndpoints/delete\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/communities/transitHubs/write\",\r\n \"Microsoft.Mission/communities/transitHubs/delete\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/approvals/read\",\r\n \"Microsoft.Mission/approvals/write\",\r\n \"Microsoft.Mission/approvals/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-05-26T20:54:56.9528275Z\",\r\n \"updatedOn\": \"2024-09-17T15:06:28.1468173Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e28a61e-8040-49db-b175-bb5b88af6239\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e28a61e-8040-49db-b175-bb5b88af6239\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Firmware Analysis Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Upload and analyze firmware images in Defender for IoT\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.IoTFirmwareDefense/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-06-13T15:14:24.0812321Z\",\r\n \"updatedOn\": \"2023-06-13T15:14:24.0812321Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9c1607d1-791d-4c68-885d-c7b7aaff7c8a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9c1607d1-791d-4c68-885d-c7b7aaff7c8a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Data Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage access to Azure Key Vault by adding or removing role assignments for the Key Vault Administrator, Key Vault Certificates Officer, Key Vault Crypto Officer, Key Vault Crypto Service Encryption User, Key Vault Crypto User, Key Vault Reader, Key Vault Secrets Officer, or Key Vault Secrets User roles. Includes an ABAC condition to constrain role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/vaults/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{00482a5a-887f-4fb3-b363-3b7fe8e74483, a4417e6f-fecd-4de8-b567-7b0420556985, 14b46e9e-c2b7-41b4-b07b-48a6ebf60603, e147488a-f6f5-4113-8e2d-b22465e65bf6, 12338af0-0e69-4776-bea7-57ae8d297424, 21090545-7ca7-4776-b22c-e363652d74d2, b86a8fe4-44ce-4948-aee5-eccb2c155cd7, 4633458b-17de-408a-b874-0445c86b69e6})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{00482a5a-887f-4fb3-b363-3b7fe8e74483, a4417e6f-fecd-4de8-b567-7b0420556985, 14b46e9e-c2b7-41b4-b07b-48a6ebf60603, e147488a-f6f5-4113-8e2d-b22465e65bf6, 12338af0-0e69-4776-bea7-57ae8d297424, 21090545-7ca7-4776-b22c-e363652d74d2, b86a8fe4-44ce-4948-aee5-eccb2c155cd7, 4633458b-17de-408a-b874-0445c86b69e6}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2023-06-20T22:41:17.2192139Z\",\r\n \"updatedOn\": \"2023-12-08T01:46:25.6834412Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8b54135c-b56d-4d72-a534-26097cfdc8d8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8b54135c-b56d-4d72-a534-26097cfdc8d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Defender for Storage Data Scanner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read blobs and update index tags. This role is used by the data scanner of Defender for Storage.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-06-22T15:42:45.8377472Z\",\r\n \"updatedOn\": \"2023-07-11T15:15:59.009472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1e7ca9b1-60d1-4db8-a914-f2ca1ff27c40\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1e7ca9b1-60d1-4db8-a914-f2ca1ff27c40\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Compute Diagnostics Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permissions to execute diagnostics provided by Compute Diagnostic Service for Compute Resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Compute/virtualmachinescalesets/disks/beginGetAccess/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-04T15:09:35.8762293Z\",\r\n \"updatedOn\": \"2023-08-22T15:03:01.3331418Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/df2711a6-406d-41cf-b366-b0250bff9ad1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"df2711a6-406d-41cf-b366-b0250bff9ad1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic SAN Network Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows access to create Private Endpoints on SAN resources, and to read SAN resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ElasticSan/elasticSans/*/read\",\r\n \"Microsoft.ElasticSan/elasticSans/PrivateEndpointConnectionsApproval/action\",\r\n \"Microsoft.ElasticSan/elasticSans/privateEndpointConnections/write\",\r\n \"Microsoft.ElasticSan/elasticSans/privateEndpointConnections/delete\",\r\n \"Microsoft.ElasticSan/locations/asyncoperations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-12T15:16:18.4725463Z\",\r\n \"updatedOn\": \"2023-07-25T15:17:34.8207971Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fa6cecf6-5db3-4c43-8470-c540bcb4eafa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa6cecf6-5db3-4c43-8470-c540bcb4eafa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Usages Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Minimal permission to view Cognitive Services usages.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/locations/usages/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-18T15:21:40.0260836Z\",\r\n \"updatedOn\": \"2023-07-18T15:21:40.0260836Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bba48692-92b0-4667-a9ad-c31c7b334ac2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bba48692-92b0-4667-a9ad-c31c7b334ac2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PostgreSQL Flexible Server Long Term Retention Backup Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role to allow backup vault to access PostgreSQL Flexible Server Resource APIs for Long Term Retention Backup.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/ltrBackupOperations/read\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/ltrPreBackup/action\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/startLtrBackup/action\",\r\n \"Microsoft.DBforPostgreSQL/locations/azureAsyncOperation/read\",\r\n \"Microsoft.DBforPostgreSQL/locations/operationResults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-20T15:49:01.2761474Z\",\r\n \"updatedOn\": \"2023-08-03T22:52:14.0236976Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c088a766-074b-43ba-90d4-1fb21feae531\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c088a766-074b-43ba-90d4-1fb21feae531\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Parameter Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal access to $status and $reindex to update search parameters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/reindex/action\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/write\",\r\n \"Microsoft.HealthcareApis/workspaces/fhirservices/resources/searchparameter/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-07-31T15:06:45.6740185Z\",\r\n \"updatedOn\": \"2023-07-31T15:06:45.6740185Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a02f7c31-354d-4106-865a-deedf37fa038\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a02f7c31-354d-4106-865a-deedf37fa038\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Data Access Administrator (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage access to Virtual Machines by adding or removing role assignments for the Virtual Machine Administrator Login and Virtual Machine User Login roles. Includes an ABAC condition to constrain role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.HybridCompute/machines/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{1c0163c0-47e6-4577-8991-ea5c82e286e4, fb879df8-f326-4884-b1cf-06f3ad86be52})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{1c0163c0-47e6-4577-8991-ea5c82e286e4, fb879df8-f326-4884-b1cf-06f3ad86be52}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-08T15:31:17.1728633Z\",\r\n \"updatedOn\": \"2023-11-01T15:17:03.5360733Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/66f75aeb-eabe-4b70-9f1e-c350c4c9ad04\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"66f75aeb-eabe-4b70-9f1e-c350c4c9ad04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic Apps Standard Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"You have read-only access to all resources in a Standard logic app and workflows, including the workflow runs and their history.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-11T18:29:26.2014706Z\",\r\n \"updatedOn\": \"2024-04-04T21:09:40.8283445Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4accf36b-2c05-432f-91c8-5c532dff4c73\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4accf36b-2c05-432f-91c8-5c532dff4c73\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic Apps Standard Developer (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"You can create and edit workflows, connections, and settings for a Standard logic app. You can't make changes outside the workflow scope.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/*/read\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/customApis/*\",\r\n \"Microsoft.Web/sites/config/list/Action\",\r\n \"microsoft.web/sites/config/Write\",\r\n \"microsoft.web/sites/config/web/appsettings/delete\",\r\n \"microsoft.web/sites/config/web/appsettings/write\",\r\n \"microsoft.web/sites/deployWorkflowArtifacts/action\",\r\n \"microsoft.web/sites/hostruntime/*\",\r\n \"microsoft.web/sites/listworkflowsconnections/action\",\r\n \"Microsoft.Web/sites/publish/Action\",\r\n \"microsoft.web/sites/slots/config/appsettings/write\",\r\n \"Microsoft.Web/sites/slots/config/list/Action\",\r\n \"microsoft.web/sites/slots/config/web/appsettings/delete\",\r\n \"microsoft.web/sites/slots/deployWorkflowArtifacts/action\",\r\n \"microsoft.web/sites/slots/listworkflowsconnections/action\",\r\n \"Microsoft.Web/sites/slots/publish/Action\",\r\n \"microsoft.web/sites/workflows/*\",\r\n \"microsoft.web/sites/workflowsconfiguration/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-11T18:29:26.2014706Z\",\r\n \"updatedOn\": \"2024-04-04T21:09:40.8283445Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/523776ba-4eb2-4600-a3c8-f2dc93da4bdb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"523776ba-4eb2-4600-a3c8-f2dc93da4bdb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic Apps Standard Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"You can manage all aspects of a Standard logic app and workflows. You can't change access or ownership.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/*/read\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/customApis/*\",\r\n \"Microsoft.Web/serverFarms/*\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-11T18:29:26.2014706Z\",\r\n \"updatedOn\": \"2024-04-04T21:09:40.8283445Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ad710c24-b039-4e85-a019-deb4a06e8570\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ad710c24-b039-4e85-a019-deb4a06e8570\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic Apps Standard Operator (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"You can enable and disable the logic app, resubmit workflow runs, as well as create connections. You can't edit workflows or settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/*/read\",\r\n \"Microsoft.Web/sites/applySlotConfig/Action\",\r\n \"microsoft.web/sites/hostruntime/*\",\r\n \"Microsoft.Web/sites/restart/Action\",\r\n \"Microsoft.Web/sites/slots/restart/Action\",\r\n \"Microsoft.Web/sites/slots/slotsswap/Action\",\r\n \"Microsoft.Web/sites/slots/start/Action\",\r\n \"Microsoft.Web/sites/slots/stop/Action\",\r\n \"Microsoft.Web/sites/slotsdiffs/Action\",\r\n \"Microsoft.Web/sites/slotsswap/Action\",\r\n \"Microsoft.Web/sites/start/Action\",\r\n \"Microsoft.Web/sites/stop/Action\",\r\n \"Microsoft.Web/sites/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-11T18:29:26.2014706Z\",\r\n \"updatedOn\": \"2024-04-04T21:09:40.8293422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b70c96e9-66fe-4c09-b6e7-c98e69c98555\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b70c96e9-66fe-4c09-b6e7-c98e69c98555\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"IPAM Pool User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read IPAM Pools and child resources. Create and remove associations. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/networkManagers/ipamPools/*/read\",\r\n \"Microsoft.Network/networkManagers/ipamPools/*/action\",\r\n \"Microsoft.Network/networkManagers/ipamPools/*/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-22T15:03:01.8181632Z\",\r\n \"updatedOn\": \"2024-10-15T15:28:55.9466167Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7b3e853f-ad5d-4fb5-a7b8-56a3581c7037\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7b3e853f-ad5d-4fb5-a7b8-56a3581c7037\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SpatialMapsAccounts Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage data in your account, including deleting them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/spatialMapsAccounts/read\",\r\n \"Microsoft.MixedReality/spatialMapsAccounts/delete\",\r\n \"Microsoft.MixedReality/spatialMapsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-08-25T22:37:18.9333563Z\",\r\n \"updatedOn\": \"2023-08-25T22:37:18.9333563Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e9c9ed2b-2a99-4071-b2ff-5b113ebf73a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e9c9ed2b-2a99-4071-b2ff-5b113ebf73a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Resource Notifications System Topics Subscriber\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create system topics and event subscriptions on all system topics exposed currently and in the future by Azure Resource Notifications\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ResourceNotifications/systemTopics/subscribeToResources/action\",\r\n \"Microsoft.ResourceNotifications/systemTopics/subscribeToHealthResources/action\",\r\n \"Microsoft.ResourceNotifications/systemTopics/subscribeToMaintenanceResources/action\",\r\n \"Microsoft.ResourceNotifications/systemTopics/subscribeToComputeResources/action\",\r\n \"Microsoft.ResourceNotifications/systemTopics/subscribeToComputeScheduleResources/action\",\r\n \"Microsoft.ResourceNotifications/systemTopics/subscribeToContainerServiceEventResources/action\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\",\r\n \"Microsoft.EventGrid/systemTopics/eventSubscriptions/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-01T18:12:29.6066065Z\",\r\n \"updatedOn\": \"2024-09-24T15:12:30.7727921Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0b962ed2-6d56-471c-bd5f-3477d83a7ba4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b962ed2-6d56-471c-bd5f-3477d83a7ba4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic SAN Snapshot Exporter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for creating and exporting Snapshot of Elastic San Volume\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ElasticSan/elasticSans/*/read\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots/write\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots/delete\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots/beginGetAccess/action\",\r\n \"Microsoft.ElasticSan/locations/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/snapshots/read\",\r\n \"Microsoft.Compute/snapshots/write\",\r\n \"Microsoft.Compute/snapshots/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-07T15:27:01.5795598Z\",\r\n \"updatedOn\": \"2023-09-07T15:27:01.5795598Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1c4770c0-34f7-4110-a1ea-a5855cc7a939\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1c4770c0-34f7-4110-a1ea-a5855cc7a939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic SAN Volume Importer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for Importing Elastic San Volume\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/*/read\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/volumes/write\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/volumes/delete\",\r\n \"Microsoft.ElasticSan/locations/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Compute/disks/endGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/read\",\r\n \"Microsoft.Compute/snapshots/beginGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/endGetAccess/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-07T15:27:01.5805616Z\",\r\n \"updatedOn\": \"2024-10-21T15:04:46.4452794Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/90e8b822-3e73-47b5-868a-787dc80c008f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"90e8b822-3e73-47b5-868a-787dc80c008f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Community Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Community Contributor Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/register/action\",\r\n \"Microsoft.Mission/unregister/action\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/read\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/write\",\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/catalogs/read\",\r\n \"Microsoft.Mission/catalogs/write\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Mission/communities/write\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/internalConnections/write\",\r\n \"Microsoft.Mission/externalConnections/read\",\r\n \"Microsoft.Mission/externalConnections/write\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/write\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/write\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/write\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/communities/transitHubs/write\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/approvals/read\",\r\n \"Microsoft.Mission/approvals/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-15T21:32:17.3120404Z\",\r\n \"updatedOn\": \"2024-09-17T15:06:28.1468173Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/49435da6-99fe-48a5-a235-fc668b9dc04a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49435da6-99fe-48a5-a235-fc668b9dc04a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid TopicSpaces Subscriber\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you subscribe messages on topicspaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventGrid/topicSpaces/subscribe/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-20T15:20:54.9243795Z\",\r\n \"updatedOn\": \"2023-10-23T15:12:07.1288274Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4b0f2fd7-60b4-4eca-896f-4435034f8bf5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b0f2fd7-60b4-4eca-896f-4435034f8bf5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid TopicSpaces Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you publish messages on topicspaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventGrid/topicSpaces/publish/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-20T15:20:54.9383815Z\",\r\n \"updatedOn\": \"2023-10-23T15:12:07.1308307Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a12b0b94-b317-4dcd-84a8-502ce99884c6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a12b0b94-b317-4dcd-84a8-502ce99884c6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Boundary Tenant Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows tenant level administration for data boundaries.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/dataBoundaries/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-26T15:18:40.8881798Z\",\r\n \"updatedOn\": \"2023-09-26T15:18:40.8881798Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d1a38570-4b05-4d70-b8e4-1100bcf76d12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d1a38570-4b05-4d70-b8e4-1100bcf76d12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DeID Batch Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage DeID batch jobs. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthDataAIServices/DeidServices/Batch/write\",\r\n \"Microsoft.HealthDataAIServices/DeidServices/Batch/delete\",\r\n \"Microsoft.HealthDataAIServices/DeidServices/Batch/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-29T20:09:57.8639021Z\",\r\n \"updatedOn\": \"2023-09-29T20:09:57.8639021Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8a90fa6b-6997-4a07-8a95-30633a7c97b9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8a90fa6b-6997-4a07-8a95-30633a7c97b9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DeID Batch Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read DeID batch jobs. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthDataAIServices/DeidServices/Batch/read\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.HealthDataAIServices/DeidServices/Batch/write\",\r\n \"Microsoft.HealthDataAIServices/DeidServices/Batch/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-29T20:09:57.8639021Z\",\r\n \"updatedOn\": \"2023-09-29T20:09:57.8639021Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b73a14ee-91f5-41b7-bd81-920e12466be9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b73a14ee-91f5-41b7-bd81-920e12466be9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DeID Realtime Data User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Execute requests against DeID realtime endpoint. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthDataAIServices/DeidServices/Realtime/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-09-29T20:09:57.8649032Z\",\r\n \"updatedOn\": \"2023-09-29T20:09:57.8649032Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bb6577c4-ea0a-40b2-8962-ea18cb8ecd4e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bb6577c4-ea0a-40b2-8962-ea18cb8ecd4e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Carbon Optimization Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allow read access to Azure Carbon Optimization data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Carbon/carbonEmissionReports/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-02T15:03:45.0991798Z\",\r\n \"updatedOn\": \"2023-10-02T15:03:45.0991798Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fa0d39e6-28e5-40cf-8521-1eb320653a4c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa0d39e6-28e5-40cf-8521-1eb320653a4c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Landing Zone Management Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.Sovereign Landing Zone Management Owner allowing to review and modify Landing Zone Configurations as well as reading and adding Landing Zone Registrations. Also enables read-access to policies and management groups for enabling the full user experience of the Sovereign Services RP in the Azure Portal (as otherwise some elements might not be accessible to end users).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sovereign/landingZoneConfigurations/*\",\r\n \"Microsoft.Sovereign/landingZoneRegistrations/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-06T08:51:38.7872219Z\",\r\n \"updatedOn\": \"2023-10-06T08:51:38.7872219Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/38863829-c2a4-4f8d-b1d2-2e325973ebc7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"38863829-c2a4-4f8d-b1d2-2e325973ebc7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Landing Zone Management Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.Sovereign Landing Zone Management Reader allowing to review Landing Zone Configurations and corresponding Registrations without the ability to modify. Also enables read-access to policies and management groups for enabling the full user experience of the Sovereign Services RP in the Azure Portal (as otherwise some elements might not be accessible to end users).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sovereign/landingZoneConfigurations/read\",\r\n \"Microsoft.Sovereign/landingZoneRegistrations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-09T15:06:52.9163525Z\",\r\n \"updatedOn\": \"2023-10-09T15:06:52.9163525Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8fe6e843-6d9e-417b-9073-106b048f50bb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8fe6e843-6d9e-417b-9073-106b048f50bb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack HCI Device Management Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.AzureStackHCI Device Management Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStackHCI/Clusters/*\",\r\n \"Microsoft.AzureStackHCI/EdgeDevices/*\",\r\n \"Microsoft.AzureStackHCI/DevicePools/*/read\",\r\n \"Microsoft.AzureStackHCI/EdgeMachines/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.HybridContainerService/register/action\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/read\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/write\",\r\n \"Microsoft.HybridContainerService/skus/read\",\r\n \"Microsoft.HybridContainerService/skus/write\",\r\n \"Microsoft.Authorization/roleassignments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Write\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Read\",\r\n \"Microsoft.AzureStackHCI/Register/Action\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.KubernetesConfiguration/namespaces/read\",\r\n \"Microsoft.KubernetesConfiguration/operations/read\",\r\n \"Microsoft.ResourceConnector/appliances/read\",\r\n \"Microsoft.ResourceConnector/appliances/write\",\r\n \"Microsoft.ResourceConnector/appliances/delete\",\r\n \"Microsoft.ResourceConnector/locations/operationresults/read\",\r\n \"Microsoft.ResourceConnector/locations/operationsstatus/read\",\r\n \"Microsoft.ResourceConnector/appliances/listClusterUserCredential/action\",\r\n \"Microsoft.ResourceConnector/appliances/listKeys/action\",\r\n \"Microsoft.ResourceConnector/appliances/upgradeGraphs/read\",\r\n \"Microsoft.ResourceConnector/telemetryconfig/read\",\r\n \"Microsoft.ResourceConnector/operations/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/write\",\r\n \"Microsoft.ExtendedLocation/customLocations/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-11T15:23:32.489302Z\",\r\n \"updatedOn\": \"2025-02-12T16:18:26.4114893Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/865ae368-6a45-4bd1-8fbf-0d5151f56fc1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"865ae368-6a45-4bd1-8fbf-0d5151f56fc1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Customer Lockbox Approver for Subscription\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can approve Microsoft support requests to access specific resources contained within a subscription, or the subscription itself, when Customer Lockbox for Microsoft Azure is enabled on the tenant where the subscription resides.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.CustomerLockbox/requests/UpdateApproval/action\",\r\n \"Microsoft.CustomerLockbox/requests/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/eventtypes/values/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-13T18:08:34.8008604Z\",\r\n \"updatedOn\": \"2024-08-09T19:11:41.617451Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4dae6930-7baf-46f5-909e-0383bc931c46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4dae6930-7baf-46f5-909e-0383bc931c46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Resource Bridge Deployment Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Resource Bridge Deployment Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleassignments/read\",\r\n \"Microsoft.AzureStackHCI/Register/Action\",\r\n \"Microsoft.ResourceConnector/register/action\",\r\n \"Microsoft.ResourceConnector/appliances/read\",\r\n \"Microsoft.ResourceConnector/appliances/write\",\r\n \"Microsoft.ResourceConnector/appliances/delete\",\r\n \"Microsoft.ResourceConnector/locations/operationresults/read\",\r\n \"Microsoft.ResourceConnector/locations/operationsstatus/read\",\r\n \"Microsoft.ResourceConnector/appliances/listClusterUserCredential/action\",\r\n \"Microsoft.ResourceConnector/appliances/listKeys/action\",\r\n \"Microsoft.ResourceConnector/appliances/upgradeGraphs/read\",\r\n \"Microsoft.ResourceConnector/telemetryconfig/read\",\r\n \"Microsoft.ResourceConnector/operations/read\",\r\n \"Microsoft.ExtendedLocation/register/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/write\",\r\n \"Microsoft.ExtendedLocation/customLocations/delete\",\r\n \"Microsoft.HybridConnectivity/register/action\",\r\n \"Microsoft.Kubernetes/register/action\",\r\n \"Microsoft.KubernetesConfiguration/register/action\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.KubernetesConfiguration/namespaces/read\",\r\n \"Microsoft.KubernetesConfiguration/operations/read\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\r\n \"Microsoft.HybridContainerService/register/action\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/read\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/write\",\r\n \"Microsoft.HybridContainerService/skus/read\",\r\n \"Microsoft.HybridContainerService/skus/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Write\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-17T15:25:28.444621Z\",\r\n \"updatedOn\": \"2024-02-27T16:09:01.7449183Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7b1f81f9-4196-4058-8aae-762e593270df\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7b1f81f9-4196-4058-8aae-762e593270df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack HCI VM Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permissions to perform all VM actions\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStackHCI/VirtualMachines/*\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/*\",\r\n \"Microsoft.AzureStackHCI/NetworkInterfaces/*\",\r\n \"Microsoft.AzureStackHCI/VirtualHardDisks/*\",\r\n \"Microsoft.AzureStackHCI/VirtualNetworks/Read\",\r\n \"Microsoft.AzureStackHCI/VirtualNetworks/join/action\",\r\n \"Microsoft.AzureStackHCI/LogicalNetworks/Read\",\r\n \"Microsoft.AzureStackHCI/LogicalNetworks/join/action\",\r\n \"Microsoft.AzureStackHCI/GalleryImages/Read\",\r\n \"Microsoft.AzureStackHCI/GalleryImages/deploy/action\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Read\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/deploy/action\",\r\n \"Microsoft.AzureStackHCI/MarketplaceGalleryImages/Read\",\r\n \"Microsoft.AzureStackHCI/MarketPlaceGalleryImages/deploy/action\",\r\n \"Microsoft.AzureStackHCI/Clusters/Read\",\r\n \"Microsoft.AzureStackHCI/Clusters/ArcSettings/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\r\n \"Microsoft.HybridCompute/machines/assessPatches/action\",\r\n \"Microsoft.HybridCompute/machines/installPatches/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/operations/read\",\r\n \"Microsoft.HybridCompute/locations/operationresults/read\",\r\n \"Microsoft.HybridCompute/locations/operationstatus/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\r\n \"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/read\",\r\n \"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/read\",\r\n \"Microsoft.HybridCompute/machines/runcommands/write\",\r\n \"Microsoft.HybridCompute/machines/runcommands/delete\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/write\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/licenses/write\",\r\n \"Microsoft.HybridCompute/licenses/delete\",\r\n \"Microsoft.ExtendedLocation/customLocations/Read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-23T15:12:07.1298324Z\",\r\n \"updatedOn\": \"2024-06-24T15:12:45.8993374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/874d1c73-6003-4e60-a13a-cb31ea190a85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"874d1c73-6003-4e60-a13a-cb31ea190a85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack HCI VM Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permissions to view VMs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStackHCI/VirtualMachines/Read\",\r\n \"Microsoft.AzureStackHCI/virtualMachineInstances/Read\",\r\n \"Microsoft.AzureStackHCI/VirtualMachines/Extensions/Read\",\r\n \"Microsoft.AzureStackHCI/VirtualNetworks/Read\",\r\n \"Microsoft.AzureStackHCI/LogicalNetworks/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkInterfaces/Read\",\r\n \"Microsoft.AzureStackHCI/VirtualHardDisks/Read\",\r\n \"Microsoft.AzureStackHCI/StorageContainers/Read\",\r\n \"Microsoft.AzureStackHCI/GalleryImages/Read\",\r\n \"Microsoft.AzureStackHCI/MarketplaceGalleryImages/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/Read\",\r\n \"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Read\",\r\n \"Microsoft.HybridCompute/licenses/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/licenseProfiles/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\r\n \"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/privateLinkScopes/networkSecurityPerimeterConfigurations/read\",\r\n \"Microsoft.HybridCompute/privateLinkScopes/privateEndpointConnections/read\",\r\n \"Microsoft.HybridCompute/privateLinkScopes/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-23T15:12:07.1288274Z\",\r\n \"updatedOn\": \"2024-06-24T15:12:45.8993374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4b3fe76c-f777-4d24-a2d7-b027b0f7b273\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b3fe76c-f777-4d24-a2d7-b027b0f7b273\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure AI Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform all actions within an Azure AI resource besides managing the resource itself.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/*/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/*/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/*/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/*/write\",\r\n \"Microsoft.MachineLearningServices/locations/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/listKeys/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/hubs/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/hubs/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/featurestores/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/featurestores/delete\",\r\n \"Microsoft.MachineLearningServices/workspaces/evaluations/results/labels/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/evaluations/results/reasonings/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/simulations/results/images/read\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/OpenAI/*\",\r\n \"Microsoft.CognitiveServices/accounts/SpeechServices/*\",\r\n \"Microsoft.CognitiveServices/accounts/ContentSafety/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-23T15:12:07.1288274Z\",\r\n \"updatedOn\": \"2024-12-18T16:29:45.1510083Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"64702f94-c441-49e6-a78b-ef80e0188fee\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Deployment Environments Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides read access to environment resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DevCenter/projects/read\",\r\n \"Microsoft.DevCenter/projects/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.DevCenter/projects/pools/read\",\r\n \"Microsoft.DevCenter/projects/pools/schedules/read\"\r\n ],\r\n \"dataActions\": [\r\n \"Microsoft.DevCenter/projects/users/environments/adminRead/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminActionRead/action\",\r\n \"Microsoft.DevCenter/projects/users/environments/adminOutputsRead/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-26T22:28:07.1033006Z\",\r\n \"updatedOn\": \"2023-10-26T22:28:07.1033006Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/eb960402-bf75-4cc3-8d68-35b34f960f72\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"eb960402-bf75-4cc3-8d68-35b34f960f72\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows send and receive access to event grid events.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.EventGrid/topics/read\",\r\n \"Microsoft.EventGrid/domains/read\",\r\n \"Microsoft.EventGrid/partnerNamespaces/read\",\r\n \"Microsoft.EventGrid/namespaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventGrid/events/send/action\",\r\n \"Microsoft.EventGrid/events/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-30T15:07:29.5851627Z\",\r\n \"updatedOn\": \"2023-10-30T15:07:29.5851627Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1d8c3fe3-8864-474b-8749-01e3783e8157\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d8c3fe3-8864-474b-8749-01e3783e8157\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows receive access to event grid events.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.EventGrid/namespaces/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventGrid/events/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-30T15:07:29.583163Z\",\r\n \"updatedOn\": \"2023-10-30T15:07:29.583163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/78cbd9e7-9798-4e2e-9b5a-547d9ebb31fb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"78cbd9e7-9798-4e2e-9b5a-547d9ebb31fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure AI Inference Deployment Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform all actions required to create a resource deployment within a resource group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/AutoscaleSettings/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-30T18:23:40.794418Z\",\r\n \"updatedOn\": \"2024-03-18T15:10:34.3892458Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3afb7f49-54cb-416e-8c09-6dc049efa503\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3afb7f49-54cb-416e-8c09-6dc049efa503\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Connected Cluster Managed Identity CheckAccess Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Built-in role that allows a Connected Cluster managed identity to call the checkAccess API\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-30T19:24:08.9641127Z\",\r\n \"updatedOn\": \"2023-11-08T16:32:10.4885906Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/65a14201-8f6c-4c28-bec4-12619c5a9aaa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"65a14201-8f6c-4c28-bec4-12619c5a9aaa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Advisor Reviews Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View reviews for a workload and recommendations linked to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Advisor/resiliencyReviews/read\",\r\n \"Microsoft.Advisor/triageRecommendations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-31T15:13:36.689705Z\",\r\n \"updatedOn\": \"2023-10-31T15:13:36.689705Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c64499e0-74c3-47ad-921c-13865957895c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c64499e0-74c3-47ad-921c-13865957895c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Advisor Reviews Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View reviews for a workload and triage recommendations linked to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Advisor/resiliencyReviews/read\",\r\n \"Microsoft.Advisor/triageRecommendations/read\",\r\n \"Microsoft.Advisor/triageRecommendations/approve/action\",\r\n \"Microsoft.Advisor/triageRecommendations/reject/action\",\r\n \"Microsoft.Advisor/triageRecommendations/reset/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-10-31T15:13:36.689705Z\",\r\n \"updatedOn\": \"2023-10-31T15:13:36.689705Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8aac15f0-d885-4138-8afa-bfb5872f7d13\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8aac15f0-d885-4138-8afa-bfb5872f7d13\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AgFood Platform Dataset Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to Dataset APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/datasets/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/datasetRecords/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-11-07T16:18:43.4932699Z\",\r\n \"updatedOn\": \"2023-11-07T16:18:43.4932699Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a8d4b70f-0fb9-4f72-b267-b87b2f990aec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a8d4b70f-0fb9-4f72-b267-b87b2f990aec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Defender for Storage Scanner Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you enable and configure Microsoft Defender for Storage's malware scanning and sensitive data discovery features on your storage accounts. Includes an ABAC condition to limit role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Security/defenderforstoragesettings/read\",\r\n \"Microsoft.Security/defenderforstoragesettings/write\",\r\n \"Microsoft.Security/advancedThreatProtectionSettings/read\",\r\n \"Microsoft.Security/advancedThreatProtectionSettings/write\",\r\n \"Microsoft.Security/datascanners/read\",\r\n \"Microsoft.Security/datascanners/write\",\r\n \"Microsoft.Security/dataScanners/delete\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.EventGrid/topics/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\",\r\n \"Microsoft.EventGrid/eventSubscriptions/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{1e7ca9b1-60d1-4db8-a914-f2ca1ff27c40, d5a91429-5739-47e2-a06b-3470a27159e7})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{1e7ca9b1-60d1-4db8-a914-f2ca1ff27c40, d5a91429-5739-47e2-a06b-3470a27159e7}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2023-11-13T16:11:26.3567622Z\",\r\n \"updatedOn\": \"2024-07-01T15:03:42.5850186Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0f641de8-0b88-4198-bdef-bd8b45ceba96\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0f641de8-0b88-4198-bdef-bd8b45ceba96\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Front Door Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view AFD standard and premium profiles and their endpoints, but can't make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Cdn/operationresults/profileresults/afdendpointresults/CheckCustomDomainDNSMappingStatus/action\",\r\n \"Microsoft.Cdn/profiles/queryloganalyticsmetrics/action\",\r\n \"Microsoft.Cdn/profiles/queryloganalyticsrankings/action\",\r\n \"Microsoft.Cdn/profiles/querywafloganalyticsmetrics/action\",\r\n \"Microsoft.Cdn/profiles/querywafloganalyticsrankings/action\",\r\n \"Microsoft.Cdn/profiles/afdendpoints/CheckCustomDomainDNSMappingStatus/action\",\r\n \"Microsoft.Cdn/profiles/Usages/action\",\r\n \"Microsoft.Cdn/profiles/afdendpoints/Usages/action\",\r\n \"Microsoft.Cdn/profiles/origingroups/Usages/action\",\r\n \"Microsoft.Cdn/profiles/rulesets/Usages/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-11-16T16:40:45.3765181Z\",\r\n \"updatedOn\": \"2024-01-29T16:00:37.3536665Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/662802e2-50f6-46b0-aed2-e834bacc6d12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"662802e2-50f6-46b0-aed2-e834bacc6d12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Enclave Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enclave Reader Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/catalogs/read\",\r\n \"Microsoft.Mission/catalogs/write\",\r\n \"Microsoft.Mission/catalogs/delete\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/approvals/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-11-29T16:10:05.7109858Z\",\r\n \"updatedOn\": \"2024-09-17T15:06:28.1478182Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/86fede04-b259-4277-8c3e-e26b9865abd8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86fede04-b259-4277-8c3e-e26b9865abd8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Hybrid Cluster Admin Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster admin credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/listAdminKubeconfig/action\",\r\n \"Microsoft.Kubernetes/connectedClusters/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-01T16:27:57.0085632Z\",\r\n \"updatedOn\": \"2023-12-01T16:27:57.0085632Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b5092dac-c796-4349-8681-1a322a31c3f9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b5092dac-c796-4349-8681-1a322a31c3f9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Hybrid Cluster User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster user credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/listUserKubeconfig/action\",\r\n \"Microsoft.Kubernetes/connectedClusters/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-01T16:27:57.023565Z\",\r\n \"updatedOn\": \"2023-12-01T16:27:57.023565Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fc3f91a1-40bf-4439-8c46-45edbd83563a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fc3f91a1-40bf-4439-8c46-45edbd83563a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Hybrid Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read and write Azure Kubernetes Services hybrid clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridContainerService/Locations/operationStatuses/read\",\r\n \"Microsoft.HybridContainerService/Operations/read\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/read\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/write\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/delete\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/write\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/delete\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/write\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/delete\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/upgradeProfiles/read\",\r\n \"Microsoft.HybridContainerService/skus/read\",\r\n \"Microsoft.HybridContainerService/skus/write\",\r\n \"Microsoft.HybridContainerService/skus/delete\",\r\n \"Microsoft.HybridContainerService/virtualNetworks/read\",\r\n \"Microsoft.HybridContainerService/virtualNetworks/write\",\r\n \"Microsoft.HybridContainerService/virtualNetworks/delete\",\r\n \"Microsoft.Kubernetes/connectedClusters/Read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/Delete\",\r\n \"Microsoft.Kubernetes/connectedClusters/listClusterUserCredential/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-01T16:27:57.0645659Z\",\r\n \"updatedOn\": \"2023-12-01T16:27:57.0645659Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e7037d40-443a-4434-a3fb-8cd202011e1d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e7037d40-443a-4434-a3fb-8cd202011e1d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Enclave Owner Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enclave Owner Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/Locations/OperationStatuses/read\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/write\",\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/catalogs/read\",\r\n \"Microsoft.Mission/catalogs/write\",\r\n \"Microsoft.Mission/catalogs/delete\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/internalConnections/write\",\r\n \"Microsoft.Mission/internalConnections/delete\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/write\",\r\n \"Microsoft.Mission/virtualEnclaves/delete\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/write\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/delete\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/enclaveConnections/write\",\r\n \"Microsoft.Mission/enclaveConnections/delete\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/write\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/delete\",\r\n \"Microsoft.Mission/approvals/read\",\r\n \"Microsoft.Mission/approvals/write\",\r\n \"Microsoft.Mission/approvals/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-06T16:25:52.526304Z\",\r\n \"updatedOn\": \"2024-09-17T15:06:28.1488186Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3d5f3eff-eb94-473d-91e3-7aac74d6c0bb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3d5f3eff-eb94-473d-91e3-7aac74d6c0bb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Community Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Community Reader Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/Locations/OperationStatuses/read\",\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/catalogs/read\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/externalConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/approvals/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-11T16:01:29.0551066Z\",\r\n \"updatedOn\": \"2024-09-17T15:06:28.1488186Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e6aadb6b-e64f-41c0-9392-d2bba3bc3ebc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e6aadb6b-e64f-41c0-9392-d2bba3bc3ebc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Enclave Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enclave Contributor Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/register/action\",\r\n \"Microsoft.Mission/unregister/action\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/read\",\r\n \"Microsoft.Mission/Locations/OperationStatuses/write\",\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/catalogs/read\",\r\n \"Microsoft.Mission/catalogs/write\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/internalConnections/write\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/write\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/write\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/enclaveConnections/write\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/write\",\r\n \"Microsoft.Mission/approvals/read\",\r\n \"Microsoft.Mission/approvals/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-11T16:01:29.1699004Z\",\r\n \"updatedOn\": \"2024-09-17T15:06:28.1478182Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/19feefae-eacc-4106-81fd-ac34c0671f14\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19feefae-eacc-4106-81fd-ac34c0671f14\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Operator Nexus Key Vault Writer Service Role (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Provides Azure Operator Nexus services the ability to write to a Key Vault. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.KeyVault/vaults/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/setSecret/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-12T16:08:00.7618939Z\",\r\n \"updatedOn\": \"2024-08-15T19:26:12.0732073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/44f0a1a8-6fea-4b35-980a-8ff50c487c97\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"44f0a1a8-6fea-4b35-980a-8ff50c487c97\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Encryption Scope Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows management of Encryption Scopes on a Storage Account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/encryptionScopes/read\",\r\n \"Microsoft.Storage/storageAccounts/encryptionScopes/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-12T16:08:00.75889Z\",\r\n \"updatedOn\": \"2024-01-11T19:07:46.4940261Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a316ed6d-1efe-48ac-ac08-f7995a9c26fb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a316ed6d-1efe-48ac-ac08-f7995a9c26fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Service Release User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Release keys. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/release/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-15T22:59:10.4382726Z\",\r\n \"updatedOn\": \"2023-12-15T22:59:10.4382726Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/08bbd89e-9f13-488c-ac41-acfcb10c90ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08bbd89e-9f13-488c-ac41-acfcb10c90ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Runtime Storage Class Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, write, and delete Kubernetes Runtime storage classes in an Arc connected Kubernetes cluster\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.KubernetesRuntime/storageClasses/read\",\r\n \"Microsoft.KubernetesRuntime/storageClasses/write\",\r\n \"Microsoft.KubernetesRuntime/storageClasses/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2023-12-18T16:14:19.6296161Z\",\r\n \"updatedOn\": \"2024-08-20T15:22:00.2579913Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0cd9749a-3aaf-4ae5-8803-bd217705bf3b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0cd9749a-3aaf-4ae5-8803-bd217705bf3b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Programmable Connectivity Gateway User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows access to all Gateway dataplane APIs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-08T16:07:20.7530393Z\",\r\n \"updatedOn\": \"2024-01-08T16:07:20.7530393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/609c0c20-e0a0-4a71-b99f-e7e755ac493d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"609c0c20-e0a0-4a71-b99f-e7e755ac493d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Certificate User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read certificate contents. Only works for key vaults that use the 'Azure role-based access control' permission model.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/certificates/read\",\r\n \"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\",\r\n \"Microsoft.KeyVault/vaults/keys/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-11T16:37:07.6107024Z\",\r\n \"updatedOn\": \"2024-01-11T16:37:07.6107024Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/db79e9a7-68ee-4b58-9aeb-b90e7c24fcba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db79e9a7-68ee-4b58-9aeb-b90e7c24fcba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Spring Cloud Gateway Log Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read real-time logs for Spring Cloud Gateway in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppPlatform/Spring/read\",\r\n \"Microsoft.AppPlatform/Spring/gateways/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/SpringCloudGateway/logstream/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-12T08:25:35.9674075Z\",\r\n \"updatedOn\": \"2024-01-12T08:25:35.9674075Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4301dc2a-25a9-44b0-ae63-3636cf7f2bd2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4301dc2a-25a9-44b0-ae63-3636cf7f2bd2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Managed Components Log Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read real-time logs for all managed components in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/managedComponents/logstream/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-12T08:25:35.9674075Z\",\r\n \"updatedOn\": \"2024-01-12T08:25:35.9674075Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/52fd16bd-6ed5-46af-9c40-29cbd7952a29\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"52fd16bd-6ed5-46af-9c40-29cbd7952a29\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Application Configuration Service Log Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read real-time logs for Application Configuration Service in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppPlatform/Spring/read\",\r\n \"Microsoft.AppPlatform/Spring/configurationServices/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/ApplicationConfigurationService/logstream/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-12T08:25:35.9674075Z\",\r\n \"updatedOn\": \"2024-01-12T08:25:35.9674075Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6593e776-2a30-40f9-8a32-4fe28b77655d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6593e776-2a30-40f9-8a32-4fe28b77655d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Edge On-Site Deployment Engineer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants you access to take actions as an on-site person to assist in the provisioning of an edge device\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EdgeOrder/orderItems/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-12T11:13:31.4650719Z\",\r\n \"updatedOn\": \"2024-09-02T15:07:07.8729009Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/207bcc4b-86a6-4487-9141-d6c1f4c238aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"207bcc4b-86a6-4487-9141-d6c1f4c238aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure API Center Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for access to Azure API Center data plane read operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ApiCenter/services/*/read\",\r\n \"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/exportSpecification/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-12T20:39:09.6504931Z\",\r\n \"updatedOn\": \"2024-04-30T15:20:16.9299516Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c7244dfb-f447-457d-b2ba-3999044d1706\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7244dfb-f447-457d-b2ba-3999044d1706\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure impact-insight reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"built-in role for azure impact-insight read access\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Impact/WorkloadImpacts/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-22T16:09:33.1745465Z\",\r\n \"updatedOn\": \"2024-01-22T16:09:33.1745465Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dfb2f09d-25f8-4558-8986-497084006d7a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dfb2f09d-25f8-4558-8986-497084006d7a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Defender Kubernetes Agent Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants Microsoft Defender for Cloud permissions to provision the Kubernetes defender security agent\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"Microsoft.OperationalInsights/workspaces/listKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedkeys/action\",\r\n \"Microsoft.Kubernetes/register/action\",\r\n \"Microsoft.KubernetesConfiguration/register/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-30T16:11:35.3297751Z\",\r\n \"updatedOn\": \"2024-04-09T15:14:10.7703257Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8bb6f106-b146-4ee6-a3f9-b9c5a96e0ae5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8bb6f106-b146-4ee6-a3f9-b9c5a96e0ae5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Storage Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions to set OpenShift cluster-wide storage defaults. It ensures a default storageclass exists for clusters. It also installs Container Storage Interface (CSI) drivers which enable your cluster to use various storage backends.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/snapshots/write\",\r\n \"Microsoft.Compute/snapshots/read\",\r\n \"Microsoft.Compute/snapshots/delete\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/DiskOperations/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.5179336Z\",\r\n \"updatedOn\": \"2024-07-31T16:34:05.5954092Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5b7237c5-45e1-49d6-bc18-a1f62f400748\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5b7237c5-45e1-49d6-bc18-a1f62f400748\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The ARO Operator is responsible for maintaining features, checks, and resources that are specific to an Azure Red Hat OpenShift cluster's continued functionality as a managed service. This includes, but is not limited to, machine management and health, network configuration, and monitoring.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/natGateways/join/action\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.5179336Z\",\r\n \"updatedOn\": \"2024-08-09T22:45:04.3090537Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4436bae4-7702-4c84-919b-c4069ff25ee2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4436bae4-7702-4c84-919b-c4069ff25ee2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Azure Files Storage Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions to set OpenShift cluster-wide storage defaults. It ensures a default storageclass exists for clusters. It also installs Container Storage Interface (CSI) drivers which enable your cluster to use Azure Files.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/write\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.5229316Z\",\r\n \"updatedOn\": \"2024-07-31T16:34:05.5934089Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0d7aedc0-15fd-4a67-a412-efad370c947e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Image Registry Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions for the operator to manage a singleton instance of the OpenShift image registry. It manages all configuration of the registry, including creating storage.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/delete\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Resources/tags/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/move/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.5089317Z\",\r\n \"updatedOn\": \"2024-07-31T16:34:05.5934089Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8b32b316-c2f5-4ddf-b05b-83dacd2d08b5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8b32b316-c2f5-4ddf-b05b-83dacd2d08b5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Network Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions to install and upgrade the networking components on an OpenShift cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Compute/virtualMachines/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.524932Z\",\r\n \"updatedOn\": \"2024-07-31T16:34:05.5944092Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/be7a6435-15ae-4171-8f30-4a343eff9e8f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"be7a6435-15ae-4171-8f30-4a343eff9e8f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Cloud Controller Manager Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions for the operator to manage and update the cloud controller managers deployed on top of OpenShift.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/write\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/networkInterfaces/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.5239321Z\",\r\n \"updatedOn\": \"2024-07-31T16:34:05.5944092Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a1f96423-95ce-4224-ab27-4e3dc72facd4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a1f96423-95ce-4224-ab27-4e3dc72facd4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Machine API Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions for the operator to manage the lifecycle of specific purpose custom resource definitions (CRD), controllers, and RBAC objects that extend the Kubernetes API. This declares the desired state of machines in a cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/availabilitySets/delete\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/availabilitySets/write\",\r\n \"Microsoft.Compute/diskEncryptionSets/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/galleries/images/versions/read\",\r\n \"Microsoft.Compute/skus/read\",\r\n \"Microsoft.Compute/virtualMachines/delete\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/capacityReservationGroups/deploy/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\r\n \"Microsoft.Network/applicationSecurityGroups/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/write\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/routeTables/read\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:01.524932Z\",\r\n \"updatedOn\": \"2024-10-04T14:57:20.4946948Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0358943c-7e01-48ba-8889-02cc51d78637\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0358943c-7e01-48ba-8889-02cc51d78637\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Cluster Ingress Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables permissions for the operator to configure and manage the OpenShift router.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/dnsZones/A/delete\",\r\n \"Microsoft.Network/dnsZones/A/write\",\r\n \"Microsoft.Network/privateDnsZones/A/delete\",\r\n \"Microsoft.Network/privateDnsZones/A/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-01-31T16:20:02.1193285Z\",\r\n \"updatedOn\": \"2024-07-31T16:34:05.5934089Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0336e1d3-7a87-462b-b6db-342b63f7802c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0336e1d3-7a87-462b-b6db-342b63f7802c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sphere Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user read and write access to Azure Sphere resources and RBAC configuration, includes an ABAC condition to constrain role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureSphere/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/DiagnosticSettingsCategories/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{8b9dfcab4b774632a6df94bd07820648,c8ae62795a0b4cb2b3f0d4d62845742c,6d994134994b4a599974f479f0b227fb,5a382001fe3641ffbba48bf06bd54da9,749f88d5cbae40b8bcfce573ddc772fa,43d0d8ad25c7471493378ba259a9fe05}\"\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{8b9dfcab4b774632a6df94bd07820648,c8ae62795a0b4cb2b3f0d4d62845742c,6d994134994b4a599974f479f0b227fb,5a382001fe3641ffbba48bf06bd54da9,749f88d5cbae40b8bcfce573ddc772fa,43d0d8ad25c7471493378ba259a9fe05}\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-02T23:44:55.2967178Z\",\r\n \"updatedOn\": \"2024-03-13T15:20:21.9497129Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5a382001-fe36-41ff-bba4-8bf06bd54da9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5a382001-fe36-41ff-bba4-8bf06bd54da9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"GroupQuota Request Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and create GroupQuota requests, get GroupQuota request status, and get groupQuotaLimits.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"MICROSOFT.QUOTA/QUOTAS/WRITE\",\r\n \"MICROSOFT.QUOTA/QUOTAS/READ\",\r\n \"MICROSOFT.QUOTA/USAGES/READ\",\r\n \"MICROSOFT.QUOTA/QUOTAREQUESTS/READ\",\r\n \"MICROSOFT.QUOTA/REGISTER/ACTION\",\r\n \"Microsoft.Quota/GROUPQUOTAS/*/READ\",\r\n \"Microsoft.Quota/GROUPQUOTAS/*/WRITE\",\r\n \"Microsoft.Quota/GROUPQUOTAS/*/DELETE\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-12T16:11:24.3956386Z\",\r\n \"updatedOn\": \"2025-02-05T16:24:28.8596243Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e2217c0e-04bb-4724-9580-91cf9871bc01\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e2217c0e-04bb-4724-9580-91cf9871bc01\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"GroupQuota Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read GroupQuota requests, get GroupQuota request status, and get groupQuotaLimits.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"MICROSOFT.QUOTA/QUOTAS/READ\",\r\n \"MICROSOFT.QUOTA/USAGES/READ\",\r\n \"MICROSOFT.QUOTA/QUOTAREQUESTS/READ\",\r\n \"MICROSOFT.QUOTA/REGISTER/ACTION\",\r\n \"Microsoft.Quota/GROUPQUOTAS/READ\",\r\n \"Microsoft.Quota/GROUPQUOTAS/subscriptions/READ\",\r\n \"Microsoft.Quota/GROUPQUOTAS/groupQuotaLimits/READ\",\r\n \"Microsoft.Quota/GROUPQUOTAS/quotaAllocations/READ\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-12T16:11:24.3956386Z\",\r\n \"updatedOn\": \"2024-02-12T16:11:24.3956386Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d0f495dc-44ef-4140-aeb0-b89110e6a7c1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d0f495dc-44ef-4140-aeb0-b89110e6a7c1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services Smart Boundary Solution User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to Smart Boundary Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-19T16:01:01.7948885Z\",\r\n \"updatedOn\": \"2024-05-29T15:22:21.4343125Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/539283cd-c185-4a9a-9503-d35217a1db7b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"539283cd-c185-4a9a-9503-d35217a1db7b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Defender for Cloud administrator (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you enable and configure Defender for Cloud capabilities on an Azure subscription. Includes an ABAC condition to constrain role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{1e241071085549ea94dc649edcd759de, d24ecba3c1f440faa7bb4588a071e8fd, d5a2ae44610b450093be660a0c5f5ca6, acdd72a7338548efbd42f606fba81ae7, 8480c0f04509422993397c10018cb8c4, 0f641de80b884198bdefbd8b45ceba96})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{1e241071085549ea94dc649edcd759de, d24ecba3c1f440faa7bb4588a071e8fd, d5a2ae44610b450093be660a0c5f5ca6, acdd72a7338548efbd42f606fba81ae7, 8480c0f04509422993397c10018cb8c4, 0f641de80b884198bdefbd8b45ceba96}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-26T16:08:39.4157774Z\",\r\n \"updatedOn\": \"2024-02-26T16:08:39.4157774Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/87a87389-f3af-4c43-a694-f6e5efec8582\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a87389-f3af-4c43-a694-f6e5efec8582\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Defender CSPM Storage Scanner Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you enable and configure Microsoft Defender CSPM's sensitive data discovery feature on your storage accounts. Includes an ABAC condition to limit role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Security/datascanners/read\",\r\n \"Microsoft.Security/datascanners/write\",\r\n \"Microsoft.Security/dataScanners/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{2a2b9908-6ea1-4ae2-8e65-a410df84e7d1, b8eda974-7b85-4f76-af95-65846b26df6d}\"\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{2a2b9908-6ea1-4ae2-8e65-a410df84e7d1, b8eda974-7b85-4f76-af95-65846b26df6d}\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-26T16:08:39.4167778Z\",\r\n \"updatedOn\": \"2024-10-01T15:07:21.7821657Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8480c0f0-4509-4229-9339-7c10018cb8c4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8480c0f0-4509-4229-9339-7c10018cb8c4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Advisor Recommendations Contributor (Assessments and Reviews)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View assessment recommendations, accepted review recommendations, and manage the recommendations lifecycle (mark recommendations as completed, postponed or dismissed, in progress, or not started).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Advisor/recommendations/write\",\r\n \"Microsoft.Advisor/recommendations/available/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-27T16:09:01.7439167Z\",\r\n \"updatedOn\": \"2024-03-14T23:14:57.0882716Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6b534d80-e337-47c4-864f-140f5c7f593d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6b534d80-e337-47c4-864f-140f5c7f593d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"GeoCatalog Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage GeoCatalogs, but does not allow you to assign roles in Azure RBAC.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Orbital/operations/read\",\r\n \"Microsoft.Orbital/geoCatalogs/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-28T16:09:25.0275812Z\",\r\n \"updatedOn\": \"2024-02-28T16:09:25.0275812Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c9c97b9c-105d-4bb5-a2a7-7d15666c2484\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c9c97b9c-105d-4bb5-a2a7-7d15666c2484\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"GeoCatalog Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View GeoCatalogs, but does not allow you to make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Orbital/operations/read\",\r\n \"Microsoft.Orbital/geoCatalogs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-28T16:09:25.026582Z\",\r\n \"updatedOn\": \"2024-02-28T16:09:25.026582Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b7b8f583-43d0-40ae-b147-6b46f53661c1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b7b8f583-43d0-40ae-b147-6b46f53661c1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Health Bot Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Users with reader access can sign in, have read-only access to the bot resources, scenarios and configuration setting except for the bot instance keys & secrets (including Authentication, Data Connection and Channels keys) and the end-user inputs (including Feedback, Unrecognized utterances and Conversation logs).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthBot/healthBots/Reader/Action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-29T16:10:59.0383279Z\",\r\n \"updatedOn\": \"2024-02-29T16:10:59.0383279Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/eb5a76d5-50e7-4c33-a449-070e7c9c4cf2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"eb5a76d5-50e7-4c33-a449-070e7c9c4cf2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Health Bot Editor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Users with editor access can sign in, view and edit all the bot resources, scenarios and configuration setting except for the bot instance keys & secrets and the end-user inputs (including Feedback, Unrecognized utterances and Conversation logs). A read-only access to the bot skills and channels.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthBot/healthBots/Editor/Action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-29T16:10:59.0803245Z\",\r\n \"updatedOn\": \"2024-02-29T16:10:59.0803245Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/af854a69-80ce-4ff7-8447-f1118a2e0ca8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"af854a69-80ce-4ff7-8447-f1118a2e0ca8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Health Bot Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Users with admin access can sign in, view and edit all of the bot resources, scenarios and configuration setting including the bot instance keys & secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthBot/healthBots/Admin/Action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-29T16:11:01.3963426Z\",\r\n \"updatedOn\": \"2024-02-29T16:11:01.3963426Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f1082fec-a70f-419f-9230-885d2550fb38\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f1082fec-a70f-419f-9230-885d2550fb38\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Programmable Connectivity Gateway Dataplane User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows access to all Gateway dataplane APIs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ProgrammableConnectivity/Gateways/NetworkAPIAccess\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-02-29T16:11:01.3963426Z\",\r\n \"updatedOn\": \"2024-03-19T15:23:13.6716091Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c20923c5-b089-47a5-bf67-fd89569c4ad9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c20923c5-b089-47a5-bf67-fd89569c4ad9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure AI Enterprise Network Connection Approver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can approve private endpoint connections to Azure AI common dependency resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/privateEndpointConnections/read\",\r\n \"Microsoft.ApiManagement/service/privateEndpointConnections/write\",\r\n \"Microsoft.ApiManagement/service/privateLinkResources/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/read\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/write\",\r\n \"Microsoft.Cache/redis/read\",\r\n \"Microsoft.Cache/redis/privateEndpointConnections/read\",\r\n \"Microsoft.Cache/redis/privateEndpointConnections/write\",\r\n \"Microsoft.Cache/redis/privateLinkResources/read\",\r\n \"Microsoft.Cache/redis/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Cache/redisEnterprise/read\",\r\n \"Microsoft.Cache/redisEnterprise/privateEndpointConnections/read\",\r\n \"Microsoft.Cache/redisEnterprise/privateEndpointConnections/write\",\r\n \"Microsoft.Cache/redisEnterprise/privateLinkResources/read\",\r\n \"Microsoft.Cache/redisEnterprise/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.CognitiveServices/accounts/read\",\r\n \"Microsoft.CognitiveServices/accounts/privateEndpointConnections/read\",\r\n \"Microsoft.CognitiveServices/accounts/privateEndpointConnections/write\",\r\n \"Microsoft.CognitiveServices/accounts/privateLinkResources/read\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/privateEndpointConnections/read\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/privateEndpointConnections/write\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/privateLinkResources/read\",\r\n \"Microsoft.DBforPostgreSQL/flexibleServers/read\",\r\n \"Microsoft.DBforPostgreSQL/serverGroupsv2/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.DBforPostgreSQL/serverGroupsv2/privateEndpointConnections/read\",\r\n \"Microsoft.DBforPostgreSQL/serverGroupsv2/privateEndpointConnections/write\",\r\n \"Microsoft.DBforPostgreSQL/serverGroupsv2/privateLinkResources/read\",\r\n \"Microsoft.DBforMySQL/flexibleServers/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.DBforMySQL/flexibleServers/privateEndpointConnections/read\",\r\n \"Microsoft.DBforMySQL/flexibleServers/privateEndpointConnections/write\",\r\n \"Microsoft.DBforMySQL/flexibleServers/privateLinkResources/read\",\r\n \"Microsoft.DBforMySQL/flexibleServers/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/privateLinkResources/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"Microsoft.KeyVault/vaults/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.KeyVault/vaults/privateEndpointConnections/read\",\r\n \"Microsoft.KeyVault/vaults/privateEndpointConnections/write\",\r\n \"Microsoft.KeyVault/vaults/privateLinkResources/read\",\r\n \"Microsoft.KeyVault/vaults/read\",\r\n \"Microsoft.MachineLearningServices/registries/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.MachineLearningServices/registries/privateEndpointConnections/read\",\r\n \"Microsoft.MachineLearningServices/registries/privateEndpointConnections/write\",\r\n \"Microsoft.MachineLearningServices/registries/privateLinkResources/read\",\r\n \"Microsoft.MachineLearningServices/registries/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.MachineLearningServices/workspaces/privateEndpointConnections/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/privateEndpointConnections/write\",\r\n \"Microsoft.MachineLearningServices/workspaces/privateLinkResources/read\",\r\n \"Microsoft.MachineLearningServices/workspaces/read\",\r\n \"Microsoft.Storage/storageAccounts/privateEndpointConnections/read\",\r\n \"Microsoft.Storage/storageAccounts/privateEndpointConnections/write\",\r\n \"Microsoft.Storage/storageAccounts/privateLinkResources/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/PrivateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Sql/servers/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Sql/servers/privateEndpointConnections/read\",\r\n \"Microsoft.Sql/servers/privateEndpointConnections/write\",\r\n \"Microsoft.Sql/servers/privateLinkResources/read\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.EventHub/namespaces/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.EventHub/namespaces/privateEndpointConnections/read\",\r\n \"Microsoft.EventHub/namespaces/privateEndpointConnections/write\",\r\n \"Microsoft.EventHub/namespaces/privateLinkResources/read\",\r\n \"Microsoft.EventHub/namespaces/read\",\r\n \"Microsoft.Search/searchServices/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Search/searchServices/privateEndpointConnections/read\",\r\n \"Microsoft.Search/searchServices/privateEndpointConnections/write\",\r\n \"Microsoft.Search/searchServices/sharedPrivateLinkResources/read\",\r\n \"Microsoft.Search/searchServices/read\",\r\n \"Microsoft.Insights/privatelinkscopes/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Insights/privatelinkscopes/privateEndpointConnections/read\",\r\n \"Microsoft.Insights/privatelinkscopes/privateEndpointConnections/write\",\r\n \"Microsoft.Insights/privatelinkscopes/privateLinkResources/read\",\r\n \"Microsoft.Insights/privatelinkscopes/read\",\r\n \"Microsoft.Network/privateLinkServices/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Network/privateLinkServices/privateEndpointConnections/read\",\r\n \"Microsoft.Network/privateLinkServices/privateEndpointConnections/write\",\r\n \"Microsoft.Network/privateLinkServices/read\",\r\n \"Microsoft.Network/applicationGateways/privateEndpointConnections/read\",\r\n \"Microsoft.Network/applicationGateways/privateEndpointConnections/write\",\r\n \"Microsoft.Network/applicationGateways/privateLinkResources/read\",\r\n \"Microsoft.Network/applicationGateways/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-01T22:44:57.9174008Z\",\r\n \"updatedOn\": \"2025-01-30T21:18:01.5034976Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b556d68e-0be0-4f35-a333-ad7ee1ce17ea\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b556d68e-0be0-4f35-a333-ad7ee1ce17ea\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Container Storage Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role required by a Managed Identity for Azure Container Storage operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ElasticSan/elasticSans/*\",\r\n \"Microsoft.ElasticSan/locations/asyncoperations/read\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\r\n \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/virtualNetworks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-07T18:16:04.1237431Z\",\r\n \"updatedOn\": \"2024-03-22T22:01:01.7377883Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/08d4c71a-cc63-4ce4-a9c8-5dd251b4d619\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08d4c71a-cc63-4ce4-a9c8-5dd251b4d619\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Container Storage Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you install Azure Container Storage and manage its storage resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{08d4c71acc634ce4a9c85dd251b4d619})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{08d4c71acc634ce4a9c85dd251b4d619}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-07T18:46:25.1162285Z\",\r\n \"updatedOn\": \"2024-03-29T20:10:38.4259849Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/95dd08a6-00bd-4661-84bf-f6726f83a4d0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"95dd08a6-00bd-4661-84bf-f6726f83a4d0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Container Storage Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you install Azure Container Storage and grants access to its storage resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ElasticSan/elasticSans/*\",\r\n \"Microsoft.ElasticSan/locations/*\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/*\",\r\n \"Microsoft.ElasticSan/elasticSans/volumeGroups/volumes/*\",\r\n \"Microsoft.ElasticSan/locations/asyncoperations/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/write\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/delete\",\r\n \"Microsoft.KubernetesConfiguration/extensions/operations/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{08d4c71acc634ce4a9c85dd251b4d619})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{08d4c71acc634ce4a9c85dd251b4d619}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-07T18:46:25.1172293Z\",\r\n \"updatedOn\": \"2024-03-29T20:10:38.4259849Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/95de85bd-744d-4664-9dde-11430bc34793\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"95de85bd-744d-4664-9dde-11430bc34793\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Arc Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read and write Azure Kubernetes Services hybrid clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridContainerService/Locations/operationStatuses/read\",\r\n \"Microsoft.HybridContainerService/Operations/read\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/read\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/write\",\r\n \"Microsoft.HybridContainerService/kubernetesVersions/delete\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/write\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/delete\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/write\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/delete\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/upgradeProfiles/read\",\r\n \"Microsoft.HybridContainerService/skus/read\",\r\n \"Microsoft.HybridContainerService/skus/write\",\r\n \"Microsoft.HybridContainerService/skus/delete\",\r\n \"Microsoft.HybridContainerService/virtualNetworks/read\",\r\n \"Microsoft.HybridContainerService/virtualNetworks/write\",\r\n \"Microsoft.HybridContainerService/virtualNetworks/delete\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/Delete\",\r\n \"Microsoft.Kubernetes/connectedClusters/listClusterUserCredential/action\",\r\n \"Microsoft.AzureStackHCI/clusters/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-08T00:33:15.790369Z\",\r\n \"updatedOn\": \"2024-04-17T15:24:13.1719241Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d3f1697-4507-4d08-bb4a-477695db5f82\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d3f1697-4507-4d08-bb4a-477695db5f82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Arc Cluster User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster user credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/listUserKubeconfig/action\",\r\n \"Microsoft.Kubernetes/connectedClusters/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-08T00:33:16.7231724Z\",\r\n \"updatedOn\": \"2024-03-08T00:33:16.7231724Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/233ca253-b031-42ff-9fba-87ef12d6b55f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"233ca253-b031-42ff-9fba-87ef12d6b55f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Arc Cluster Admin Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster admin credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\r\n \"Microsoft.HybridContainerService/provisionedClusterInstances/listAdminKubeconfig/action\",\r\n \"Microsoft.Kubernetes/connectedClusters/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-08T00:33:16.7341721Z\",\r\n \"updatedOn\": \"2024-03-08T00:33:16.7341721Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b29efa5f-7782-4dc3-9537-4d5bc70a5e9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b29efa5f-7782-4dc3-9537-4d5bc70a5e9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup MUA Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Backup MultiUser-Authorization. Can create/delete ResourceGuard \",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DataProtection/*/read\",\r\n \"Microsoft.DataProtection/*/resourceGuards/write\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/resourceGuards/write\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/resourceGuards/delete\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/resourceGuards/read\",\r\n \"Microsoft.DataProtection/locations/operationResults/read\",\r\n \"Microsoft.DataProtection/locations/operationStatus/read\",\r\n \"Microsoft.DataProtection/locations/getBackupStatus/action\",\r\n \"Microsoft.DataProtection/locations/checkFeatureSupport/action\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/operationStatus/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/read\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/write\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete\",\r\n \"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/unlockDelete/action\",\r\n \"Microsoft.DataProtection/subscriptions/providers/resourceGuards/read\",\r\n \"Microsoft.DataProtection/subscriptions/resourceGroups/providers/resourceGuards/{operationName}/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-11T15:04:28.0520383Z\",\r\n \"updatedOn\": \"2024-03-11T15:04:28.0520383Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c2a970b4-16a7-4a51-8c84-8a8ea6ee0bb8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c2a970b4-16a7-4a51-8c84-8a8ea6ee0bb8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup MUA Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Backup MultiUser-Authorization. Allows user to perform critical operation protected by resourceguard\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DataProtection/*/action\",\r\n \"Microsoft.DataProtection/*/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-11T15:04:28.0520383Z\",\r\n \"updatedOn\": \"2024-03-11T15:04:28.0520383Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f54b6d04-23c6-443e-b462-9c16ab7b4a52\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f54b6d04-23c6-443e-b462-9c16ab7b4a52\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Savings plan Purchaser\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you purchase savings plans\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Capacity/register/action\",\r\n \"Microsoft.Capacity/catalogs/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.BillingBenefits/savingsPlanOrders/write\",\r\n \"Microsoft.BIllingBenefits/register/action\",\r\n \"Microsoft.Support/supporttickets/write\",\r\n \"Microsoft.Billing/billingProperty/read\",\r\n \"Microsoft.CostManagement/benefitRecommendations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-18T15:10:34.3862485Z\",\r\n \"updatedOn\": \"2024-03-18T15:10:34.3862485Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3d24a3a0-c154-4f6f-a5ed-adc8e01ddb74\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3d24a3a0-c154-4f6f-a5ed-adc8e01ddb74\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CrossConnectionManager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write access to ExpressRoute CrossConnections\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicNetwork/expressRouteCrossConnections/*\",\r\n \"Microsoft.Network/expressRouteCrossConnections/*\",\r\n \"Microsoft.Features/providers/features/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Network/expressRouteCrossConnections/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-19T15:23:13.6726125Z\",\r\n \"updatedOn\": \"2024-03-19T15:23:13.6726125Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/399c3b2b-64c2-4ff1-af34-571db925b068\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"399c3b2b-64c2-4ff1-af34-571db925b068\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CrossConnectionReader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to ExpressRoute CrossConnections\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicNetwork/expressRouteCrossConnections/*/read\",\r\n \"Microsoft.Network/expressRouteCrossConnections/*/read\",\r\n \"Microsoft.Features/providers/features/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-19T15:23:13.6446077Z\",\r\n \"updatedOn\": \"2024-03-19T15:23:13.6446077Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b6ee44de-fe58-4ddc-b5c2-ab174eb23f05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b6ee44de-fe58-4ddc-b5c2-ab174eb23f05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Agent Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants Microsoft Defender for Cloud access to Azure Kubernetes Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.ContainerService/managedClusters/read\",\r\n \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/delete\",\r\n \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/read\",\r\n \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/write\",\r\n \"Microsoft.ContainerService/managedClusters/write\",\r\n \"Microsoft.Security/pricings/securityoperators/read\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"Microsoft.OperationalInsights/workspaces/listKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedkeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedkeys/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-21T15:42:52.8028925Z\",\r\n \"updatedOn\": \"2024-12-06T16:25:12.4547515Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e93ba01-8f92-4c7a-b12a-801e3df23824\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure API Center Compliance Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows managing API compliance in Azure API Center service.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiCenter/services/*/read\",\r\n \"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/updateAnalysisState/action\",\r\n \"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/exportSpecification/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-25T15:06:22.7412927Z\",\r\n \"updatedOn\": \"2024-03-25T15:06:22.7412927Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ede9aaa3-4627-494e-be13-4aa7c256148d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ede9aaa3-4627-494e-be13-4aa7c256148d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure API Center Service Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read-only access to Azure API Center service.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiCenter/services/*/read\",\r\n \"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/exportSpecification/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-25T15:06:22.7402909Z\",\r\n \"updatedOn\": \"2024-03-25T15:06:22.7402909Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6cba8790-29c5-48e5-bab1-c7541b01cb04\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6cba8790-29c5-48e5-bab1-c7541b01cb04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure API Center Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows managing Azure API Center service.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiCenter/services/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/updateAnalysisState/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-25T15:06:22.7412927Z\",\r\n \"updatedOn\": \"2024-03-25T15:06:22.7412927Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dd24193f-ef65-44e5-8a7e-6fa6e03f7713\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dd24193f-ef65-44e5-8a7e-6fa6e03f7713\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services Historical Weather Data Solution User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to Historical Weather Data Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/farms/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-26T15:15:04.8792612Z\",\r\n \"updatedOn\": \"2024-08-09T17:11:19.7209693Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b5b192c1-773c-4543-bfb0-6c59254b74a9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b5b192c1-773c-4543-bfb0-6c59254b74a9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Oracle Subscriptions Manager Built-in Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all Oracle Subscriptions resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Oracle.Database/oracleSubscriptions/*/read\",\r\n \"Oracle.Database/oracleSubscriptions/*/write\",\r\n \"Oracle.Database/oracleSubscriptions/*/delete\",\r\n \"Oracle.Database/oracleSubscriptions/*/action\",\r\n \"Oracle.Database/Locations/*/read\",\r\n \"Oracle.Database/Locations/*/write\",\r\n \"Oracle.Database/Operations/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-26T15:15:04.8802611Z\",\r\n \"updatedOn\": \"2024-04-08T15:07:44.8273943Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4caf51ec-f9f5-413f-8a94-b9f5fddba66b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4caf51ec-f9f5-413f-8a94-b9f5fddba66b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Oracle.Database Owner Built-in Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all Oracle.Database resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Oracle.Database/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Compute/sshPublicKeys/read\",\r\n \"Microsoft.Compute/sshPublicKeys/write\",\r\n \"Microsoft.Compute/sshPublicKeys/generateKeyPair/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-26T15:15:05.077072Z\",\r\n \"updatedOn\": \"2024-04-05T21:31:52.1474736Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4562aac9-b209-4bd7-a144-6d7f3bb516f4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4562aac9-b209-4bd7-a144-6d7f3bb516f4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Oracle.Database Reader Built-in Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read access to all Oracle.Database resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Oracle.Database/Locations/*/read\",\r\n \"Oracle.Database/Operations/read\",\r\n \"Oracle.Database/oracleSubscriptions/*/read\",\r\n \"Oracle.Database/cloudExadataInfrastructures/*/read\",\r\n \"Oracle.Database/cloudVmClusters/*/read\",\r\n \"Oracle.Database/cloudVmClusters/listPrivateIpAddresses/action\",\r\n \"Oracle.Database/oracleSubscriptions/listCloudAccountDetails/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-26T15:15:05.077072Z\",\r\n \"updatedOn\": \"2024-04-08T15:07:44.8263947Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d623d097-b882-4e1e-a26f-ac60e31065a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d623d097-b882-4e1e-a26f-ac60e31065a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Oracle.Database VmCluster Administrator Built-in Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all VmCluster resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Oracle.Database/cloudVmClusters/*/read\",\r\n \"Oracle.Database/cloudVmClusters/*/write\",\r\n \"Oracle.Database/cloudVmClusters/*/delete\",\r\n \"Oracle.Database/cloudExadataInfrastructures/write\",\r\n \"Oracle.Database/cloudExadataInfrastructures/*/read\",\r\n \"Oracle.Database/Locations/*/read\",\r\n \"Oracle.Database/Locations/*/write\",\r\n \"Oracle.Database/Operations/read\",\r\n \"Oracle.Database/oracleSubscriptions/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Compute/sshPublicKeys/read\",\r\n \"Microsoft.Compute/sshPublicKeys/write\",\r\n \"Microsoft.Compute/sshPublicKeys/generateKeyPair/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-26T15:15:05.083071Z\",\r\n \"updatedOn\": \"2024-04-08T15:07:46.2529727Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e9ce8739-6fa2-4123-a0a2-0ef41a67806f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e9ce8739-6fa2-4123-a0a2-0ef41a67806f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Oracle.Database Exadata Infrastructure Administrator Built-in Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all Exadata Infrastructure resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Oracle.Database/cloudExadataInfrastructures/*/read\",\r\n \"Oracle.Database/cloudExadataInfrastructures/*/write\",\r\n \"Oracle.Database/cloudExadataInfrastructures/*/delete\",\r\n \"Oracle.Database/cloudVmClusters/*/read\",\r\n \"Oracle.Database/cloudVmClusters/*/write\",\r\n \"Oracle.Database/cloudVmClusters/*/delete\",\r\n \"Oracle.Database/cloudVmClusters/*/action\",\r\n \"Oracle.Database/Locations/*/read\",\r\n \"Oracle.Database/Locations/*/write\",\r\n \"Oracle.Database/Operations/read\",\r\n \"Oracle.Database/oracleSubscriptions/*/read\",\r\n \"Oracle.Database/oracleSubscriptions/listCloudAccountDetails/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Compute/sshPublicKeys/read\",\r\n \"Microsoft.Compute/sshPublicKeys/write\",\r\n \"Microsoft.Compute/sshPublicKeys/generateKeyPair/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-26T15:15:05.3035903Z\",\r\n \"updatedOn\": \"2024-04-08T15:07:46.2539738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4cfdd23b-aece-4fd1-b614-ad3a06c53453\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4cfdd23b-aece-4fd1-b614-ad3a06c53453\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Application Configuration Service Config File Pattern Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read content of config file pattern for Application Configuration Service in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppPlatform/Spring/read\",\r\n \"Microsoft.AppPlatform/Spring/configurationServices/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/ApplicationConfigurationService/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-28T15:27:28.8416423Z\",\r\n \"updatedOn\": \"2024-03-28T15:27:28.8416423Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/25211fc6-dc78-40b6-b205-e4ac934fd9fd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"25211fc6-dc78-40b6-b205-e4ac934fd9fd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Messaging Catalog Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Messaging Catalog resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MessagingCatalog/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MessagingCatalog/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-03-28T15:27:28.8416423Z\",\r\n \"updatedOn\": \"2024-03-28T15:27:28.8416423Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f27b7598-bc64-41f7-8a44-855ff16326c2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f27b7598-bc64-41f7-8a44-855ff16326c2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Hybrid Database Administrator - Read Only Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read only access to Azure hybrid database services resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureArcData/*/read\",\r\n \"Microsoft.AzureArcData/sqlServerInstances/getTelemetry/action\",\r\n \"Microsoft.AzureArcData/sqlServerInstances/availabilityGroups/getDetailView/action\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-04T17:22:37.1908565Z\",\r\n \"updatedOn\": \"2024-04-04T17:22:37.1908565Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d9c6a55-fc0e-4e21-ae6f-f7b095497342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d9c6a55-fc0e-4e21-ae6f-f7b095497342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft Sentinel Business Applications Agent Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List and update actions on a business applications system. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/read\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/write\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/systems/read\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/systems/write\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/systems/listActions/action\",\r\n \"Microsoft.SecurityInsights/businessApplicationAgents/systems/reportActionStatus/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-05T08:06:44.3219877Z\",\r\n \"updatedOn\": \"2024-06-06T15:32:14.8579262Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c18f9900-27b8-47c7-a8f0-5b3b3d4c2bc2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c18f9900-27b8-47c7-a8f0-5b3b3d4c2bc2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Quantum Workspace Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows creating an Azure Quantum Workspace with a linked Storage Account with any Providers. Includes an ABAC condition to constrain role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Quantum/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Solutions/applications/read\",\r\n \"Microsoft.Solutions/register/action\",\r\n \"Microsoft.MarketplaceOrdering/offertypes/publishers/offers/plans/agreements/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{17d1049b-9a84-46fb-8f53-869881c3d3ab}\"\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{17d1049b-9a84-46fb-8f53-869881c3d3ab}\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-05T19:46:30.3992366Z\",\r\n \"updatedOn\": \"2024-06-21T17:26:18.9053878Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/30b3bcf2-670a-4bdc-8669-7e0ae0c0dfda\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"30b3bcf2-670a-4bdc-8669-7e0ae0c0dfda\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure ContainerApps Session Executor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and execute sessions in a sessionPool\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/sessionPools/*/read\",\r\n \"Microsoft.App/sessionPools/sessions/generatesessions/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.App/sessionPools/*/read\",\r\n \"Microsoft.App/sessionPools/interpreters/execute/action\",\r\n \"Microsoft.App/sessionPools/interpreters/read\",\r\n \"Microsoft.App/sessionPools/executions/*\",\r\n \"Microsoft.App/sessionPools/files/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-08T15:07:44.8193956Z\",\r\n \"updatedOn\": \"2024-11-06T16:01:16.6620491Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0fb8eba5-a2bb-4abe-b1c1-49dfad359bb0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0fb8eba5-a2bb-4abe-b1c1-49dfad359bb0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft.Edge Winfields federated subscription read access role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.Edge Winfields role for read access on federated subscriptions\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-15T15:14:13.2886992Z\",\r\n \"updatedOn\": \"2024-07-16T15:12:08.3117167Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/83ee7727-862c-4213-8ed8-2ce6c5d69a40\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"83ee7727-862c-4213-8ed8-2ce6c5d69a40\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Red Hat OpenShift Federated Credential Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role grants the permissions required in order to patch cluster managed identities with the federated credential to build a trust relationship between the managed identity, OIDC, and the service account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-15T15:14:13.2906962Z\",\r\n \"updatedOn\": \"2024-04-15T15:14:13.2906962Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ef318e2a-8334-4a05-9e4a-295a196c6a6e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services Crop Id Solution User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to Crop Id Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-22T15:03:58.3512473Z\",\r\n \"updatedOn\": \"2024-05-16T15:24:47.2532254Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/39138f76-04e6-41f0-ba6b-c411b59081a9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39138f76-04e6-41f0-ba6b-c411b59081a9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduled Events Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides access to scheduled event actions\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Maintenance/scheduledevents/acknowledge/action\",\r\n \"Microsoft.Compute/VirtualMachines/read\",\r\n \"Microsoft.Compute/VirtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/AvailabilitySets/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-04-24T15:11:03.2385683Z\",\r\n \"updatedOn\": \"2024-05-06T15:07:27.9162114Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b67fe603-310e-4889-b9ee-8257d09d353d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b67fe603-310e-4889-b9ee-8257d09d353d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Compute Recommendations Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permissions to call Compute Recommendations APIs provided by Compute Diagnostic Resource Provider service.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/locations/placementScores/generate/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-01T15:29:03.4064531Z\",\r\n \"updatedOn\": \"2024-07-03T15:20:29.2192889Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e82342c9-ac7f-422b-af64-e426d2e12b2d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e82342c9-ac7f-422b-af64-e426d2e12b2d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Job Log Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read real-time logs for jobs in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppPlatform/Spring/read\",\r\n \"Microsoft.AppPlatform/Spring/jobs/read\",\r\n \"Microsoft.AppPlatform/Spring/jobs/executions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/jobs/executions/logstream/action\",\r\n \"Microsoft.AppPlatform/Spring/jobs/executions/listInstances/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-03T02:44:23.2142297Z\",\r\n \"updatedOn\": \"2024-05-03T02:44:23.2142297Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b459aa1d-e3c8-436f-ae21-c0531140f43e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b459aa1d-e3c8-436f-ae21-c0531140f43e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Job Execution Instance List Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List instances for job executions in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/jobs/executions/listInstances/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-03T02:44:23.2139801Z\",\r\n \"updatedOn\": \"2024-05-03T02:44:23.2139801Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/91422e52-bb88-4415-bb4a-90f5b71f6dcb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"91422e52-bb88-4415-bb4a-90f5b71f6dcb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Nexus Network Fabric Service Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-write access to Nexus Network Fabric Service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedNetworkFabric/*/read\",\r\n \"Microsoft.ManagedNetworkFabric/*/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-13T15:04:37.4782279Z\",\r\n \"updatedOn\": \"2024-05-13T15:04:37.4782279Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a5eb8433-97a5-4a06-80b2-a877e1622c31\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a5eb8433-97a5-4a06-80b2-a877e1622c31\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Nexus Network Fabric Service Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to Nexus Network Fabric Service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedNetworkFabric/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-13T15:04:37.4782279Z\",\r\n \"updatedOn\": \"2024-05-13T15:04:37.4782279Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/05fdd44c-adc6-4aff-981c-61041f0c929a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"05fdd44c-adc6-4aff-981c-61041f0c929a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Deployment Stack Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows a user to manage deployment stacks, including those with deny assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deploymentStacks/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-16T23:13:29.6757377Z\",\r\n \"updatedOn\": \"2024-05-16T23:13:29.6757377Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/adb29209-aa1d-457b-a786-c913953d2891\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"adb29209-aa1d-457b-a786-c913953d2891\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Deployment Stack Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows a user to manage deployment stacks, but cannot create or delete deny assignments within the deployment stack.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deploymentStacks/write\",\r\n \"Microsoft.Resources/deploymentStacks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-16T23:13:29.6757377Z\",\r\n \"updatedOn\": \"2024-05-16T23:13:29.6757377Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bf7f8882-3383-422a-806a-6526c631a88a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bf7f8882-3383-422a-806a-6526c631a88a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Group Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Manage Resource Group Operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-21T18:03:26.7015785Z\",\r\n \"updatedOn\": \"2024-05-21T18:03:26.7015785Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/94877a25-7520-40c5-9c42-68e02e4758bd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"94877a25-7520-40c5-9c42-68e02e4758bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Spring Apps Spring Cloud Config Server Log Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read real-time logs for Spring Cloud Config Server in Azure Spring Apps\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppPlatform/Spring/read\",\r\n \"Microsoft.AppPlatform/Spring/configServers/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppPlatform/Spring/configService/logstream/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-05-30T15:22:33.0533129Z\",\r\n \"updatedOn\": \"2024-05-30T15:22:33.0533129Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/74252426-c508-480e-9345-4607bbebead4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"74252426-c508-480e-9345-4607bbebead4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Repository Catalog Lister\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for listing all repositories in an Azure Container Registry. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/catalog/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-06T15:32:14.9109269Z\",\r\n \"updatedOn\": \"2024-08-20T15:22:00.2589914Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bfdb9389-c9a5-478a-bb2f-ba9ca092c3c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfdb9389-c9a5-478a-bb2f-ba9ca092c3c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Repository Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access to Azure Container Registry repositories, but excluding catalog listing. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/write\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/write\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/delete\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-06T15:47:34.3399996Z\",\r\n \"updatedOn\": \"2024-08-20T15:22:00.2599913Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2efddaa5-3f1f-4df3-97df-af3f13818f4c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Repository Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Container Registry repositories, but excluding catalog listing. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-06T15:47:34.3399996Z\",\r\n \"updatedOn\": \"2024-08-20T15:22:00.2579913Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b93aa761-3e63-49ed-ac28-beffa264f7ac\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b93aa761-3e63-49ed-ac28-beffa264f7ac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Repository Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read and write access to Azure Container Registry repositories, but excluding catalog listing. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/read\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/metadata/write\",\r\n \"Microsoft.ContainerRegistry/registries/repositories/content/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-06T15:47:34.3399996Z\",\r\n \"updatedOn\": \"2024-08-20T15:22:02.2893272Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a1e307c-b015-4ebd-883e-5b7698a07328\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2a1e307c-b015-4ebd-883e-5b7698a07328\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DeID Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to DeID data. This role is in preview and subject to change\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthDataAIServices/DeidServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-07T21:23:54.9017124Z\",\r\n \"updatedOn\": \"2024-06-07T21:23:54.9017124Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/78e4b983-1a0b-472e-8b7d-8d770f7c5890\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"78e4b983-1a0b-472e-8b7d-8d770f7c5890\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Locks Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Manage Locks Operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/locks/read\",\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/locks/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-07T22:55:15.2914829Z\",\r\n \"updatedOn\": \"2024-06-07T22:55:15.2914829Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/28bf596f-4eb7-45ce-b5bc-6cf482fec137\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"28bf596f-4eb7-45ce-b5bc-6cf482fec137\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kusto Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Manage Kusto Operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Kusto/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-10T15:10:25.9460001Z\",\r\n \"updatedOn\": \"2024-06-14T19:14:18.9510936Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8ca4f98b-e38b-4784-9fc0-7aefa970cc5b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8ca4f98b-e38b-4784-9fc0-7aefa970cc5b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CloudTest Leased VM Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CloudTest leased VM's credentials\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.CloudTest/pools/leases/action\",\r\n \"Microsoft.CloudTest/pools/leases/complete/action\",\r\n \"Microsoft.CloudTest/pools/leases/extend/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-13T21:05:25.3085384Z\",\r\n \"updatedOn\": \"2025-01-30T19:16:58.167536Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b1e6a0dd-ea0f-4108-8925-7047693f2cfe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b1e6a0dd-ea0f-4108-8925-7047693f2cfe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Standby Container Group Pool Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows users to manage standby container group pool resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ContainerInstance/containerGroupProfiles/read\",\r\n \"Microsoft.ContainerInstance/containerGroupProfiles/revisions/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.StandbyPool/Locations/OperationStatuses/read\",\r\n \"Microsoft.StandbyPool/Operations/read\",\r\n \"Microsoft.StandbyPool/standbyContainerGroupPools/delete\",\r\n \"Microsoft.StandbyPool/standbyContainerGroupPools/read\",\r\n \"Microsoft.StandbyPool/standbyContainerGroupPools/runtimeViews/read\",\r\n \"Microsoft.StandbyPool/standbyContainerGroupPools/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-18T15:22:31.7393554Z\",\r\n \"updatedOn\": \"2024-06-18T15:22:31.7393554Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/39fcb0de-8844-4706-b050-c28ddbe3ff83\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39fcb0de-8844-4706-b050-c28ddbe3ff83\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Compute Gallery Artifacts Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This is the role for publishing gallery artifacts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/galleries/*\",\r\n \"Microsoft.Compute/locations/capsOperations/read\",\r\n \"Microsoft.Compute/locations/communityGalleries/*\",\r\n \"Microsoft.Compute/locations/sharedGalleries/*\",\r\n \"Microsoft.Compute/images/*\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/galleries/share/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-21T00:16:23.240823Z\",\r\n \"updatedOn\": \"2024-06-21T00:16:23.240823Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/85a2d0d9-2eba-4c9c-b355-11c2cc0788ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"85a2d0d9-2eba-4c9c-b355-11c2cc0788ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ToolchainOrchestrator Viewer Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grant access to view all Toolchain orchestrator resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ToolchainOrchestrator/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-21T07:53:15.2955453Z\",\r\n \"updatedOn\": \"2024-07-01T15:03:41.8457839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c5826735-177b-4a0d-a9a3-d0e4b4bda107\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c5826735-177b-4a0d-a9a3-d0e4b4bda107\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ToolchainOrchestrator Admin Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grant full access to manage all Toolchain orchestrator resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ToolchainOrchestrator/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-06-21T08:08:21.7019434Z\",\r\n \"updatedOn\": \"2024-07-01T15:03:41.8477821Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2ccf8795-8983-4912-8036-1c45212c95e8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2ccf8795-8983-4912-8036-1c45212c95e8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ProviderHub Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows you to create and manage Microsoft.ProviderHub resources through the Resource Provider Platform. Does not allow you to assign roles in Azure RBAC.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ProviderHub/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-03T15:20:27.4637413Z\",\r\n \"updatedOn\": \"2024-07-03T15:20:27.4637413Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a3ab03bc-5350-42ff-b0d5-00207672db55\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a3ab03bc-5350-42ff-b0d5-00207672db55\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ProviderHub Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows you to view all Microsoft.ProviderHub resources created through the Resource Provider Platform, but does not allow you to make any changes to the resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ProviderHub/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-03T15:20:27.7899871Z\",\r\n \"updatedOn\": \"2024-07-03T15:20:27.7899871Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d8c6f2e-3fd6-4d40-826e-93e3dc4c3fc1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d8c6f2e-3fd6-4d40-826e-93e3dc4c3fc1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack HCI Connected InfraVMs\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role of Arc Integration for Azure Stack HCI Infrastructure Virtual Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/*/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/machines/extensions/delete\",\r\n \"Microsoft.HybridCompute/machines/UpgradeExtensions/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-04T15:33:28.3954303Z\",\r\n \"updatedOn\": \"2024-07-16T15:12:08.313718Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c99c945f-8bd1-4fb1-a903-01460aae6068\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c99c945f-8bd1-4fb1-a903-01460aae6068\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"VM Restore Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Delete resources during VM Restore. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Compute/disks/endGetAccess/action\",\r\n \"Microsoft.Compute/locations/diskOperations/read\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/delete\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/write\",\r\n \"Microsoft.Compute/virtualMachines/extensions/delete\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/locations/usages/read\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/checkNameAvailability/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-04T15:33:28.3964297Z\",\r\n \"updatedOn\": \"2024-07-04T15:33:28.3964297Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/dfce8971-25e3-42e3-ba33-6055438e3080\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dfce8971-25e3-42e3-ba33-6055438e3080\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, create, modify and delete HDInsight clusters, configuration, extensions, etc.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/APPLICATIONS/DELETE\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/APPLICATIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/APPLICATIONS/WRITE\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/AZUREASYNCOPERATIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/CONFIGURATIONS/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/CONFIGURATIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/DELETE\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/EXECUTESCRIPTACTIONS/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/EXTENSIONS/DELETE\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/EXTENSIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/EXTENSIONS/WRITE\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/GETGATEWAYSETTINGS/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/LISTHOSTS/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/OPERATIONRESULTS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/PRIVATEENDPOINTCONNECTIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/PRIVATELINKRESOURCES/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/RESOLVEPRIVATELINKSERVICEID/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/RESTARTHOSTS/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/ROLES/AUTOSCALE/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/ROLES/RESIZE/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/SCRIPTACTIONS/DELETE\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/SCRIPTACTIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/SCRIPTEXECUTIONHISTORY/PROMOTE/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/SCRIPTEXECUTIONHISTORY/READ\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/UPDATEGATEWAYSETTINGS/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS/WRITE\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/AVAILABLECLUSTERVERSIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/AZUREASYNCOPERATIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/BILLINGSPECS/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/CAPABILITIES/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/CHECKNAMEAVAILABILITY/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/OPERATIONRESULTS/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/OPERATIONSTATUSES/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/OPERATIONSTATUSES/WRITE\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/USAGES/READ\",\r\n \"MICROSOFT.HDINSIGHT/LOCATIONS/VALIDATECREATEREQUEST/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/OPERATIONS/READ\",\r\n \"MICROSOFT.HDINSIGHT/REGISTER/ACTION\",\r\n \"MICROSOFT.HDINSIGHT/RESOURCETYPES/READ\",\r\n \"MICROSOFT.HDINSIGHT/UNREGISTER/ACTION\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-05T05:57:31.8286631Z\",\r\n \"updatedOn\": \"2024-07-05T05:57:31.8286631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0847e196-2fd2-4c2f-a48c-fca6fd030f44\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0847e196-2fd2-4c2f-a48c-fca6fd030f44\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Operator Nexus Compute Contributor Role (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Manage and configure Azure Operator Nexus infrastructure resources. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/classicAdministrators/operationstatuses/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/denyAssignments/read\",\r\n \"Microsoft.Authorization/diagnosticSettings/read\",\r\n \"Microsoft.Authorization/diagnosticSettingsCategories/read\",\r\n \"Microsoft.Authorization/locks/read\",\r\n \"Microsoft.Authorization/operations/read\",\r\n \"Microsoft.Authorization/permissions/read\",\r\n \"Microsoft.Authorization/policyAssignments/read\",\r\n \"Microsoft.Authorization/policyAssignments/privateLinkAssociations/read\",\r\n \"Microsoft.Authorization/policyAssignments/resourceManagementPrivateLinks/read\",\r\n \"Microsoft.Authorization/policyAssignments/resourceManagementPrivateLinks/privateEndpointConnectionProxies/read\",\r\n \"Microsoft.Authorization/policyAssignments/resourceManagementPrivateLinks/privateEndpointConnections/read\",\r\n \"Microsoft.Authorization/policyDefinitions/read\",\r\n \"Microsoft.Authorization/policyExemptions/read\",\r\n \"Microsoft.Authorization/policySetDefinitions/read\",\r\n \"Microsoft.Authorization/providerOperations/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleAssignmentScheduleInstances/read\",\r\n \"Microsoft.Authorization/roleAssignmentScheduleRequests/read\",\r\n \"Microsoft.Authorization/roleAssignmentSchedules/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"Microsoft.Authorization/roleEligibilityScheduleInstances/read\",\r\n \"Microsoft.Authorization/roleEligibilityScheduleRequests/read\",\r\n \"Microsoft.Authorization/roleEligibilitySchedules/read\",\r\n \"Microsoft.Authorization/roleManagementPolicies/read\",\r\n \"Microsoft.Authorization/roleManagementPolicyAssignments/read\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/read\",\r\n \"Microsoft.HybridCompute/machines/extensions/read\",\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.Insights/alertRules/activated/action\",\r\n \"Microsoft.Insights/alertRules/delete\",\r\n \"Microsoft.Insights/alertRules/incidents/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Insights/alertRules/resolved/action\",\r\n \"Microsoft.Insights/alertRules/throttled/action\",\r\n \"Microsoft.Insights/alertRules/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.KubernetesConfiguration/extensions/read\",\r\n \"Microsoft.ManagedNetworkFabric/networkFabricControllers/join/action\",\r\n \"Microsoft.ManagedNetworkFabric/networkFabrics/join/action\",\r\n \"Microsoft.ManagedNetworkFabric/networkRacks/join/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/cordon/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/delete\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/powerOff/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/read\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/reimage/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/replace/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/restart/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/runDataExtracts/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/runReadCommands/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/start/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/uncordon/action\",\r\n \"Microsoft.NetworkCloud/bareMetalMachines/write\",\r\n \"Microsoft.NetworkCloud/clusterManagers/delete\",\r\n \"Microsoft.NetworkCloud/clusterManagers/read\",\r\n \"Microsoft.NetworkCloud/clusterManagers/write\",\r\n \"Microsoft.NetworkCloud/clusters/bareMetalMachineKeySets/read\",\r\n \"Microsoft.NetworkCloud/clusters/bmcKeySets/read\",\r\n \"Microsoft.NetworkCloud/clusters/continueUpdateVersion/action\",\r\n \"Microsoft.NetworkCloud/clusters/delete\",\r\n \"Microsoft.NetworkCloud/clusters/deploy/action\",\r\n \"Microsoft.NetworkCloud/clusters/metricsConfigurations/delete\",\r\n \"Microsoft.NetworkCloud/clusters/metricsConfigurations/read\",\r\n \"Microsoft.NetworkCloud/clusters/metricsConfigurations/write\",\r\n \"Microsoft.NetworkCloud/clusters/read\",\r\n \"Microsoft.NetworkCloud/clusters/scanRuntime/action\",\r\n \"Microsoft.NetworkCloud/clusters/updateVersion/action\",\r\n \"Microsoft.NetworkCloud/clusters/write\",\r\n \"Microsoft.NetworkCloud/locations/operationStatuses/read\",\r\n \"Microsoft.NetworkCloud/operations/read\",\r\n \"Microsoft.NetworkCloud/rackSkus/read\",\r\n \"Microsoft.NetworkCloud/racks/delete\",\r\n \"Microsoft.NetworkCloud/racks/join/action\",\r\n \"Microsoft.NetworkCloud/racks/read\",\r\n \"Microsoft.NetworkCloud/racks/write\",\r\n \"Microsoft.NetworkCloud/register/action\",\r\n \"Microsoft.NetworkCloud/registeredSubscriptions/read\",\r\n \"Microsoft.NetworkCloud/storageAppliances/read\",\r\n \"Microsoft.NetworkCloud/unregister/action\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-11T15:42:35.0703776Z\",\r\n \"updatedOn\": \"2024-07-11T15:42:35.0703776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4aa368ec-fba9-4e93-81ed-396b3d461cc5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4aa368ec-fba9-4e93-81ed-396b3d461cc5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Container Instances Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read/write access to container groups provided by Azure Container Instances\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerInstance/containerGroups/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-11T17:43:35.3935391Z\",\r\n \"updatedOn\": \"2024-07-11T17:43:35.3935391Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d977122-f97e-4b4d-a52f-6b43003ddb4d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d977122-f97e-4b4d-a52f-6b43003ddb4d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Connector Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read connectors and their associated resources, such as impacts and insights.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Impact/Connectors/Read\",\r\n \"Microsoft.Impact/WorkloadImpacts/Read\",\r\n \"Microsoft.Impact/WorkloadImpacts/Insights/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-12T08:35:40.76413Z\",\r\n \"updatedOn\": \"2024-07-12T08:35:40.76413Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6cdbb904-5ff3-429d-8169-7d7818b91bd8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6cdbb904-5ff3-429d-8169-7d7818b91bd8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Databases ARM Management Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage Azure Databases\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/*/join/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"microsoft.insights/metrics/read\",\r\n \"microsoft.Compute/virtualMachineScaleSets/networkInterfaces/read\",\r\n \"Microsoft.VirtualMachineImages/locations/operations/read\",\r\n \"Microsoft.VirtualMachineImages/imageTemplates/write\",\r\n \"Microsoft.VirtualMachineImages/imageTemplates/run/action\",\r\n \"Microsoft.VirtualMachineImages/imageTemplates/read\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/sharedIdentities/write\",\r\n \"Microsoft.Storage/storageAccounts/sharedIdentities/read\",\r\n \"Microsoft.Storage/storageAccounts/regenerateKey/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/privateEndpointConnections/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/locations/usages/read\",\r\n \"Microsoft.Storage/checkNameAvailability/read\",\r\n \"Microsoft.Sql/register/action\",\r\n \"Microsoft.ServiceFabric/register/action\",\r\n \"Microsoft.ServiceFabric/locations/operations/read\",\r\n \"Microsoft.ServiceFabric/locations/operationResults/read\",\r\n \"Microsoft.ServiceFabric/clusters/write\",\r\n \"Microsoft.ServiceFabric/clusters/read\",\r\n \"Microsoft.ServiceFabric/clusters/delete\",\r\n \"Microsoft.Security/assessments/read\",\r\n \"Microsoft.Resources/tags/write\",\r\n \"Microsoft.Resources/tags/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/moveResources/action\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationStatuses/read\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworkGateways/delete\",\r\n \"Microsoft.Network/trafficmanagerprofiles/write\",\r\n \"Microsoft.Network/trafficmanagerprofiles/read\",\r\n \"Microsoft.Network/routeTables/write\",\r\n \"Microsoft.Network/routeTables/delete\",\r\n \"Microsoft.Network/register/action\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"Microsoft.Network/privateEndpoints/write\",\r\n \"Microsoft.Network/privateEndpoints/read\",\r\n \"Microsoft.Network/privateEndpoints/privateDnsZoneGroups/write\",\r\n \"Microsoft.Network/privateEndpoints/delete\",\r\n \"Microsoft.Network/privateDnsOperationStatuses/read\",\r\n \"Microsoft.Network/networkWatchers/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/write\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/loadBalancers/write\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/delete\",\r\n \"Microsoft.Network/azureFirewalls/write\",\r\n \"Microsoft.Network/azureFirewalls/read\",\r\n \"Microsoft.Network/azureFirewalls/delete\",\r\n \"Microsoft.Network/VirtualNetworkGateways/write\",\r\n \"Microsoft.Network/VirtualNetworkGateways/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.MachineLearningServices/locations/registryOperationsStatus/read\",\r\n \"Microsoft.Insights/register/action\",\r\n \"Microsoft.EventHub/register/action\",\r\n \"Microsoft.EventHub/namespaces/read\",\r\n \"Microsoft.EventHub/namespaces/delete\",\r\n \"Microsoft.EventHub/locations/namespaceOperationResults/read\",\r\n \"Microsoft.DocumentDB/locations/operationsStatus/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/failoverPriorityChange/action\",\r\n \"Microsoft.DocumentDB/databaseAccounts/delete\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/start/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/reimage/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/extensions/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/delete/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/delete\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/deallocate/action\",\r\n \"Microsoft.Compute/register/action\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/capsOperations/read\",\r\n \"Microsoft.Compute/locations/DiskOperations/read\",\r\n \"Microsoft.Compute/galleries/write\",\r\n \"Microsoft.Compute/galleries/read\",\r\n \"Microsoft.Compute/galleries/images/write\",\r\n \"Microsoft.Compute/galleries/images/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.ClassicStorage/storageAccounts/validateMigration/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/prepareMigration/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/operationStatuses/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/commitMigration/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/abortMigration/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicNetwork/register/action\",\r\n \"Microsoft.Chaos/targets/write\",\r\n \"Microsoft.Chaos/targets/capabilities/write\",\r\n \"Microsoft.Chaos/register/action\",\r\n \"Microsoft.Chaos/experiments/write\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/locks/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{ba92f5b4-2d11-453d-a403-e96b0029c9fe, 2a2b9908-6ea1-4ae2-8e65-a410df84e7d1})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{ba92f5b4-2d11-453d-a403-e96b0029c9fe, 2a2b9908-6ea1-4ae2-8e65-a410df84e7d1}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-15T15:01:50.9578552Z\",\r\n \"updatedOn\": \"2024-08-15T17:39:04.6571111Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b7ef99e8-10af-4a7c-8b15-5b6c352a8378\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b7ef99e8-10af-4a7c-8b15-5b6c352a8378\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Migrate Management Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role will let users grant permission to HybridOnboarding RP to manage extensions on their infrastructure. \",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Resource[HasObotoken] boolequals true\"\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"@Resource[HasObotoken] boolequals true AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{85cb6faf-e071-4c9b-8136-154b5a04f717})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{85cb6faf-e071-4c9b-8136-154b5a04f717}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-18T15:20:14.8932717Z\",\r\n \"updatedOn\": \"2024-07-18T15:20:14.8932717Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c20ab07d-648c-4fed-977e-f917d8095dfc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c20ab07d-648c-4fed-977e-f917d8095dfc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Transparency Logs Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage Transparency Log resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sovereign/transparencyLogs/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-18T17:06:03.4011538Z\",\r\n \"updatedOn\": \"2024-07-18T17:06:03.4011538Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8ad4d0ee-9bfb-49e8-93fc-01abb8db6240\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8ad4d0ee-9bfb-49e8-93fc-01abb8db6240\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Grafana Limited Viewer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View home page.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Dashboard/grafana/ActAsGrafanaLimitedViewer/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-19T05:11:50.7830427Z\",\r\n \"updatedOn\": \"2024-07-19T05:11:50.7830427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/41e04612-9dac-4699-a02b-c82ff2cc3fb5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41e04612-9dac-4699-a02b-c82ff2cc3fb5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Disk Encryption Set Operator for Managed Disks\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permissions to read, write or delete disk encryption sets which are used for encrypting managed disks with customer managed keys\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/diskEncryptionSets/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-19T21:32:25.1095326Z\",\r\n \"updatedOn\": \"2024-07-19T21:32:25.1095326Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/136d308c-0937-4a49-9bd7-edfb42adbffc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"136d308c-0937-4a49-9bd7-edfb42adbffc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Elastic Autopilot Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage 1p EAP resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.Storage/*\",\r\n \"Microsoft.Maintenance/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*\",\r\n \"Microsoft.KeyVault/vaults/*\",\r\n \"Microsoft.ManagedIdentity/*\",\r\n \"Microsoft.Resources/subscriptions/*/read\",\r\n \"Microsoft.KeyVault/*/read\",\r\n \"Microsoft.Authorization/locks/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/checkZonePeers/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"\",\r\n \"condition\": \"\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-29T16:10:19.733575Z\",\r\n \"updatedOn\": \"2024-10-22T15:14:07.0554269Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/753ceed7-553b-434b-a2e5-78da1a8379d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"753ceed7-553b-434b-a2e5-78da1a8379d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Register Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you Register / Unregister any Azure service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/register/action\",\r\n \"*/unregister/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-07-29T16:10:19.733575Z\",\r\n \"updatedOn\": \"2024-07-29T16:10:19.733575Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1cbe04d4-3fa3-4559-a406-71584a32cacb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1cbe04d4-3fa3-4559-a406-71584a32cacb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PowerBI Dedicated Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all resources within Power BI Dedicated RP\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.PowerBIDedicated/register/action\",\r\n \"Microsoft.PowerBIDedicated/autoScaleVCores/read\",\r\n \"Microsoft.PowerBIDedicated/autoScaleVCores/write\",\r\n \"Microsoft.PowerBIDedicated/autoScaleVCores/delete\",\r\n \"Microsoft.PowerBIDedicated/capacities/read\",\r\n \"Microsoft.PowerBIDedicated/capacities/write\",\r\n \"Microsoft.PowerBIDedicated/capacities/delete\",\r\n \"Microsoft.PowerBIDedicated/capacities/suspend/action\",\r\n \"Microsoft.PowerBIDedicated/capacities/resume/action\",\r\n \"Microsoft.PowerBIDedicated/capacities/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.PowerBIDedicated/capacities/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.PowerBIDedicated/capacities/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.PowerBIDedicated/capacities/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.PowerBIDedicated/capacities/skus/read\",\r\n \"Microsoft.PowerBIDedicated/locations/checkNameAvailability/action\",\r\n \"Microsoft.PowerBIDedicated/locations/operationresults/read\",\r\n \"Microsoft.PowerBIDedicated/locations/operationstatuses/read\",\r\n \"Microsoft.PowerBIDedicated/operations/read\",\r\n \"Microsoft.PowerBIDedicated/skus/read\",\r\n \"Microsoft.PowerBIDedicated/servers/read\",\r\n \"Microsoft.PowerBIDedicated/servers/write\",\r\n \"Microsoft.PowerBIDedicated/servers/delete\",\r\n \"Microsoft.PowerBIDedicated/servers/suspend/action\",\r\n \"Microsoft.PowerBIDedicated/servers/resume/action\",\r\n \"Microsoft.PowerBIDedicated/servers/skus/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-01T23:18:09.5320383Z\",\r\n \"updatedOn\": \"2024-08-01T23:18:09.5320383Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/10550c65-218e-4de9-9e52-0200c8ed4748\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10550c65-218e-4de9-9e52-0200c8ed4748\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Subscription Migrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform operations related to the transfer of managed identities and their associated authorization policies from one Entra ID tenant to another\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/migrateIdentities/action\",\r\n \"Microsoft.Authorization/migrateRbac/action\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/denyAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\",\r\n \"Microsoft.managedIdentities/identities/read\",\r\n \"Microsoft.managedIdentities/userAssignedIdentities/read\",\r\n \"Microsoft.KeyVault.vaults/accessPolicies/read\",\r\n \"Microsoft.KeyVault.vaults/accessPolicies/write\",\r\n \"Microsoft.KeyVault.vaults/accessPolicies/delete\",\r\n \"Microsoft.Authorization/policyAssignments/read\",\r\n \"Microsoft.Authorization/policyAssignments/write\",\r\n \"Microsoft.Authorization/policyAssignments/delete\",\r\n \"Microsoft.Authorization/policyDefinitions/read\",\r\n \"Microsoft.Authorization/policyDefinitions/write\",\r\n \"Microsoft.Authorization/policyDefinitions/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-02T00:04:08.5098911Z\",\r\n \"updatedOn\": \"2024-12-06T19:13:26.6910904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cd7709b9-d129-4dc4-ac27-d215a1be1e07\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cd7709b9-d129-4dc4-ac27-d215a1be1e07\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Bayer Ag Powered Services Field Imagery Solution Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide access to Field Imagery Solution by Bayer Ag Powered Services\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\",\r\n \"Microsoft.AgFoodPlatform/farmBeats/scenes/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-02T08:28:42.2829274Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4380427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1af232de-e806-426f-8ca1-c36142449755\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1af232de-e806-426f-8ca1-c36142449755\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Edge Hardware Center Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants you access to take actions as an edge order administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EdgeOrder/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-07T15:26:18.9896197Z\",\r\n \"updatedOn\": \"2024-08-07T15:26:18.9896197Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9295f069-25d0-4f44-bb6a-3da70d11aa00\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9295f069-25d0-4f44-bb6a-3da70d11aa00\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PostgreSQL Flexible Management Service Contributor (Deprecated)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role is deprecated.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"Microsoft.Storage/locations/usages/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/skus/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/delete\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/privateEndpointConnections/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/sharedIdentities/write\",\r\n \"Microsoft.Storage/storageAccounts/sharedIdentities/read\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/read\",\r\n \"Microsoft.Security/assessments/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/write\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"microsoft.insights/diagnosticSettings/write\",\r\n \"microsoft.insights/metrics/read\",\r\n \"Microsoft.KeyVault/vaults/read\",\r\n \"Microsoft.KeyVault/vaults/write\",\r\n \"Microsoft.KeyVault/vaults/delete\",\r\n \"Microsoft.KeyVault/vaults/deploy/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/write\",\r\n \"Microsoft.Network/loadBalancers/delete\",\r\n \"Microsoft.Network/loadBalancers/probes/read\",\r\n \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"Microsoft.Network/loadBalancers/outboundRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/write\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/delete\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/health/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/write\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/delete\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/backendPoolAddresses/read\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/locations/serviceTags/read\",\r\n \"Microsoft.Network/locations/supportedVirtualMachineSizes/read\",\r\n \"Microsoft.Network/locations/usages/read\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkWatchers/read\",\r\n \"Microsoft.Network/privateDnsOperationStatuses/read\",\r\n \"Microsoft.Network/privateDnsZones/delete\",\r\n \"Microsoft.Network/privateDnsZones/read\",\r\n \"Microsoft.Network/privateDnsZones/write\",\r\n \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/remoteVirtualNetworkPeeringProxies/delete\",\r\n \"Microsoft.Network/virtualNetworks/remoteVirtualNetworkPeeringProxies/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/Details/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/validate/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Compute/disks/endGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/read\",\r\n \"Microsoft.Compute/snapshots/write\",\r\n \"Microsoft.Compute/snapshots/delete\",\r\n \"Microsoft.Compute/snapshots/beginGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/endGetAccess/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/write\",\r\n \"Microsoft.Compute/virtualMachines/extensions/delete\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/delete\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/runCommand/action\",\r\n \"Microsoft.Compute/diskEncryptionSets/delete\",\r\n \"Microsoft.Compute/diskEncryptionSets/read\",\r\n \"Microsoft.Compute/diskEncryptionSets/*\",\r\n \"Microsoft.Compute/diskEncryptionSets/write\",\r\n \"Microsoft.Compute/galleries/images/versions/read\",\r\n \"Microsoft.Compute/locations/DiskOperations/read\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/usages/read\",\r\n \"Microsoft.Compute/skus/read\",\r\n \"Microsoft.Storage/storageAccounts/fileservices/read\",\r\n \"Microsoft.Storage/storageAccounts/regenerateKey/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals {ba92f5b4-2d11-453d-a403-e96b0029c9fe, c12c1c16-33a1-487b-954d-41c89c60f349})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals {ba92f5b4-2d11-453d-a403-e96b0029c9fe, c12c1c16-33a1-487b-954d-41c89c60f349}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-07T15:26:18.9896197Z\",\r\n \"updatedOn\": \"2024-08-21T15:29:35.0128869Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a60b64c0-1adf-4051-956a-78f3ae578c7d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a60b64c0-1adf-4051-956a-78f3ae578c7d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure AI Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"A Built-In Role that has all control plane permissions to work with Azure AI and its dependencies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.CognitiveServices/*\",\r\n \"Microsoft.ContainerRegistry/registries/*\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/providers/features/register/action\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/generateLiveToken/read\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/scheduledqueryrules/*\",\r\n \"Microsoft.Insights/topology/read\",\r\n \"Microsoft.Insights/transactions/read\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.MachineLearningServices/workspaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Search/searchServices/write\",\r\n \"Microsoft.Search/searchServices/read\",\r\n \"Microsoft.Search/searchServices/delete\",\r\n \"Microsoft.Search/searchServices/indexes/*\",\r\n \"Microsoft.DataFactory/factories/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-08T23:54:27.5831229Z\",\r\n \"updatedOn\": \"2024-10-03T15:31:17.7702779Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b78c5d69-af96-48a3-bf8d-a8b4d589de94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b78c5d69-af96-48a3-bf8d-a8b4d589de94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Compute Gallery Image Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This is the role for reading gallery images.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/galleries/images/read\",\r\n \"Microsoft.Compute/galleries/images/versions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-12T16:09:21.7547431Z\",\r\n \"updatedOn\": \"2024-08-28T15:23:36.0811004Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cf7c76d2-98a3-4358-a134-615aa78bf44d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cf7c76d2-98a3-4358-a134-615aa78bf44d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps Jobs Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read access to ContainerApps jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.app/jobs/read\",\r\n \"Microsoft.App/jobs/*/read\",\r\n \"Microsoft.App/managedenvironments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.4380427Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4380427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/edd66693-d32a-450b-997d-0158c03976b0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"edd66693-d32a-450b-997d-0158c03976b0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full management of Container Apps, including creation, deletion, and updates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/containerApps/*/read\",\r\n \"Microsoft.App/containerApps/*/write\",\r\n \"Microsoft.App/containerApps/*/delete\",\r\n \"Microsoft.App/containerApps/*/action\",\r\n \"Microsoft.App/managedEnvironments/read\",\r\n \"Microsoft.App/managedEnvironments/*/read\",\r\n \"Microsoft.App/managedEnvironments/join/action\",\r\n \"Microsoft.App/managedEnvironments/checknameavailability/action\",\r\n \"Microsoft.App/connectedEnvironments/read\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.App/connectedEnvironments/join/action\",\r\n \"Microsoft.App/connectedEnvironments/checknameavailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.4390439Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4390439Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/358470bc-b998-42bd-ab17-a7e34c199c0f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"358470bc-b998-42bd-ab17-a7e34c199c0f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, logstream and exec into Container Apps.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/containerApps/*/read\",\r\n \"Microsoft.App/containerApps/*/action\",\r\n \"Microsoft.App/managedEnvironments/read\",\r\n \"Microsoft.App/managedEnvironments/*/read\",\r\n \"Microsoft.App/managedEnvironments/join/action\",\r\n \"Microsoft.App/managedEnvironments/checknameavailability/action\",\r\n \"Microsoft.App/connectedEnvironments/read\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.App/connectedEnvironments/join/action\",\r\n \"Microsoft.App/connectedEnvironments/checknameavailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.App/containerApps/logstream/action\",\r\n \"Microsoft.App/containerApps/exec/action\",\r\n \"Microsoft.App/containerApps/debug/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.4380427Z\",\r\n \"updatedOn\": \"2024-11-14T16:17:08.9697226Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f3bd1b5c-91fa-40e7-afe7-0c11d331232c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f3bd1b5c-91fa-40e7-afe7-0c11d331232c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps SessionPools Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read access to ContainerApps sessionpools.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/sessionPools/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.440043Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.440043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/af61e8fc-2633-4b95-bed3-421ad6826515\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"af61e8fc-2633-4b95-bed3-421ad6826515\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps SessionPools Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full management of Container Apps SessionPools, including creation, deletion, and updates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/sessionPools/*/read\",\r\n \"Microsoft.App/sessionPools/*/write\",\r\n \"Microsoft.App/sessionPools/*/delete\",\r\n \"Microsoft.App/sessionPools/*/action\",\r\n \"microsoft.App/managedEnvironments/read\",\r\n \"Microsoft.App/managedEnvironments/*/read\",\r\n \"Microsoft.App/managedEnvironments/join/action\",\r\n \"Microsoft.App/managedEnvironments/checknameavailability/action\",\r\n \"microsoft.App/connectedEnvironments/read\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.App/connectedEnvironments/join/action\",\r\n \"Microsoft.App/connectedEnvironments/checknameavailability/action\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.4420428Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4420428Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f7669afb-68b2-44b4-9c5f-6d2a47fddda0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f7669afb-68b2-44b4-9c5f-6d2a47fddda0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps ManagedEnvironments Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full management of Container Apps ManagedEnvironments, including creation, deletion, and updates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/managedEnvironments/*/read\",\r\n \"Microsoft.App/managedEnvironments/*/write\",\r\n \"Microsoft.App/managedEnvironments/*/delete\",\r\n \"Microsoft.App/managedEnvironments/*/action\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.4410422Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4410422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/57cc5028-e6a7-4284-868d-0611c5923f8d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"57cc5028-e6a7-4284-868d-0611c5923f8d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps ManagedEnvironments Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read access to ContainerApps managedenvironments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/managedEnvironments/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:28.4410422Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:28.4410422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1b32c00b-7eff-4c22-93e6-93d11d72d2d8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1b32c00b-7eff-4c22-93e6-93d11d72d2d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps Jobs Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full management of Container Apps jobs, including creation, deletion, and updates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"microsoft.app/jobs/read\",\r\n \"Microsoft.App/jobs/*/read\",\r\n \"Microsoft.App/jobs/*/action\",\r\n \"Microsoft.App/jobs/write\",\r\n \"Microsoft.App/jobs/delete\",\r\n \"Microsoft.app/managedenvironments/read\",\r\n \"Microsoft.App/managedenvironments/*/read\",\r\n \"Microsoft.App/managedenvironments/join/action\",\r\n \"Microsoft.App/managedenvironments/checknameavailability/action\",\r\n \"Microsoft.app/connectedEnvironments/read\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.App/connectedEnvironments/join/action\",\r\n \"Microsoft.App/connectedEnvironments/checknameavailability/action\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-14T16:23:29.078965Z\",\r\n \"updatedOn\": \"2024-08-14T16:23:29.078965Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4e3d2b60-56ae-4dc6-a233-09c8e5a82e68\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e3d2b60-56ae-4dc6-a233-09c8e5a82e68\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Durable Task Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Durable Task role for all data access operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DurableTask/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-16T21:35:11.3906589Z\",\r\n \"updatedOn\": \"2024-08-16T21:35:11.3906589Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0ad04412-c4d5-4796-b79c-f76d14c8d402\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0ad04412-c4d5-4796-b79c-f76d14c8d402\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"KubernetesRuntime Load Balancer Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, write, and delete load balancers in an Arc connected Kubernetes cluster\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.KubernetesRuntime/loadBalancers/read\",\r\n \"Microsoft.KubernetesRuntime/loadBalancers/write\",\r\n \"Microsoft.KubernetesRuntime/loadBalancers/delete\",\r\n \"Microsoft.KubernetesRuntime/bgpPeers/read\",\r\n \"Microsoft.KubernetesRuntime/bgpPeers/write\",\r\n \"Microsoft.KubernetesRuntime/bgpPeers/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-27T15:13:33.329785Z\",\r\n \"updatedOn\": \"2024-08-27T15:13:33.329785Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1a5682fc-4f12-4b25-927e-e8cfed0c539e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1a5682fc-4f12-4b25-927e-e8cfed0c539e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AVS Orchestrator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Custom role for AVS to manage customer resources used for AVS scenarios.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/operationStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Network/virtualHubs/delete\",\r\n \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"Microsoft.Network/networkIntentPolicies/read\",\r\n \"Microsoft.Network/networkIntentPolicies/delete\",\r\n \"Microsoft.Network/networkIntentPolicies/write\",\r\n \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/write\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/unprepareNetworkPolicies/action\",\r\n \"Microsoft.Network/virtualHubs/write\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualHubs/ipConfigurations/write\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/virtualHubs/ipConfigurations/read\",\r\n \"Microsoft.Network/virtualHubs/bgpConnections/write\",\r\n \"Microsoft.Network/virtualHubs/bgpConnections/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\r\n \"Microsoft.Network/virtualNetworks/peer/action\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/routeTables/read\",\r\n \"Microsoft.Network/routeTables/write\",\r\n \"Microsoft.Network/routeTables/delete\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Network/routeTables/routes/read\",\r\n \"Microsoft.Network/routeTables/routes/write\",\r\n \"Microsoft.Network/routeTables/routes/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"(!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR @Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{d715fb95a0f04f1c8be65ad2d2767f67, 4d97b98b1d4f4787a291c67834d212e7}\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-28T15:23:36.0811004Z\",\r\n \"updatedOn\": \"2024-08-28T15:23:36.0811004Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d715fb95-a0f0-4f1c-8be6-5ad2d2767f67\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d715fb95-a0f0-4f1c-8be6-5ad2d2767f67\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Service Connector Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Manage Service Connector.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceLinker/linkers/read\",\r\n \"Microsoft.ServiceLinker/linkers/delete\",\r\n \"Microsoft.ServiceLinker/linkers/write\",\r\n \"Microsoft.ServiceLinker/linkers/listConfigurations/action\",\r\n \"Microsoft.ServiceLinker/linkers/validateLinker/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-08-29T15:27:16.4040041Z\",\r\n \"updatedOn\": \"2024-08-29T15:27:16.4040041Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/db7003cd-07a9-490c-bfa5-23e40314f8d7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db7003cd-07a9-490c-bfa5-23e40314f8d7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PostgreSQL Flexible Management Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete required resources objects to be used by Azure PostgreSQL Flexible servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listKeys/action\",\r\n \"Microsoft.Storage/locations/usages/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/skus/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/delete\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/privateEndpointConnections/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/sharedIdentities/write\",\r\n \"Microsoft.Storage/storageAccounts/sharedIdentities/read\",\r\n \"Microsoft.Storage/storageAccounts/write\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/read\",\r\n \"Microsoft.Security/assessments/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/write\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"microsoft.insights/diagnosticSettings/write\",\r\n \"microsoft.insights/metrics/read\",\r\n \"Microsoft.KeyVault/vaults/read\",\r\n \"Microsoft.KeyVault/vaults/write\",\r\n \"Microsoft.KeyVault/vaults/delete\",\r\n \"Microsoft.KeyVault/vaults/deploy/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/loadBalancers/write\",\r\n \"Microsoft.Network/loadBalancers/delete\",\r\n \"Microsoft.Network/loadBalancers/probes/read\",\r\n \"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\r\n \"Microsoft.Network/loadBalancers/outboundRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/read\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/write\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/delete\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/health/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/read\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/write\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/delete\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/backendPoolAddresses/read\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/locations/serviceTags/read\",\r\n \"Microsoft.Network/locations/supportedVirtualMachineSizes/read\",\r\n \"Microsoft.Network/locations/usages/read\",\r\n \"Microsoft.Network/networkInterfaces/delete\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/delete\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/securityRules/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkWatchers/read\",\r\n \"Microsoft.Network/privateDnsOperationStatuses/read\",\r\n \"Microsoft.Network/privateDnsZones/delete\",\r\n \"Microsoft.Network/privateDnsZones/read\",\r\n \"Microsoft.Network/privateDnsZones/write\",\r\n \"Microsoft.Network/publicIPAddresses/delete\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/remoteVirtualNetworkPeeringProxies/delete\",\r\n \"Microsoft.Network/virtualNetworks/remoteVirtualNetworkPeeringProxies/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/delete\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/Details/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/validate/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\",\r\n \"Microsoft.Compute/disks/endGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/read\",\r\n \"Microsoft.Compute/snapshots/write\",\r\n \"Microsoft.Compute/snapshots/delete\",\r\n \"Microsoft.Compute/snapshots/beginGetAccess/action\",\r\n \"Microsoft.Compute/snapshots/endGetAccess/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/read\",\r\n \"Microsoft.Compute/virtualMachines/extensions/write\",\r\n \"Microsoft.Compute/virtualMachines/extensions/delete\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/virtualMachines/delete\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/runCommand/action\",\r\n \"Microsoft.Compute/diskEncryptionSets/delete\",\r\n \"Microsoft.Compute/diskEncryptionSets/read\",\r\n \"Microsoft.Compute/diskEncryptionSets/*\",\r\n \"Microsoft.Compute/diskEncryptionSets/write\",\r\n \"Microsoft.Compute/galleries/images/versions/read\",\r\n \"Microsoft.Compute/locations/DiskOperations/read\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/usages/read\",\r\n \"Microsoft.Compute/locations/capsOperations/read\",\r\n \"Microsoft.Compute/skus/read\",\r\n \"Microsoft.Compute/capacityReservationGroups/share/action\",\r\n \"Microsoft.Compute/capacityReservationGroups/read\",\r\n \"Microsoft.Compute/capacityReservationGroups/deploy/action\",\r\n \"Microsoft.Compute/capacityReservationGroups/write\",\r\n \"Microsoft.Compute/capacityReservationGroups/capacityReservations/read\",\r\n \"Microsoft.Compute/capacityReservationGroups/capacityReservations/write\",\r\n \"Microsoft.Storage/storageAccounts/fileservices/read\",\r\n \"Microsoft.Storage/storageAccounts/regenerateKey/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\r\n \"Microsoft.RecoveryServices/backupprotecteditems/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals {ba92f5b4-2d11-453d-a403-e96b0029c9fe, c12c1c16-33a1-487b-954d-41c89c60f349})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals {ba92f5b4-2d11-453d-a403-e96b0029c9fe, c12c1c16-33a1-487b-954d-41c89c60f349}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-02T15:07:07.8698996Z\",\r\n \"updatedOn\": \"2025-01-14T16:18:32.7217624Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cc3c084f-9a2e-4664-b2bc-47a6685a5f99\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cc3c084f-9a2e-4664-b2bc-47a6685a5f99\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Device Update Agent\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide full access to all Azure Device Update agent operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DeviceUpdate/updateAccounts/agents/requestUpdate/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-02T15:07:07.8698996Z\",\r\n \"updatedOn\": \"2024-09-02T15:07:07.8698996Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a740172-0fc2-4039-972c-b31864cd47d6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2a740172-0fc2-4039-972c-b31864cd47d6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Enclave Approver Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read all resources in Azure Virtual Enclaves and Approve approval requests within the Enclave\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Mission/Operations/read\",\r\n \"Microsoft.Mission/communities/read\",\r\n \"Microsoft.Mission/internalConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/read\",\r\n \"Microsoft.Mission/virtualEnclaves/endpoints/read\",\r\n \"Microsoft.Mission/virtualEnclaves/workloads/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Mission/communities/communityEndpoints/read\",\r\n \"Microsoft.Mission/communities/transitHubs/read\",\r\n \"Microsoft.Mission/enclaveConnections/read\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\r\n \"Microsoft.Mission/approvals/read\",\r\n \"Microsoft.Mission/approvals/write\",\r\n \"Microsoft.Mission/enclaveConnections/approvalCallback/action\",\r\n \"Microsoft.Mission/virtualEnclaves/approvalCallback/action\",\r\n \"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/approvalCallback/action\",\r\n \"Microsoft.Mission/communities/communityEndpoints/approvalCallback/action\",\r\n \"Microsoft.Mission/approvals/initiatorCallback/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-02T15:07:07.8698996Z\",\r\n \"updatedOn\": \"2025-01-14T16:18:32.7067643Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2142ea27-02ad-4094-bfea-2dbac6d24934\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2142ea27-02ad-4094-bfea-2dbac6d24934\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Purge Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows permanent deletion of soft-deleted vaults.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\",\r\n \"Microsoft.KeyVault/locations/operationResults/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-03T15:18:11.2327233Z\",\r\n \"updatedOn\": \"2024-09-03T15:18:11.2327233Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a68e7c17-0ab2-4c09-9a58-125dae29748c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a68e7c17-0ab2-4c09-9a58-125dae29748c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Face Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to perform all Face APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/Face/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-04T15:25:04.7461682Z\",\r\n \"updatedOn\": \"2024-09-04T15:25:04.7461682Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b5b0c71d-aca9-4081-aee2-9b1bb335fc1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b5b0c71d-aca9-4081-aee2-9b1bb335fc1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps Jobs Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, start, and stop Container Apps jobs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"microsoft.app/jobs/read\",\r\n \"Microsoft.App/jobs/*/read\",\r\n \"Microsoft.App/jobs/*/action\",\r\n \"Microsoft.app/managedenvironments/read\",\r\n \"Microsoft.App/managedenvironments/*/read\",\r\n \"Microsoft.App/managedenvironments/join/action\",\r\n \"Microsoft.App/managedenvironments/checknameavailability/action\",\r\n \"Microsoft.app/connectedEnvironments/read\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.App/connectedEnvironments/join/action\",\r\n \"Microsoft.App/connectedEnvironments/checknameavailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.App/jobs/logstream/action\",\r\n \"Microsoft.App/jobs/exec/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-09T15:09:55.0632221Z\",\r\n \"updatedOn\": \"2024-09-09T15:09:55.0632221Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b9a307c4-5aa3-4b52-ba60-2b17c136cd7b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b9a307c4-5aa3-4b52-ba60-2b17c136cd7b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Operator Nexus Owner (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) This role allows full access to Azure Operator Nexus Network Cloud resources. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.NetworkCloud/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-10T15:22:50.4935371Z\",\r\n \"updatedOn\": \"2024-09-10T15:22:50.4935371Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/77be276d-fb44-4f3b-beb5-9bf03c4cd2d3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"77be276d-fb44-4f3b-beb5-9bf03c4cd2d3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CloudTest Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read, write, delete and perform actions on CloudTest Accounts, CloudTest Pools, 1ES Hosted Pools and 1ES Images.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CloudTest/*/read\",\r\n \"Microsoft.CloudTest/hostedpools/write\",\r\n \"Microsoft.CloudTest/hostedpools/delete\",\r\n \"Microsoft.CloudTest/images/write\",\r\n \"Microsoft.CloudTest/images/delete\",\r\n \"Microsoft.CloudTest/images/cancel/action\",\r\n \"Microsoft.CloudTest/images/refresh/action\",\r\n \"Microsoft.CloudTest/pools/write\",\r\n \"Microsoft.CloudTest/pools/delete\",\r\n \"Microsoft.CloudTest/accounts/write\",\r\n \"Microsoft.CloudTest/accounts/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-11T15:31:21.7257585Z\",\r\n \"updatedOn\": \"2024-10-03T16:47:55.6838934Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4e9d0bd4-5aab-4f91-92df-9def33fe287c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e9d0bd4-5aab-4f91-92df-9def33fe287c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Automanage Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Automanage Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automanage/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-11T15:31:21.7247588Z\",\r\n \"updatedOn\": \"2024-09-11T15:31:21.7247588Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8d6517c1-e434-405c-9f3f-e0ae65085d76\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d6517c1-e434-405c-9f3f-e0ae65085d76\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Bot Service Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"To perform actions on the bots by copilot studio platform and extensibility team\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.BotService/listAuthServiceProviders/action\",\r\n \"Microsoft.BotService/listauthserviceproviders/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/botServices/read\",\r\n \"Microsoft.BotService/botServices/write\",\r\n \"Microsoft.BotService/botServices/delete\",\r\n \"Microsoft.BotService/botServices/channels/write\",\r\n \"Microsoft.BotService/botServices/channels/read\",\r\n \"Microsoft.BotService/botServices/channels/listchannelwithkeys/action\",\r\n \"Microsoft.BotService/botServices/channels/delete\",\r\n \"Microsoft.BotService/botServices/channels/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/botServices/connections/read\",\r\n \"Microsoft.BotService/botServices/connections/write\",\r\n \"Microsoft.BotService/botServices/connections/delete\",\r\n \"Microsoft.BotService/botServices/connections/listwithsecrets/write\",\r\n \"Microsoft.BotService/botServices/connections/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/botServices/createemailsigninurl/action\",\r\n \"Microsoft.BotService/botServices/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.BotService/botServices/joinPerimeter/action\",\r\n \"Microsoft.BotService/botServices/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/checknameavailability/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/hostsettings/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/botServices/privateEndpointConnectionProxies/write\",\r\n \"Microsoft.BotService/botServices/privateEndpointConnectionProxies/delete\",\r\n \"Microsoft.BotService/botServices/privateEndpointConnectionProxies/validate/action\",\r\n \"Microsoft.BotService/botServices/privateEndpointConnections/write\",\r\n \"Microsoft.BotService/botServices/privateEndpointConnections/delete\",\r\n \"Microsoft.BotService/listqnamakerendpointkeys/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.BotService/botServices/networkSecurityPerimeterConfigurations/reconcile/action\",\r\n \"Microsoft.BotService/botServices/networkSecurityPerimeterAssociationProxies/write\",\r\n \"Microsoft.BotService/botServices/networkSecurityPerimeterAssociationProxies/delete\",\r\n \"Microsoft.BotService/locations/notifyNetworkSecurityPerimeterUpdatesAvailable/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.BotService/botServices/channels/regeneratekeys/action\",\r\n \"Microsoft.BotService/botServices/Connections/listWithSecrets/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-13T05:43:35.3471462Z\",\r\n \"updatedOn\": \"2025-01-31T16:56:52.7807707Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9fc6112f-f48e-4e27-8b09-72a5c94e4ae9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9fc6112f-f48e-4e27-8b09-72a5c94e4ae9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permission for read operations for App Configuration resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppConfiguration/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-16T15:00:44.1461191Z\",\r\n \"updatedOn\": \"2024-09-16T15:00:44.1461191Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/175b81b9-6e0d-490a-85e4-0d422273c10c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"175b81b9-6e0d-490a-85e4-0d422273c10c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permission for all management operations, except purge, for App Configuration resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AppConfiguration/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.AppConfiguration/locations/deletedConfigurationStores/purge/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-16T15:00:44.4010948Z\",\r\n \"updatedOn\": \"2024-09-16T15:00:44.4010948Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fe86443c-f201-4fc4-9d2a-ac61149fbda0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fe86443c-f201-4fc4-9d2a-ac61149fbda0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Service Fabric Managed Cluster Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Deploy and manage your Service Fabric Managed Cluster resources. Includes managed clusters, node types, application types, application type versions, applications, and services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceFabric/managedclusters/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-18T15:11:06.79416Z\",\r\n \"updatedOn\": \"2024-10-08T15:25:11.4963141Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/83f80186-3729-438c-ad2d-39e94d718838\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"83f80186-3729-438c-ad2d-39e94d718838\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Data Importer and Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides the ability to import images into a registry through the registry import operation. Provides the ability to list repositories, view images and tags, get manifests, and pull images. Does not provide permissions for importing images through configuring registry transfer pipelines such as import and export pipelines. Does not provide permissions for importing through configuring Artifact Cache or Sync rules.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/importImage/action\",\r\n \"Microsoft.ContainerRegistry/registries/read\",\r\n \"Microsoft.ContainerRegistry/registries/pull/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-20T02:52:09.7821852Z\",\r\n \"updatedOn\": \"2024-09-20T02:52:09.7821852Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/577a9874-89fd-4f24-9dbd-b5034d0ad23a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"577a9874-89fd-4f24-9dbd-b5034d0ad23a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Batch Service Orchestration Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants the required permissions to Azure Batch Resource Provider to manage compute and other backing resources in the subscription.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Security/assessments/read\",\r\n \"Microsoft.AzureFleet/fleets/write\",\r\n \"Microsoft.AzureFleet/fleets/read\",\r\n \"Microsoft.AzureFleet/fleets/delete\",\r\n \"Microsoft.Compute/locations/DiskOperations/read\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/approveRollingUpgrade/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/delete\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/delete/action\",\r\n \"Microsoft.Compute/VirtualMachineScaleSets/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/reimage/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/reimageall/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/restart/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/start/action\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/write\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/extensions/read\",\r\n \"microsoft.Compute/virtualMachineScaleSets/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/virtualmachines/restart/action\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/dataCollectionRuleAssociations/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Network/networkWatchers/read\",\r\n \"Microsoft.Network/virtualNetworks/delete\",\r\n \"Microsoft.Network/virtualNetworks/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-23T15:05:04.8272481Z\",\r\n \"updatedOn\": \"2024-09-23T15:05:04.8272481Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a35466a1-cfd6-450a-b35e-683fcdf30363\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a35466a1-cfd6-450a-b35e-683fcdf30363\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft PowerBI Tenant Operations Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows management of tenant operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.PowerBI/tenants/workspaces/read\",\r\n \"Microsoft.PowerBI/tenants/workspaces/delete\",\r\n \"Microsoft.PowerBI/tenants/read\",\r\n \"Microsoft.PowerBI/tenants/delete\",\r\n \"Microsoft.PowerBI/tenants/write\",\r\n \"Microsoft.PowerBI/tenants/workspaces/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-23T15:05:04.8262456Z\",\r\n \"updatedOn\": \"2024-09-23T15:05:04.8262456Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8c87871d-6201-42da-abb1-1c0c985ff71c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8c87871d-6201-42da-abb1-1c0c985ff71c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"MySQL Control Plane\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The permission set to use on mysql control plane\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/*\",\r\n \"Microsoft.Storage/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.ManagedIdentity/*\",\r\n \"Microsoft.ContainerInstance/*\",\r\n \"Microsoft.Resources/*\",\r\n \"Microsoft.Authorization/policies/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/locks/delete\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-27T08:07:52.6567135Z\",\r\n \"updatedOn\": \"2024-12-17T16:19:14.4189988Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b5207fd7-42d3-40fa-8cc6-a7e189aef39e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b5207fd7-42d3-40fa-8cc6-a7e189aef39e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"MySQL User Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"User data reader for MySQL service.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/readFileBackupSemantics/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-27T08:07:52.6567135Z\",\r\n \"updatedOn\": \"2024-09-27T08:07:52.6567135Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/abed7cd4-f358-4384-9d17-def9303b3b53\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"abed7cd4-f358-4384-9d17-def9303b3b53\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"MySQL User Data Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"User data writer for MySQL service.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/*\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/*\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-09-27T08:07:52.6567135Z\",\r\n \"updatedOn\": \"2024-09-27T08:07:52.6567135Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8894c184-eeb6-45cc-868a-1be782055af3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8894c184-eeb6-45cc-868a-1be782055af3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Service Fabric Cluster Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage your Service Fabric Cluster resources. Includes clusters, application types, application type versions, applications, and services. You will need additional permissions to deploy and manage the cluster's underlying resources such as virtual machine scale sets, storage accounts, networks, etc.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceFabric/clusters/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-02T15:19:07.1483126Z\",\r\n \"updatedOn\": \"2024-10-08T15:25:12.0748061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b6efc156-f0da-4e90-a50a-8c000140b017\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b6efc156-f0da-4e90-a50a-8c000140b017\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Stream Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Contributor access to Clusters and Streaming Jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.StreamAnalytics/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-03T16:47:55.6818914Z\",\r\n \"updatedOn\": \"2024-10-03T16:47:55.6818914Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6e0c8711-85a0-4490-8365-8ec13c4560b4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6e0c8711-85a0-4490-8365-8ec13c4560b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Stream Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to Clusters and Streaming Jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.StreamAnalytics/streamingjobs/Read\",\r\n \"Microsoft.StreamAnalytics/streamingjobs/*/Read\",\r\n \"Microsoft.StreamAnalytics/clusters/Read\",\r\n \"Microsoft.StreamAnalytics/clusters/*/Read\",\r\n \"Microsoft.StreamAnalytics/clusters/ListStreamingJobs/action\",\r\n \"Microsoft.StreamAnalytics/locations/*/Read\",\r\n \"Microsoft.StreamAnalytics/operations/Read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-03T16:47:55.6818914Z\",\r\n \"updatedOn\": \"2024-10-03T16:47:55.6818914Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1dfc38e8-6ce7-447f-807c-029c65262c5f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1dfc38e8-6ce7-447f-807c-029c65262c5f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Durable Task Worker\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Used by worker applications to interact with the Durable Task service\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DurableTask/data/execute\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-07T15:14:27.418415Z\",\r\n \"updatedOn\": \"2024-10-07T15:14:27.418415Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/80d0d6b0-f522-40a4-8886-a5a11720c375\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"80d0d6b0-f522-40a4-8886-a5a11720c375\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Portal Dashboard Writer Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can write an Azure Portal Dashboard\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Portal/dashboards/read\",\r\n \"Microsoft.Portal/dashboards/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"1.0\",\r\n \"condition\": \"@Resource[HasObotoken] boolequals true\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-09T15:31:49.3691696Z\",\r\n \"updatedOn\": \"2025-01-17T21:39:31.052126Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/78eacb5e-e318-4560-85a9-e6a724ca60c9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"78eacb5e-e318-4560-85a9-e6a724ca60c9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Fabric Resource Management Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Used by TIPS and FRM MSIs to create, update, delete and manage Fabric resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AlertsManagement/smartDetectorAlertRules/delete\",\r\n \"Microsoft.App/containerApps/*/delete\",\r\n \"Microsoft.App/containerApps/*/write\",\r\n \"Microsoft.App/managedEnvironments/*/action\",\r\n \"Microsoft.App/managedEnvironments/*/delete\",\r\n \"Microsoft.App/managedEnvironments/*/read\",\r\n \"Microsoft.App/managedEnvironments/*/write\",\r\n \"Microsoft.app/register/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"Microsoft.Cache/checknameavailability/action\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Cache/register/action\",\r\n \"Microsoft.ChangeAnalysis/unregister/action\",\r\n \"Microsoft.CognitiveServices/*\",\r\n \"Microsoft.CognitiveServices/register/action\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/sshPublicKeys/delete\",\r\n \"Microsoft.Compute/virtualMachines/delete\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.DocumentDB/locations/operationsStatus/read\",\r\n \"Microsoft.DocumentDB/register/action\",\r\n \"Microsoft.EventGrid/*\",\r\n \"Microsoft.EventGrid/register/action\",\r\n \"Microsoft.EventHub/*\",\r\n \"Microsoft.EventHub/checkNameAvailability/action\",\r\n \"Microsoft.EventHub/register/action\",\r\n \"Microsoft.ExtendedLocation/customLocations/deploy/action\",\r\n \"Microsoft.fabric/*/delete\",\r\n \"Microsoft.Insights/ActionGroups/Delete\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/autoscalesettings/*\",\r\n \"Microsoft.Insights/Components/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/values/Read\",\r\n \"Microsoft.Insights/generateLiveToken/Read\",\r\n \"Microsoft.Insights/Metrics/Read\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.KeyVault/register/action\",\r\n \"Microsoft.KeyVault/vaults/delete\",\r\n \"Microsoft.ManagedIdentity/register/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.messagingconnectors/*/delete\",\r\n \"Microsoft.messagingconnectors/*/write\",\r\n \"Microsoft.MessagingConnectors/connectors/pause/action\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.Network/applicationSecurityGroups/joinNetworkSecurityRule/action\",\r\n \"Microsoft.Network/serviceEndpointPolicies/join/action\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.operationalinsights/register/action\",\r\n \"Microsoft.RecoveryServices/Vaults/delete\",\r\n \"Microsoft.ResourceHealth/AvailabilityStatuses/read\",\r\n \"Microsoft.ResourceHealth/register/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/providers/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/*\",\r\n \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"Microsoft.resources/templatespecs/*/read\",\r\n \"Microsoft.Security/assessments/read\",\r\n \"Microsoft.ServiceBus/*\",\r\n \"Microsoft.ServiceBus/checkNameAvailability/action\",\r\n \"Microsoft.ServiceBus/register/action\",\r\n \"Microsoft.Sql/register/action\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Sql/servers/administrators/write\",\r\n \"Microsoft.Sql/servers/azureADOnlyAuthentications/write\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/register/action\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.StreamAnalytics/clusters/Delete\",\r\n \"Microsoft.StreamAnalytics/clusters/Write\",\r\n \"Microsoft.streamanalytics/locations/*/read\",\r\n \"Microsoft.StreamAnalytics/locations/SampleInput/action\",\r\n \"Microsoft.StreamAnalytics/locations/TestQuery/action\",\r\n \"Microsoft.StreamAnalytics/Register/action\",\r\n \"Microsoft.StreamAnalytics/streamingjobs/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Synapse/privateLinkHubs/delete\",\r\n \"Microsoft.Synapse/workspaces/delete\",\r\n \"Microsoft.web/checknameavailability/read\",\r\n \"Microsoft.Web/hostingEnvironments/Join/Action\",\r\n \"Microsoft.web/kubeenvironments/*/action\",\r\n \"Microsoft.web/register/action\",\r\n \"Microsoft.Web/serverFarms/*\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAllValues:GuidNotEquals {8e3af657-a8ff-443c-a75c-2fe8c4bcb635, 18d7d88d-d35e-4fb5-a5c3-7773c20a72d9, f58310d9-a9f6-439a-9e8d-f62e7b41a168, b24988ac-6180-42a0-ab88-20f7382dd24c})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAllValues:GuidNotEquals {18d7d88d-d35e-4fb5-a5c3-7773c20a72d9, f58310d9-a9f6-439a-9e8d-f62e7b41a168, b24988ac-6180-42a0-ab88-20f7382dd24c}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-09T15:31:49.2793487Z\",\r\n \"updatedOn\": \"2024-10-09T15:31:49.2793487Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/337a31c1-4e14-4ef9-83ed-584bb8d2b70a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"337a31c1-4e14-4ef9-83ed-584bb8d2b70a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Foundational RP Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role for FRP customers to provision ARM resource types\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/locks/read\",\r\n \"Microsoft.Authorization/locks/write\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Cache/redis/read\",\r\n \"Microsoft.Cache/redis/write\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/tables/operationResults/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/tables/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/tables/write\",\r\n \"Microsoft.DocumentDB/databaseAccounts/write\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\",\r\n \"Microsoft.EventGrid/topics/read\",\r\n \"Microsoft.EventGrid/topics/write\",\r\n \"Microsoft.EventHub/namespaces/authorizationRules/read\",\r\n \"Microsoft.EventHub/namespaces/authorizationRules/write\",\r\n \"Microsoft.EventHub/namespaces/eventHubs/consumerGroups/read\",\r\n \"Microsoft.EventHub/namespaces/eventHubs/consumerGroups/write\",\r\n \"Microsoft.EventHub/namespaces/eventHubs/read\",\r\n \"Microsoft.EventHub/namespaces/eventHubs/write\",\r\n \"Microsoft.EventHub/namespaces/networkRuleSets/read\",\r\n \"Microsoft.EventHub/namespaces/networkRuleSets/write\",\r\n \"Microsoft.EventHub/namespaces/read\",\r\n \"Microsoft.EventHub/namespaces/write\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.Insights/metricAlerts/read\",\r\n \"Microsoft.Insights/metricAlerts/write\",\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/write\",\r\n \"Microsoft.KeyVault/vaults/read\",\r\n \"Microsoft.KeyVault/vaults/secrets/read\",\r\n \"Microsoft.KeyVault/vaults/secrets/write\",\r\n \"Microsoft.KeyVault/vaults/write\",\r\n \"Microsoft.Kusto/clusters/databases/read\",\r\n \"Microsoft.Kusto/clusters/databases/write\",\r\n \"Microsoft.Kusto/clusters/dataConnections/read\",\r\n \"Microsoft.Kusto/clusters/dataConnections/write\",\r\n \"Microsoft.Kusto/clusters/read\",\r\n \"Microsoft.Kusto/clusters/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.Network/dnsZones/A/read\",\r\n \"Microsoft.Network/dnsZones/A/write\",\r\n \"Microsoft.Network/dnsZones/CNAME/read\",\r\n \"Microsoft.Network/dnsZones/CNAME/write\",\r\n \"Microsoft.Network/dnsZones/NS/write\",\r\n \"Microsoft.Network/dnsZones/ptr/read\",\r\n \"Microsoft.Network/dnsZones/ptr/write\",\r\n \"Microsoft.Network/dnsZones/read\",\r\n \"Microsoft.Network/dnsZones/SRV/read\",\r\n \"Microsoft.Network/dnsZones/SRV/write\",\r\n \"Microsoft.Network/dnsZones/write\",\r\n \"Microsoft.Network/privateDnsZones/CNAME/read\",\r\n \"Microsoft.Network/privateDnsZones/CNAME/write\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/publicIPAddresses/write\",\r\n \"Microsoft.Network/trafficManagerProfiles/externalEndpoints/read\",\r\n \"Microsoft.Network/trafficManagerProfiles/externalEndpoints/write\",\r\n \"Microsoft.Network/trafficManagerProfiles/read\",\r\n \"Microsoft.Network/trafficManagerProfiles/write\",\r\n \"Microsoft.ProviderHub/providerRegistrations/customRollouts/read\",\r\n \"Microsoft.ProviderHub/providerRegistrations/customRollouts/write\",\r\n \"Microsoft.ProviderHub/providerRegistrations/resourceTypeRegistrations/read\",\r\n \"Microsoft.ProviderHub/providerRegistrations/resourceTypeRegistrations/write\",\r\n \"Microsoft.Resources/deployments/operationStatuses/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.SQL/servers/databases/read\",\r\n \"Microsoft.SQL/servers/databases/write\",\r\n \"Microsoft.SQL/servers/elasticPools/read\",\r\n \"Microsoft.SQL/servers/elasticPools/write\",\r\n \"Microsoft.SQL/servers/read\",\r\n \"Microsoft.SQL/servers/write\",\r\n \"Microsoft.Storage/checkNameAvailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/write\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/read\",\r\n \"Microsoft.Storage/storageAccounts/managementPolicies/write\",\r\n \"Microsoft.Storage/storageAccounts/privateEndpointConnections/read\",\r\n \"Microsoft.Storage/storageAccounts/providers/roleAssignments/read\",\r\n \"Microsoft.Storage/storageAccounts/providers/roleAssignments/write\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/write\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/write\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/read\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/tables/write\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/read\",\r\n \"Microsoft.Storage/storageAccounts/tableServices/write\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-09T15:31:49.280349Z\",\r\n \"updatedOn\": \"2025-01-17T10:52:27.2661182Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c840cbbc-8508-4228-b700-ec6522a74314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c840cbbc-8508-4228-b700-ec6522a74314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Microsoft.Windows365.CloudPcDelegatedMsis Writer User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Built in role to perform Write operations on CloudPcDelegatedMsis resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Windows365/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-15T15:28:55.9466167Z\",\r\n \"updatedOn\": \"2024-10-15T15:28:55.9466167Z\",\r\n \"createdBy\": \"dipakmahajan\",\r\n \"updatedBy\": \"dipakmahajan\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/21bffb94-04c0-4ed0-b676-68bb926e832b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"21bffb94-04c0-4ed0-b676-68bb926e832b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Landing Zone Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.Sovereign Landing Zone Account Owner allowing to review and modify Landing Zone Account, Landing Zone Configurations, as well as reading and adding Landing Zone Registrations. Also enables read-access to policies and management groups for enabling the full user experience of the Sovereign Services RP in the Azure Portal (as otherwise some elements might not be accessible to end users).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sovereign/landingZoneAccounts/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-15T15:28:55.9476171Z\",\r\n \"updatedOn\": \"2024-10-15T15:28:55.9476171Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bf2b6809-e9a5-4aea-a6e1-40a9dc8c43a7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bf2b6809-e9a5-4aea-a6e1-40a9dc8c43a7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Landing Zone Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.Sovereign Landing Zone Account Reader allowing to read Landing Zone Account, Landing Zone Configurations and Landing Zone Registrations. Also enables read-access to policies and management groups for enabling the full user experience of the Sovereign Services RP in the Azure Portal (as otherwise some elements might not be accessible to end users).\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Sovereign/landingZoneAccounts/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-15T15:28:55.9476171Z\",\r\n \"updatedOn\": \"2024-10-15T15:28:55.9476171Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2718b1f7-eb07-424e-8868-0137541392a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2718b1f7-eb07-424e-8868-0137541392a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Defender CSPM Storage Data Scanner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read blobs and files. This role is used by the data scanner of Dfender CSPM.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/shares/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"updatedOn\": \"2024-11-07T16:11:40.6980357Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0b6ca2e8-2cdc-4bd6-b896-aa3d8c21fc35\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b6ca2e8-2cdc-4bd6-b896-aa3d8c21fc35\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Batch Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view all resources including pools and jobs in the Batch account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Batch/batchAccounts/read\",\r\n \"Microsoft.Batch/batchAccounts/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Batch/batchAccounts/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"updatedOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/11076f67-66f6-4be0-8f6b-f0609fd05cc9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"11076f67-66f6-4be0-8f6b-f0609fd05cc9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Batch Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all Batch resources, including Batch accounts, pools and jobs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Batch/batchAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Batch/batchAccounts/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"updatedOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/29fe4964-1e60-436b-bd3a-77fd4c178b3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"29fe4964-1e60-436b-bd3a-77fd4c178b3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Batch Job Submitter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit and manage jobs in the Batch account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Batch/batchAccounts/applications/read\",\r\n \"Microsoft.Batch/batchAccounts/applications/versions/read\",\r\n \"Microsoft.Batch/batchAccounts/pools/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Batch/batchAccounts/jobSchedules/*\",\r\n \"Microsoft.Batch/batchAccounts/jobs/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"updatedOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/48e5e92e-a480-4e71-aa9c-2778f4c13781\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48e5e92e-a480-4e71-aa9c-2778f4c13781\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Batch Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants permissions to manage Batch pools and jobs but not to modify accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Batch/batchAccounts/read\",\r\n \"Microsoft.Batch/batchAccounts/applications/*\",\r\n \"Microsoft.Batch/batchAccounts/certificates/*\",\r\n \"Microsoft.Batch/batchAccounts/certificateOperationResults/*\",\r\n \"Microsoft.Batch/batchAccounts/pools/*\",\r\n \"Microsoft.Batch/batchAccounts/poolOperationResults/*\",\r\n \"Microsoft.Batch/locations/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Batch/batchAccounts/jobSchedules/*\",\r\n \"Microsoft.Batch/batchAccounts/jobs/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"updatedOn\": \"2024-10-17T15:43:50.3319289Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6aaa78f1-f7de-44ca-8722-c64a23943cae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6aaa78f1-f7de-44ca-8722-c64a23943cae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Managed Grafana Workspace Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Azure Managed Grafana resources, without providing access to the workspaces themselves.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Dashboard/grafana/write\",\r\n \"Microsoft.Dashboard/grafana/delete\",\r\n \"Microsoft.Dashboard/grafana/PrivateEndpointConnectionsApproval/action\",\r\n \"Microsoft.Dashboard/grafana/managedPrivateEndpoints/action\",\r\n \"Microsoft.Dashboard/locations/operationStatuses/write\",\r\n \"Microsoft.Dashboard/grafana/privateEndpointConnectionProxies/validate/action\",\r\n \"Microsoft.Dashboard/grafana/privateEndpointConnectionProxies/write\",\r\n \"Microsoft.Dashboard/grafana/privateEndpointConnectionProxies/delete\",\r\n \"Microsoft.Dashboard/grafana/privateEndpointConnections/write\",\r\n \"Microsoft.Dashboard/grafana/privateEndpointConnections/delete\",\r\n \"Microsoft.Dashboard/grafana/managedPrivateEndpoints/write\",\r\n \"Microsoft.Dashboard/grafana/managedPrivateEndpoints/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/deployments/delete\",\r\n \"Microsoft.Resources/deployments/cancel/action\",\r\n \"Microsoft.Resources/deployments/validate/action\",\r\n \"Microsoft.Resources/deployments/whatIf/action\",\r\n \"Microsoft.Resources/deployments/exportTemplate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/operationstatuses/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-17T19:17:56.6677871Z\",\r\n \"updatedOn\": \"2024-10-17T19:17:56.6677871Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5c2d7e57-b7c2-4d8a-be4f-82afa42c6e95\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5c2d7e57-b7c2-4d8a-be4f-82afa42c6e95\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Service Group Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role Definition for reader of a Service Group\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/serviceGroups/read\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-18T18:43:56.1898722Z\",\r\n \"updatedOn\": \"2024-10-18T18:43:56.1898722Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/de754d53-652d-4c75-a67f-1e48d8b49c97\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de754d53-652d-4c75-a67f-1e48d8b49c97\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps ConnectedEnvironments Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read access to Container Apps ConnectedEnvironments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.App/connectedEnvironments/read\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-21T15:04:46.4162795Z\",\r\n \"updatedOn\": \"2024-10-21T15:04:46.4162795Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d5adeb5b-107f-4aca-99ea-4e3f4fc008d5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d5adeb5b-107f-4aca-99ea-4e3f4fc008d5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Data Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows to call data plane APIs, but not any control plane APIs for Microsoft Cognitive Services. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-21T15:04:45.9033454Z\",\r\n \"updatedOn\": \"2024-10-21T15:04:45.9033454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/19c28022-e58e-450d-a464-0b2a53034789\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19c28022-e58e-450d-a464-0b2a53034789\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager RBAC Cluster Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read-only access to most Kubernetes cluster-scoped resources in the fleet-managed hub cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/fleets/read\",\r\n \"Microsoft.ContainerService/fleets/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/fleets/apiextensions.k8s.io/customresourcedefinitions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/read\",\r\n \"Microsoft.ContainerService/fleets/configmaps/read\",\r\n \"Microsoft.ContainerService/fleets/endpoints/read\",\r\n \"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/fleets/events/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/limitranges/read\",\r\n \"Microsoft.ContainerService/fleets/namespaces/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/nodes/read\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumes/read\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\r\n \"Microsoft.ContainerService/fleets/resourcequotas/read\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/read\",\r\n \"Microsoft.ContainerService/fleets/services/read\",\r\n \"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/memberclusters/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceplacements/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourcebindings/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourcesnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterschedulingpolicysnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverrides/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverridesnapshots/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-22T15:14:09.1287923Z\",\r\n \"updatedOn\": \"2024-10-22T15:14:09.1287923Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bd80684d-2f5f-4130-892a-0955546282de\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bd80684d-2f5f-4130-892a-0955546282de\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Fleet Manager RBAC Cluster Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants read/write access to most Kubernetes cluster-scoped resources in the fleet-managed hub cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/fleets/read\",\r\n \"Microsoft.ContainerService/fleets/listCredentials/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/fleets/apiextensions.k8s.io/customresourcedefinitions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/apps/daemonsets/write\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/apps/deployments/write\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\r\n \"Microsoft.ContainerService/fleets/apps/statefulsets/write\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\r\n \"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/write\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\r\n \"Microsoft.ContainerService/fleets/batch/cronjobs/write\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/read\",\r\n \"Microsoft.ContainerService/fleets/batch/jobs/write\",\r\n \"Microsoft.ContainerService/fleets/configmaps/read\",\r\n \"Microsoft.ContainerService/fleets/configmaps/write\",\r\n \"Microsoft.ContainerService/fleets/endpoints/read\",\r\n \"Microsoft.ContainerService/fleets/endpoints/write\",\r\n \"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\r\n \"Microsoft.ContainerService/fleets/events/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/daemonsets/write\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/deployments/write\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/ingresses/write\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/extensions/networkpolicies/write\",\r\n \"Microsoft.ContainerService/fleets/limitranges/read\",\r\n \"Microsoft.ContainerService/fleets/namespaces/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/write\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\r\n \"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/write\",\r\n \"Microsoft.ContainerService/fleets/nodes/read\",\r\n \"Microsoft.ContainerService/fleets/nodes/write\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumes/read\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumes/write\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\r\n \"Microsoft.ContainerService/fleets/persistentvolumeclaims/write\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\r\n \"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/write\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\r\n \"Microsoft.ContainerService/fleets/replicationcontrollers/write\",\r\n \"Microsoft.ContainerService/fleets/resourcequotas/read\",\r\n \"Microsoft.ContainerService/fleets/secrets/read\",\r\n \"Microsoft.ContainerService/fleets/secrets/write\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/read\",\r\n \"Microsoft.ContainerService/fleets/serviceaccounts/write\",\r\n \"Microsoft.ContainerService/fleets/services/read\",\r\n \"Microsoft.ContainerService/fleets/services/write\",\r\n \"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/memberclusters/read\",\r\n \"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/memberclusters/write\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceplacements/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceplacements/write\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourcebindings/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourcesnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterschedulingpolicysnapshots/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverrides/read\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverrides/write\",\r\n \"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverridesnapshots/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-22T15:14:09.1287923Z\",\r\n \"updatedOn\": \"2024-10-22T15:14:09.1287923Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1dc4cd5a-de51-4ee4-bc8e-b40e9c17e320\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1dc4cd5a-de51-4ee4-bc8e-b40e9c17e320\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Chaos Studio Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can run and see details for experiments but cannot create experiments or manage targets and capabilities.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Chaos/*/read\",\r\n \"Microsoft.Chaos/experiments/start/action\",\r\n \"Microsoft.Chaos/experiments/cancel/action\",\r\n \"Microsoft.Chaos/experiments/executions/getExecutionDetails/action\",\r\n \"Microsoft.Chaos/locations/operationResults/read\",\r\n \"Microsoft.Chaos/locations/operationStatuses/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-23T15:16:12.9511529Z\",\r\n \"updatedOn\": \"2025-01-09T19:24:51.6852764Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1a40e87e-6645-48e0-b27a-0b115d849a20\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1a40e87e-6645-48e0-b27a-0b115d849a20\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Chaos Studio Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view targets, capabilities, experiments, and experiment details.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Chaos/*/read\",\r\n \"Microsoft.Chaos/experiments/executions/getExecutionDetails/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-23T15:16:12.9956373Z\",\r\n \"updatedOn\": \"2025-01-09T19:24:51.6852764Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/29e2da8a-229c-4157-8ae8-cc72fc506b74\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"29e2da8a-229c-4157-8ae8-cc72fc506b74\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Chaos Studio Experiment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can create, run, and see details for experiments, onboard targets, and manage capabilities.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Chaos/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-23T15:16:12.9946346Z\",\r\n \"updatedOn\": \"2025-01-09T19:24:51.6842763Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7c2e40b7-25eb-482a-82cb-78ba06cb46d5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7c2e40b7-25eb-482a-82cb-78ba06cb46d5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Apps ConnectedEnvironments Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full management of Container Apps ConnectedEnvironments, including creation, deletion, and updates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.App/connectedEnvironments/*\",\r\n \"Microsoft.App/connectedEnvironments/*/read\",\r\n \"Microsoft.App/connectedEnvironments/*/write\",\r\n \"Microsoft.App/connectedEnvironments/*/delete\",\r\n \"Microsoft.App/connectedEnvironments/*/action\",\r\n \"Microsoft.App/connectedEnvironments/daprComponents/listSecrets/action\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-24T15:25:05.8876197Z\",\r\n \"updatedOn\": \"2024-10-24T15:25:05.8876197Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6f4fe6fc-f04f-4d97-8528-8bc18c848dca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f4fe6fc-f04f-4d97-8528-8bc18c848dca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Messaging Connectors Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Messaging Connectors resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MessagingConnectors/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MessagingConnectors/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-24T15:25:05.8876197Z\",\r\n \"updatedOn\": \"2024-10-24T15:25:05.8876197Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ff478a4e-8633-416e-91bc-ec33ce7c9516\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ff478a4e-8633-416e-91bc-ec33ce7c9516\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Contributor and Data Access Configuration Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permissions to create, list, and update container registries and registry configuration properties. Provides permissions to configure data access such as admin user credentials, scope maps, and tokens, which can be used to read, write or delete repositories and images. Does not provide direct permissions to read, list, or write registry contents including repositories and images. Does not provide permissions to modify data plane content such as imports, Artifact Cache or Sync, and Transfer Pipelines. Does not provide permissions for managing Tasks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerRegistry/registries/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/read\",\r\n \"Microsoft.ContainerRegistry/registries/write\",\r\n \"Microsoft.ContainerRegistry/registries/delete\",\r\n \"Microsoft.ContainerRegistry/registries/listCredentials/action\",\r\n \"Microsoft.ContainerRegistry/registries/regenerateCredential/action\",\r\n \"Microsoft.ContainerRegistry/registries/generateCredentials/action\",\r\n \"Microsoft.ContainerRegistry/registries/replications/read\",\r\n \"Microsoft.ContainerRegistry/registries/replications/write\",\r\n \"Microsoft.ContainerRegistry/registries/replications/delete\",\r\n \"Microsoft.ContainerRegistry/registries/replications/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnectionsApproval/action\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/read\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/write\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/delete\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/tokens/read\",\r\n \"Microsoft.ContainerRegistry/registries/tokens/write\",\r\n \"Microsoft.ContainerRegistry/registries/tokens/delete\",\r\n \"Microsoft.ContainerRegistry/registries/tokens/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/scopeMaps/read\",\r\n \"Microsoft.ContainerRegistry/registries/scopeMaps/write\",\r\n \"Microsoft.ContainerRegistry/registries/scopeMaps/delete\",\r\n \"Microsoft.ContainerRegistry/registries/scopeMaps/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ContainerRegistry/registries/connectedRegistries/read\",\r\n \"Microsoft.ContainerRegistry/registries/connectedRegistries/write\",\r\n \"Microsoft.ContainerRegistry/registries/connectedRegistries/delete\",\r\n \"Microsoft.ContainerRegistry/registries/connectedRegistries/deactivate/action\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/read\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/write\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/delete\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/getCallbackConfig/action\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/ping/action\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/listEvents/action\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/operationStatuses/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\",\r\n \"Microsoft.ContainerRegistry/locations/operationResults/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/privateEndpoints/privateLinkServiceProxies/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-24T22:47:56.9675921Z\",\r\n \"updatedOn\": \"2024-10-24T22:47:56.9675921Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/3bc748fc-213d-45c1-8d91-9da5725539b9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3bc748fc-213d-45c1-8d91-9da5725539b9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data SAS User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows the usage of SAS tokens for authentication.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/useSasAuth/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-28T15:14:04.6453674Z\",\r\n \"updatedOn\": \"2024-10-28T15:14:04.6453674Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/7fd69092-c9bc-4b59-9e2e-bca63317e147\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fd69092-c9bc-4b59-9e2e-bca63317e147\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Health Safeguards Data User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows processing of health data in all available Health Safeguards\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalAnchoring/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalCodesValidation/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalConflictDetection/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalEvidenceVerification/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalProvenance/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalSemanticValidation/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/DetectHallucinationsAndOmissions/Process/Action\",\r\n \"Microsoft.HealthBot/healthBots/HealthSafeguards/HealthAdaptedFiltering/Process/Action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-28T15:14:04.6443673Z\",\r\n \"updatedOn\": \"2024-12-10T16:13:44.7172543Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/566f0da3-e2a5-4393-9089-763f8bab8fb6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"566f0da3-e2a5-4393-9089-763f8bab8fb6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Configuration Reader and Data Access Configuration Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permissions to list container registries and registry configuration properties. Provides permissions to list data access configuration such as admin user credentials, scope maps, and tokens, which can be used to read, write or delete repositories and images. Does not provide direct permissions to read, list, or write registry contents including repositories and images. Does not provide permissions to modify data plane content such as imports, Artifact Cache or Sync, and Transfer Pipelines. Does not provide permissions for managing Tasks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/read\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/read\",\r\n \"Microsoft.ContainerRegistry/registries/privateEndpointConnections/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/listCredentials/action\",\r\n \"Microsoft.ContainerRegistry/registries/tokens/read\",\r\n \"Microsoft.ContainerRegistry/registries/tokens/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/scopeMaps/read\",\r\n \"Microsoft.ContainerRegistry/registries/scopeMaps/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/read\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/getCallbackConfig/action\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/listEvents/action\",\r\n \"Microsoft.ContainerRegistry/registries/webhooks/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/replications/read\",\r\n \"Microsoft.ContainerRegistry/registries/replications/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/connectedRegistries/read\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"Microsoft.Insights/AlertRules/Write\",\r\n \"Microsoft.Insights/AlertRules/Delete\",\r\n \"Microsoft.Insights/AlertRules/Read\",\r\n \"Microsoft.Insights/AlertRules/Activated/Action\",\r\n \"Microsoft.Insights/AlertRules/Resolved/Action\",\r\n \"Microsoft.Insights/AlertRules/Throttled/Action\",\r\n \"Microsoft.Insights/AlertRules/Incidents/Read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-10-31T23:06:21.1173941Z\",\r\n \"updatedOn\": \"2024-10-31T23:06:21.1173941Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/69b07be0-09bf-439a-b9a6-e73de851bd59\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"69b07be0-09bf-439a-b9a6-e73de851bd59\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Transfer Pipeline Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides the ability to transfer, import, and export artifacts through configuring registry transfer pipelines that involve intermediary storage accounts and key vaults. Does not provide permissions to push or pull images. Does not provide permissions to create, manage, or list storage accounts or key vaults. Does not provide permissions to perform role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/exportPipelines/read\",\r\n \"Microsoft.ContainerRegistry/registries/exportPipelines/write\",\r\n \"Microsoft.ContainerRegistry/registries/exportPipelines/delete\",\r\n \"Microsoft.ContainerRegistry/registries/importPipelines/read\",\r\n \"Microsoft.ContainerRegistry/registries/importPipelines/write\",\r\n \"Microsoft.ContainerRegistry/registries/importPipelines/delete\",\r\n \"Microsoft.ContainerRegistry/registries/pipelineRuns/read\",\r\n \"Microsoft.ContainerRegistry/registries/pipelineRuns/write\",\r\n \"Microsoft.ContainerRegistry/registries/pipelineRuns/delete\",\r\n \"Microsoft.ContainerRegistry/registries/pipelineRuns/operationStatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-07T16:11:39.6645356Z\",\r\n \"updatedOn\": \"2024-11-07T16:11:39.6645356Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/bf94e731-3a51-4a7c-8c54-a1ab9971dfc1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bf94e731-3a51-4a7c-8c54-a1ab9971dfc1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization App Attach Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide permission to manage app attach resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DesktopVirtualization/hostpools/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.DesktopVirtualization/appattachpackages/read\",\r\n \"Microsoft.DesktopVirtualization/appattachpackages/write\",\r\n \"Microsoft.DesktopVirtualization/appattachpackages/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-08T16:19:16.0184548Z\",\r\n \"updatedOn\": \"2024-11-08T16:19:16.0184548Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/97dfb3ce-e936-462c-9425-9cdb67e66d45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"97dfb3ce-e936-462c-9425-9cdb67e66d45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Service Environment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage App Service Environments but not the App Service Plans or Websites that it hosts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Web/hostingEnvironments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-12T16:08:18.3404035Z\",\r\n \"updatedOn\": \"2024-11-12T16:08:18.3404035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8ea85a25-eb16-4e29-ab4d-6f2a26c711a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8ea85a25-eb16-4e29-ab4d-6f2a26c711a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Agent Subscription Level Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants Microsoft Defender for Cloud subscription level permissions needed to activate Containers plan\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/read\",\r\n \"Microsoft.OperationalInsights/workspaces/listKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedkeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedkeys/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-15T10:04:56.4175374Z\",\r\n \"updatedOn\": \"2024-12-13T11:27:18.3550673Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ada52afe-776a-4b4d-a8f2-55670d3d8178\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ada52afe-776a-4b4d-a8f2-55670d3d8178\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Quantum Workspace Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, and modify jobs and other Workspace data. This role is in preview and subject to change.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Quantum/Workspaces/read\",\r\n \"Microsoft.Quantum/locations/offerings/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Quantum/Workspaces/jobs/read\",\r\n \"Microsoft.Quantum/Workspaces/jobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-19T16:16:06.9625778Z\",\r\n \"updatedOn\": \"2024-11-19T16:16:06.9625778Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c1410b24-3e69-4857-8f86-4d0a2e603250\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c1410b24-3e69-4857-8f86-4d0a2e603250\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Communication and Email Service Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, read, modify, and delete Communications and Email Service resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Communication/CheckNameAvailability/action\",\r\n \"Microsoft.Communication/Locations/OperationStatuses/read\",\r\n \"Microsoft.Communication/Locations/OperationStatuses/write\",\r\n \"Microsoft.Communication/Operations/read\",\r\n \"Microsoft.Communication/CommunicationServices/read\",\r\n \"Microsoft.Communication/CommunicationServices/write\",\r\n \"Microsoft.Communication/CommunicationServices/delete\",\r\n \"Microsoft.Communication/CommunicationServices/ListKeys/action\",\r\n \"Microsoft.Communication/CommunicationServices/RegenerateKey/action\",\r\n \"Microsoft.Communication/CommunicationServices/LinkNotificationHub/action\",\r\n \"Microsoft.Communication/CommunicationServices/EventGridFilters/read\",\r\n \"Microsoft.Communication/CommunicationServices/EventGridFilters/write\",\r\n \"Microsoft.Communication/CommunicationServices/EventGridFilters/delete\",\r\n \"Microsoft.Communication/EmailServices/read\",\r\n \"Microsoft.Communication/EmailServices/write\",\r\n \"Microsoft.Communication/EmailServices/delete\",\r\n \"Microsoft.Communication/EmailServices/Domains/read\",\r\n \"Microsoft.Communication/EmailServices/Domains/write\",\r\n \"Microsoft.Communication/EmailServices/Domains/delete\",\r\n \"Microsoft.Communication/EmailServices/Domains/SenderUsernames/read\",\r\n \"Microsoft.Communication/EmailServices/Domains/SenderUsernames/write\",\r\n \"Microsoft.Communication/EmailServices/Domains/SenderUsernames/delete\",\r\n \"Microsoft.Communication/EmailServices/Domains/SuppressionLists/read\",\r\n \"Microsoft.Communication/EmailServices/Domains/SuppressionLists/write\",\r\n \"Microsoft.Communication/EmailServices/Domains/SuppressionLists/delete\",\r\n \"Microsoft.Communication/EmailServices/Domains/SuppressionLists/SuppressionListAddresses/read\",\r\n \"Microsoft.Communication/EmailServices/Domains/SuppressionLists/SuppressionListAddresses/write\",\r\n \"Microsoft.Communication/EmailServices/Domains/SuppressionLists/SuppressionListAddresses/delete\",\r\n \"Microsoft.Communication/EmailServices/Domains/InitiateVerification/action\",\r\n \"Microsoft.Communication/EmailServices/Domains/CancelVerification/action\",\r\n \"Microsoft.Communication/EmailServices/Domains/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-11-20T16:26:51.8504583Z\",\r\n \"updatedOn\": \"2024-11-20T16:26:51.8504583Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/09976791-48a7-449e-bb21-39d1a415f350\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"09976791-48a7-449e-bb21-39d1a415f350\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Oracle.Database Autonomous Database Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants full access to manage all Autonomous Database resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Oracle.Database/autonomousDatabases/*/read\",\r\n \"Oracle.Database/autonomousDatabases/*/write\",\r\n \"Oracle.Database/autonomousDatabases/*/delete\",\r\n \"Oracle.Database/autonomousDatabases/*/action\",\r\n \"Oracle.Database/Locations/*/read\",\r\n \"Oracle.Database/Locations/*/write\",\r\n \"Oracle.Database/Operations/read\",\r\n \"Oracle.Database/oracleSubscriptions/*/read\",\r\n \"Oracle.Database/oracleSubscriptions/*/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/locations/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-12-04T16:02:04.8857247Z\",\r\n \"updatedOn\": \"2024-12-04T16:02:04.8857247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/59c05558-2358-462d-ba19-afbd7118936d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"59c05558-2358-462d-ba19-afbd7118936d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"MySQL Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Manage access to Azure MySQL flexible server by adding or removing role assignments for the MySQL Access Administrator, MySQL Control Plane, MySQL User Data Reader, or MySQL User Data Writer. Includes an ABAC condition to constrain role assignments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\",\r\n \"Microsoft.Authorization/roleAssignments/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{b5207fd742d340fa8cc6a7e189aef39e, abed7cd4f35843849d17def9303b3b53, 8894c184eeb645cc868a1be782055af3, 2420884177f2463aab3df8343716e8af})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{b5207fd742d340fa8cc6a7e189aef39e, abed7cd4f35843849d17def9303b3b53, 8894c184eeb645cc868a1be782055af3, 2420884177f2463aab3df8343716e8af}))\"\r\n }\r\n ],\r\n \"createdOn\": \"2024-12-12T09:14:53.8150942Z\",\r\n \"updatedOn\": \"2024-12-17T16:19:14.4189988Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/24208841-77f2-463a-ab3d-f8343716e8af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"24208841-77f2-463a-ab3d-f8343716e8af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure AI Safety Evaluator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This role can perform all actions under workspace evaluations and simulations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.MachineLearningServices/workspaces/evaluations/*\",\r\n \"Microsoft.MachineLearningServices/workspaces/simulations/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2024-12-18T16:29:45.1650072Z\",\r\n \"updatedOn\": \"2024-12-18T16:29:45.1650072Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/11102f94-c441-49e6-a78b-ef80e0188abc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"11102f94-c441-49e6-a78b-ef80e0188abc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Container Registry Tasks Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides permissions to configure, read, list, trigger, or cancel Container Registry Tasks, Task Runs, Task Logs, Quick Runs, Quick Builds, and Task Agent Pools. Permissions granted for Tasks management can be used for full registry data plane permissions including reading/writing/deleting container images in registries. Permissions granted for Tasks management can also be used to run customer authored build directives and run scripts to build software artifacts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/agentpools/read\",\r\n \"Microsoft.ContainerRegistry/registries/agentpools/write\",\r\n \"Microsoft.ContainerRegistry/registries/agentpools/delete\",\r\n \"Microsoft.ContainerRegistry/registries/agentpools/listQueueStatus/action\",\r\n \"Microsoft.ContainerRegistry/registries/agentpools/operationResults/status/read\",\r\n \"Microsoft.ContainerRegistry/registries/agentpools/operationStatuses/read\",\r\n \"Microsoft.ContainerRegistry/registries/tasks/read\",\r\n \"Microsoft.ContainerRegistry/registries/tasks/write\",\r\n \"Microsoft.ContainerRegistry/registries/tasks/delete\",\r\n \"Microsoft.ContainerRegistry/registries/tasks/listDetails/action\",\r\n \"Microsoft.ContainerRegistry/registries/scheduleRun/action\",\r\n \"Microsoft.ContainerRegistry/registries/listBuildSourceUploadUrl/action\",\r\n \"Microsoft.ContainerRegistry/registries/runs/read\",\r\n \"Microsoft.ContainerRegistry/registries/runs/write\",\r\n \"Microsoft.ContainerRegistry/registries/runs/listLogSasUrl/action\",\r\n \"Microsoft.ContainerRegistry/registries/runs/cancel/action\",\r\n \"Microsoft.ContainerRegistry/registries/taskruns/read\",\r\n \"Microsoft.ContainerRegistry/registries/taskruns/write\",\r\n \"Microsoft.ContainerRegistry/registries/taskruns/delete\",\r\n \"Microsoft.ContainerRegistry/registries/taskruns/listDetails/action\",\r\n \"Microsoft.ContainerRegistry/registries/taskruns/operationStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.ContainerRegistry/registries/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-13T16:06:06.827769Z\",\r\n \"updatedOn\": \"2025-01-13T16:06:06.827769Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fb382eab-e894-4461-af04-94435c366c3f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb382eab-e894-4461-af04-94435c366c3f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Backup Snapshot Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provide permissions to backup identity to manage RPC snapshots\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Compute/restorePointCollections/read\",\r\n \"Microsoft.Compute/restorePointCollections/write\",\r\n \"Microsoft.Compute/restorePointCollections/restorePoints/write\",\r\n \"Microsoft.Compute/restorePointCollections/restorePoints/read\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/beginGetAccess/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-13T16:06:06.827769Z\",\r\n \"updatedOn\": \"2025-01-13T16:06:06.827769Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/afc680e2-a938-412d-b213-9a49efa7fb83\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"afc680e2-a938-412d-b213-9a49efa7fb83\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AVS on Fleet VIS Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Do not remove this role from your resource because it is critical to enable your AVS private cloud to operate. If the role is removed, it will cause your AVS private cloud control plane to no longer operate correctly. The role is used to enable the AVS private cloud control plane to inject address prefix changes of the private clouds attached virtual network to SDN and support peering sync feature. This role is not intended for use cases outside of assignment to the associated AVS identity in your entra-id tenant.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/write\",\r\n \"Microsoft.Network/virtualNetworks/peer/action\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/write\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/routeTables/join/action\",\r\n \"Microsoft.Network/serviceEndpointPolicies/join/action\",\r\n \"Microsoft.Network/natGateways/join/action\",\r\n \"Microsoft.Network/networkIntentPolicies/join/action\",\r\n \"Microsoft.Network/ddosProtectionPlans/join/action\",\r\n \"Microsoft.Network/networkManagers/ipamPools/associateResourcesToPool/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n },\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": [],\r\n \"conditionVersion\": \"2.0\",\r\n \"condition\": \"(!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR @Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{49fc33c1886f4b21a00e1d9993234734}\"\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-14T16:18:32.7067643Z\",\r\n \"updatedOn\": \"2025-01-14T16:18:32.7067643Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/49fc33c1-886f-4b21-a00e-1d9993234734\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49fc33c1-886f-4b21-a00e-1d9993234734\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Edge Management Copilot User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables users access to Edge Management Copilot.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EdgeManagement/locations/chat/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-24T02:55:55.2627422Z\",\r\n \"updatedOn\": \"2025-01-24T02:55:55.2627422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/53e48117-a530-4075-bcbe-d91913e3bdb8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"53e48117-a530-4075-bcbe-d91913e3bdb8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Durable Task Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read all Durable Task Scheduler data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DurableTask/orchestrations/read\",\r\n \"Microsoft.DurableTask/orchestrations/metadata/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-24T21:41:35.9328305Z\",\r\n \"updatedOn\": \"2025-01-24T21:41:35.9328305Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d6a5505f-6ebb-45a4-896e-ac8274cfc0ac\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d6a5505f-6ebb-45a4-896e-ac8274cfc0ac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack HCI Edge Machine Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Microsoft.AzureStackHCI Edge Machine Contributor Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStackHCI/EdgeMachines/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-31T17:57:03.7837888Z\",\r\n \"updatedOn\": \"2025-01-31T17:57:03.7837888Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1a6f9009-515c-4455-b170-143e4c9ce229\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1a6f9009-515c-4455-b170-143e4c9ce229\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Online Experimentation Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows full access to Online Experimentation data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.OnlineExperimentation/workspaces/read\",\r\n \"Microsoft.OnlineExperimentation/workspaces/write\",\r\n \"Microsoft.OnlineExperimentation/workspaces/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-31T18:42:14.0945842Z\",\r\n \"updatedOn\": \"2025-01-31T18:42:14.0945842Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/53747cdd-e97c-477a-948c-b587d0e514b2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"53747cdd-e97c-477a-948c-b587d0e514b2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Online Experimentation Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to Online Experimentation data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.OnlineExperimentation/workspaces/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2025-01-31T18:42:14.0945842Z\",\r\n \"updatedOn\": \"2025-01-31T18:42:14.0945842Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/1363e94d-546f-4fe9-8434-b0eefb292d59\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1363e94d-546f-4fe9-8434-b0eefb292d59\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1.0/directoryObjects/microsoft.graph.getByIds", + "EncodedRequestUri": "L3YxLjAvZGlyZWN0b3J5T2JqZWN0cy9taWNyb3NvZnQuZ3JhcGguZ2V0QnlJZHM=", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d0a2e7e-d047-4589-894d-0ace083fcb4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.3624.51421", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Commands.Common.MSGraph.Version1.0.MicrosoftGraphClient/1.3.104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "5150" + ] + }, + "RequestBody": "{\r\n \"ids\": [\r\n \"f76e2cfd-0948-4cd7-bc92-937a6fd5f280\",\r\n \"65c24161-dc3c-4cc4-bf70-b9b13e8d6ec6\",\r\n \"8d9606ff-585b-421a-afee-188d2497c7c7\",\r\n \"e393dddc-7d32-4c92-8619-23578f8de85d\",\r\n \"469e05b3-323f-4d8b-ad7c-325f402cc8db\",\r\n \"ca51e4e8-ad32-4516-a35b-7dccde700f0b\",\r\n \"b4ff8c37-5a63-4287-8748-1a3778d65c91\",\r\n \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"6c8fb59d-dd39-408b-beee-847047eff143\",\r\n \"2266bac4-0256-4765-8abe-772627da6e27\",\r\n \"f357b4f8-09af-4f35-a7d6-706d3e7dc5ca\",\r\n \"3e1e4fbc-9e47-4dc0-a2df-b5649c777328\",\r\n \"0a6d9c2c-fe57-44bd-9d52-6eb585b25e93\",\r\n \"96def109-c4fe-4d53-8b93-cc257c9716d1\",\r\n \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"0f3dde26-1e34-4a3a-949c-7ae6d03643c0\",\r\n \"4a3ec5fb-ba6f-4a7f-98e2-2918cd728500\",\r\n \"39a51fdc-6193-45d2-a938-ddcb56a3592d\",\r\n \"60becb53-9d5b-4f5c-874c-135b162ce7d4\",\r\n \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"c4b8c646-f71c-488a-b5ec-0527e8724f67\",\r\n \"c0ef1cae-e29d-4258-9d27-474d7766e5ea\",\r\n \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"14630511-63a1-4d32-a204-a8002c139ad2\",\r\n \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"f819bf1c-9cf9-42c3-bd59-82c507565fa1\",\r\n \"a4fcf44f-432a-4e14-8b0c-bcc57c65222f\",\r\n \"ca181d1b-4362-4ed5-9f2b-f50120fa0eae\",\r\n \"ce74a389-b5e8-4f16-89c7-787031ddd903\",\r\n \"18dc26db-fe4f-426e-9f3f-b3e52cc010bf\",\r\n \"1357843f-2c6b-4c6e-aa31-4748cbd2dd77\",\r\n \"aef545e3-101e-484b-afe4-3da4c1a62f67\",\r\n \"06b76a7c-0baf-47e8-904e-091bafaafe99\",\r\n \"6a4961a4-ca91-4ee9-977e-73c4c3ddf346\",\r\n \"26974eba-5400-469d-b087-f8fc2a789e3d\",\r\n \"772c6450-0edb-40e1-adc1-352fa7e5d1f3\",\r\n \"54e5295c-bab1-42eb-9811-569df9e55e73\",\r\n \"91852ff0-b73e-4d9f-9bf0-819fc3b1a387\",\r\n \"3aed027b-3fee-4c92-a814-32d411cbd3a0\",\r\n \"df454a10-e7d6-4a6e-88f8-f55a34522dbf\",\r\n \"09962365-f4fa-41a8-b9c9-8458c40c5a59\",\r\n \"ccad4beb-b13f-499e-a2ea-7b04f687d88f\",\r\n \"7575ec5b-781c-4019-961d-27f551da3851\",\r\n \"5c445532-1499-448e-970c-bda7db1e1f15\",\r\n \"612cdbb4-6edd-4998-aae9-129cdba53a9a\",\r\n \"a1cd43c2-c713-4af4-b885-50540e2c595f\",\r\n \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"2ac3f52f-f3ad-40a4-9b2d-aa24e4c7bbba\",\r\n \"56d08bc2-cc29-4d23-9d23-fd396b807b02\",\r\n \"4a113caa-961f-4535-ac9b-79bfba8b9ed2\",\r\n \"6179a082-c057-4fe3-8118-916b816a42e3\",\r\n \"7c2d0d59-528c-434a-8c6c-03330539cad2\",\r\n \"7d7aed0a-228e-420b-a6a2-82a49dacb8cb\",\r\n \"b7a49237-f5b0-473f-a4ff-6830d23af17d\",\r\n \"f2e939bc-742a-42f9-a27a-f0982c6e3f64\",\r\n \"b7b8bd19-f827-425f-9be1-fd8a86b21904\",\r\n \"700587cd-b5ad-4d37-b560-3ff43a4a5490\",\r\n \"482dccba-36b8-4309-8599-dce82be5b107\",\r\n \"0504eea8-68f8-4367-a04f-38407a0c4a97\",\r\n \"1fdb09c2-872e-43c5-bb79-561e3122dc8a\",\r\n \"0d73806b-2839-44f0-b9e0-3de55a565a24\",\r\n \"bec26c10-d462-4862-9537-53c98dd5606c\",\r\n \"421cdbd5-e8fa-4961-a599-600c3230e091\",\r\n \"9c6d261d-f447-4cf6-bbde-6010b3953a75\",\r\n \"f47f1409-00ea-40d5-bed1-401a50741ae3\",\r\n \"e0cb5c33-2084-4cec-ac51-2bc313d4502e\",\r\n \"f7b9f917-9a41-437c-84b1-682a814dbaf6\",\r\n \"6571efc1-a303-44df-b1b8-38523fdea4fa\",\r\n \"dc50c6c2-4754-411b-9fe0-f341f3910403\",\r\n \"72c0a066-b35b-4d68-bd6f-d406ed3f2b9f\",\r\n \"779ead4e-2dc9-4191-b651-7f2a57b0b6ff\",\r\n \"fd279736-6a60-4ae6-b252-3ae9d9fea200\",\r\n \"40b1b8e8-c813-4c09-b2bb-86db1f921168\",\r\n \"fde3669e-734a-4765-a063-fdec3647fcc8\",\r\n \"76ae450f-630f-4af4-92cf-e7153ba839f0\",\r\n \"fd3aca68-eb29-4ad8-be21-662836d3f454\",\r\n \"5a1044d8-27f6-4e3d-b994-30521eedb46c\",\r\n \"2b8b0d82-3484-40e9-b634-df286b616735\",\r\n \"5e83e4cb-9b41-4b98-b8dd-4fc3951ea1ed\",\r\n \"eb5dcf2a-c769-4615-b84b-74ac50f15a4a\",\r\n \"be438bf2-6cab-41fa-9b2c-9eaf5cd8049d\",\r\n \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"ed64b40d-cfa6-405c-890c-ade489e6dc9c\",\r\n \"2dd1ea73-4024-489e-83a4-45cb3e962f69\",\r\n \"8b940b4f-b118-465f-bdd4-65cf3c55cc3e\",\r\n \"64cb6e50-2fe8-4ad4-86e9-291b799fd3b7\",\r\n \"ff29f09e-a8be-4afc-b627-d02fcaf6c28d\",\r\n \"5f354ec9-f512-41f0-9f1f-ce25bbeb5369\",\r\n \"2dcdba1f-c5f9-4092-bce5-bf593ac4bea5\",\r\n \"4efc6c2d-d534-418c-b109-7f54e80a70d0\",\r\n \"10b09f65-7a54-41fa-965d-ca3490541488\",\r\n \"dd6b2b46-ce72-42b7-af27-93fa41db399e\",\r\n \"729eba1d-8508-4034-abd2-54128fbe8b22\",\r\n \"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339\",\r\n \"3583e1a9-dbb9-472e-ab5c-2c7b0e2a9615\",\r\n \"0a44da5b-5b98-42b5-aa43-be2ceae9a377\",\r\n \"2a7381d1-1dae-4b42-93f4-181ada4c4865\",\r\n \"273459e4-5fc5-4997-aae0-de7455209f23\",\r\n \"93c69cf7-7f7c-44e8-bc82-889084703380\",\r\n \"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\r\n \"4e7ce0ab-3f80-4c90-834e-047bb8b21564\",\r\n \"48580f46-cdf7-4677-b38f-13fee8d2b744\",\r\n \"753548ec-bac1-4b53-8540-167bade337a6\",\r\n \"4cecbcac-6e02-4472-b8b5-823a05494652\",\r\n \"71c2f92b-fbbc-441b-bb97-84fbf374d8d2\",\r\n \"0628a06b-881e-416d-827c-43b7f897368a\",\r\n \"7795c402-abeb-42e9-a027-b924b28c67bb\",\r\n \"8f57971f-cf33-4610-ad69-5671e1eb0420\",\r\n \"832fedb9-9185-40cb-a432-490c7306801a\",\r\n \"ce2366a6-64d7-441b-939c-c9d23f91cccd\",\r\n \"b325d340-14f0-412a-8753-4868e914902f\",\r\n \"274871fc-ab7d-4860-99b6-e4ceff4883bb\",\r\n \"80bef37c-0c59-474b-964a-e9eb09f913f5\"\r\n ]\r\n}", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Strict-Transport-Security": [ + "max-age=31536000" + ], + "request-id": [ + "c4884234-5d67-4a6c-82cf-fb67a0557145" + ], + "client-request-id": [ + "c4884234-5d67-4a6c-82cf-fb67a0557145" + ], + "x-ms-ags-diagnostic": [ + "{\"ServerInfo\":{\"DataCenter\":\"Southeast Asia\",\"Slice\":\"E\",\"Ring\":\"5\",\"ScaleUnit\":\"001\",\"RoleInstance\":\"SI2PEPF000055FE\"}}" + ], + "WWW-Authenticate": [ + "Bearer realm=\"\", authorization_uri=\"https://login.microsoftonline.com/common/oauth2/authorize\", client_id=\"00000003-0000-0000-c000-000000000000\"", + "PoP realm=\"\", authorization_uri=\"https://login.microsoftonline.com/common/oauth2/authorize\", client_id=\"00000003-0000-0000-c000-000000000000\", nonce=\"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6IjA2RDI2MTgwMDBFMUFFQzlEOEZDMzEwNEM3RjBFRUE4NDMyN0NERjEifQ.eyJ0cyI6MTczOTQ0NzIyMH0.m8hOmDLjFB7KBX5bGgIVCi3BU_7wakTB0PseuFABeiFjIV37Z52DV7zqO70Hf3j9aBCqivGluAZKpDH_MnOmmVGkgYag2WJredH0Djve-S1bEFomJ9lu_mM9w1ahjVlx0vzvJPI12WoVK8AxvsQFC4hfthWn88RaEE5ToM-PoFrXCPf9_rDFMfdNODhllEP8iDp3oF8JuVn83DoXahXvXzcsQUZ5DiJ7gZ-dyDDngpaBevP1VNUsLDFdUzbETAMt7mOLxIeiXKrVO0gx4Ds_oMrs5XzBJxxLSnOW3CIvJ7EyMW9xwnH49Zq9PdoFZV1j9HhLYB-qPEb8B0rU8nopUA\"" + ], + "Date": [ + "Thu, 13 Feb 2025 11:47:30 GMT" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidAuthenticationToken\",\r\n \"message\": \"Access token validation failure. Invalid audience.\",\r\n \"innerError\": {\r\n \"date\": \"2025-02-13T11:47:30\",\r\n \"request-id\": \"c4884234-5d67-4a6c-82cf-fb67a0557145\",\r\n \"client-request-id\": \"c4884234-5d67-4a6c-82cf-fb67a0557145\"\r\n }\r\n }\r\n}", + "StatusCode": 401 + }, + { + "RequestUri": "/v1.0/directoryObjects/microsoft.graph.getByIds", + "EncodedRequestUri": "L3YxLjAvZGlyZWN0b3J5T2JqZWN0cy9taWNyb3NvZnQuZ3JhcGguZ2V0QnlJZHM=", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f6f5f11-ebf4-44b6-a343-69fab29ebb0f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.3624.51421", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Commands.Common.MSGraph.Version1.0.MicrosoftGraphClient/1.3.104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "4790" + ] + }, + "RequestBody": "{\r\n \"ids\": [\r\n \"7575ec5b-781c-4019-961d-27f551da3851\",\r\n \"5c445532-1499-448e-970c-bda7db1e1f15\",\r\n \"612cdbb4-6edd-4998-aae9-129cdba53a9a\",\r\n \"a1cd43c2-c713-4af4-b885-50540e2c595f\",\r\n \"f76e2cfd-0948-4cd7-bc92-937a6fd5f280\",\r\n \"65c24161-dc3c-4cc4-bf70-b9b13e8d6ec6\",\r\n \"8d9606ff-585b-421a-afee-188d2497c7c7\",\r\n \"e393dddc-7d32-4c92-8619-23578f8de85d\",\r\n \"469e05b3-323f-4d8b-ad7c-325f402cc8db\",\r\n \"ca51e4e8-ad32-4516-a35b-7dccde700f0b\",\r\n \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"6c8fb59d-dd39-408b-beee-847047eff143\",\r\n \"2266bac4-0256-4765-8abe-772627da6e27\",\r\n \"f357b4f8-09af-4f35-a7d6-706d3e7dc5ca\",\r\n \"3e1e4fbc-9e47-4dc0-a2df-b5649c777328\",\r\n \"0a6d9c2c-fe57-44bd-9d52-6eb585b25e93\",\r\n \"96def109-c4fe-4d53-8b93-cc257c9716d1\",\r\n \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"4a3ec5fb-ba6f-4a7f-98e2-2918cd728500\",\r\n \"39a51fdc-6193-45d2-a938-ddcb56a3592d\",\r\n \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"14630511-63a1-4d32-a204-a8002c139ad2\",\r\n \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"f819bf1c-9cf9-42c3-bd59-82c507565fa1\",\r\n \"a4fcf44f-432a-4e14-8b0c-bcc57c65222f\",\r\n \"ca181d1b-4362-4ed5-9f2b-f50120fa0eae\",\r\n \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"ce74a389-b5e8-4f16-89c7-787031ddd903\",\r\n \"18dc26db-fe4f-426e-9f3f-b3e52cc010bf\",\r\n \"1357843f-2c6b-4c6e-aa31-4748cbd2dd77\",\r\n \"772c6450-0edb-40e1-adc1-352fa7e5d1f3\",\r\n \"aef545e3-101e-484b-afe4-3da4c1a62f67\",\r\n \"54e5295c-bab1-42eb-9811-569df9e55e73\",\r\n \"91852ff0-b73e-4d9f-9bf0-819fc3b1a387\",\r\n \"3aed027b-3fee-4c92-a814-32d411cbd3a0\",\r\n \"df454a10-e7d6-4a6e-88f8-f55a34522dbf\",\r\n \"09962365-f4fa-41a8-b9c9-8458c40c5a59\",\r\n \"ccad4beb-b13f-499e-a2ea-7b04f687d88f\",\r\n \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"2ac3f52f-f3ad-40a4-9b2d-aa24e4c7bbba\",\r\n \"56d08bc2-cc29-4d23-9d23-fd396b807b02\",\r\n \"4a113caa-961f-4535-ac9b-79bfba8b9ed2\",\r\n \"6179a082-c057-4fe3-8118-916b816a42e3\",\r\n \"7c2d0d59-528c-434a-8c6c-03330539cad2\",\r\n \"7d7aed0a-228e-420b-a6a2-82a49dacb8cb\",\r\n \"b7a49237-f5b0-473f-a4ff-6830d23af17d\",\r\n \"f2e939bc-742a-42f9-a27a-f0982c6e3f64\",\r\n \"b7b8bd19-f827-425f-9be1-fd8a86b21904\",\r\n \"700587cd-b5ad-4d37-b560-3ff43a4a5490\",\r\n \"482dccba-36b8-4309-8599-dce82be5b107\",\r\n \"0504eea8-68f8-4367-a04f-38407a0c4a97\",\r\n \"1fdb09c2-872e-43c5-bb79-561e3122dc8a\",\r\n \"0d73806b-2839-44f0-b9e0-3de55a565a24\",\r\n \"bec26c10-d462-4862-9537-53c98dd5606c\",\r\n \"421cdbd5-e8fa-4961-a599-600c3230e091\",\r\n \"9c6d261d-f447-4cf6-bbde-6010b3953a75\",\r\n \"f47f1409-00ea-40d5-bed1-401a50741ae3\",\r\n \"e0cb5c33-2084-4cec-ac51-2bc313d4502e\",\r\n \"f7b9f917-9a41-437c-84b1-682a814dbaf6\",\r\n \"6571efc1-a303-44df-b1b8-38523fdea4fa\",\r\n \"dc50c6c2-4754-411b-9fe0-f341f3910403\",\r\n \"72c0a066-b35b-4d68-bd6f-d406ed3f2b9f\",\r\n \"779ead4e-2dc9-4191-b651-7f2a57b0b6ff\",\r\n \"fd279736-6a60-4ae6-b252-3ae9d9fea200\",\r\n \"40b1b8e8-c813-4c09-b2bb-86db1f921168\",\r\n \"fde3669e-734a-4765-a063-fdec3647fcc8\",\r\n \"76ae450f-630f-4af4-92cf-e7153ba839f0\",\r\n \"fd3aca68-eb29-4ad8-be21-662836d3f454\",\r\n \"5a1044d8-27f6-4e3d-b994-30521eedb46c\",\r\n \"2b8b0d82-3484-40e9-b634-df286b616735\",\r\n \"5e83e4cb-9b41-4b98-b8dd-4fc3951ea1ed\",\r\n \"eb5dcf2a-c769-4615-b84b-74ac50f15a4a\",\r\n \"be438bf2-6cab-41fa-9b2c-9eaf5cd8049d\",\r\n \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"ed64b40d-cfa6-405c-890c-ade489e6dc9c\",\r\n \"2dd1ea73-4024-489e-83a4-45cb3e962f69\",\r\n \"8b940b4f-b118-465f-bdd4-65cf3c55cc3e\",\r\n \"64cb6e50-2fe8-4ad4-86e9-291b799fd3b7\",\r\n \"ff29f09e-a8be-4afc-b627-d02fcaf6c28d\",\r\n \"5f354ec9-f512-41f0-9f1f-ce25bbeb5369\",\r\n \"2dcdba1f-c5f9-4092-bce5-bf593ac4bea5\",\r\n \"4efc6c2d-d534-418c-b109-7f54e80a70d0\",\r\n \"10b09f65-7a54-41fa-965d-ca3490541488\",\r\n \"dd6b2b46-ce72-42b7-af27-93fa41db399e\",\r\n \"729eba1d-8508-4034-abd2-54128fbe8b22\",\r\n \"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339\",\r\n \"3583e1a9-dbb9-472e-ab5c-2c7b0e2a9615\",\r\n \"0a44da5b-5b98-42b5-aa43-be2ceae9a377\",\r\n \"2a7381d1-1dae-4b42-93f4-181ada4c4865\",\r\n \"273459e4-5fc5-4997-aae0-de7455209f23\",\r\n \"93c69cf7-7f7c-44e8-bc82-889084703380\",\r\n \"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\r\n \"4e7ce0ab-3f80-4c90-834e-047bb8b21564\",\r\n \"48580f46-cdf7-4677-b38f-13fee8d2b744\",\r\n \"753548ec-bac1-4b53-8540-167bade337a6\",\r\n \"4cecbcac-6e02-4472-b8b5-823a05494652\",\r\n \"71c2f92b-fbbc-441b-bb97-84fbf374d8d2\",\r\n \"0628a06b-881e-416d-827c-43b7f897368a\",\r\n \"7795c402-abeb-42e9-a027-b924b28c67bb\",\r\n \"8f57971f-cf33-4610-ad69-5671e1eb0420\",\r\n \"832fedb9-9185-40cb-a432-490c7306801a\",\r\n \"ce2366a6-64d7-441b-939c-c9d23f91cccd\",\r\n \"b325d340-14f0-412a-8753-4868e914902f\",\r\n \"274871fc-ab7d-4860-99b6-e4ceff4883bb\",\r\n \"80bef37c-0c59-474b-964a-e9eb09f913f5\"\r\n ]\r\n}", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Strict-Transport-Security": [ + "max-age=31536000" + ], + "request-id": [ + "294afae3-f961-4be5-82ad-973ee913bf31" + ], + "client-request-id": [ + "294afae3-f961-4be5-82ad-973ee913bf31" + ], + "x-ms-ags-diagnostic": [ + "{\"ServerInfo\":{\"DataCenter\":\"Southeast Asia\",\"Slice\":\"E\",\"Ring\":\"5\",\"ScaleUnit\":\"001\",\"RoleInstance\":\"SI2PEPF00001642\"}}" + ], + "WWW-Authenticate": [ + "Bearer realm=\"\", authorization_uri=\"https://login.microsoftonline.com/common/oauth2/authorize\", client_id=\"00000003-0000-0000-c000-000000000000\"", + "PoP realm=\"\", authorization_uri=\"https://login.microsoftonline.com/common/oauth2/authorize\", client_id=\"00000003-0000-0000-c000-000000000000\", nonce=\"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6IjA2RDI2MTgwMDBFMUFFQzlEOEZDMzEwNEM3RjBFRUE4NDMyN0NERjEifQ.eyJ0cyI6MTczOTQ0NzIyMH0.m8hOmDLjFB7KBX5bGgIVCi3BU_7wakTB0PseuFABeiFjIV37Z52DV7zqO70Hf3j9aBCqivGluAZKpDH_MnOmmVGkgYag2WJredH0Djve-S1bEFomJ9lu_mM9w1ahjVlx0vzvJPI12WoVK8AxvsQFC4hfthWn88RaEE5ToM-PoFrXCPf9_rDFMfdNODhllEP8iDp3oF8JuVn83DoXahXvXzcsQUZ5DiJ7gZ-dyDDngpaBevP1VNUsLDFdUzbETAMt7mOLxIeiXKrVO0gx4Ds_oMrs5XzBJxxLSnOW3CIvJ7EyMW9xwnH49Zq9PdoFZV1j9HhLYB-qPEb8B0rU8nopUA\"" + ], + "Date": [ + "Thu, 13 Feb 2025 11:47:33 GMT" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidAuthenticationToken\",\r\n \"message\": \"Access token validation failure. Invalid audience.\",\r\n \"innerError\": {\r\n \"date\": \"2025-02-13T11:47:33\",\r\n \"request-id\": \"294afae3-f961-4be5-82ad-973ee913bf31\",\r\n \"client-request-id\": \"294afae3-f961-4be5-82ad-973ee913bf31\"\r\n }\r\n }\r\n}", + "StatusCode": 401 + }, + { + "RequestUri": "//subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2020-08-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzllMjIzZGJlLTMzOTktNGUxOS04OGViLTA5NzVmMDJhYzg3Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9YXRTY29wZSgpJmFwaS12ZXJzaW9uPTIwMjAtMDgtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f6f5f11-ebf4-44b6-a343-69fab29ebb0f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.3624.51421", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/7.8.1" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f76cec76-e701-4272-8f2f-f084c86e12fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "156c9b8d-04f7-4683-bab0-c3061b30769b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250213T114731Z:156c9b8d-04f7-4683-bab0-c3061b30769b" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2BC5222C43E54A508BD9AC371B2B35C5 Ref B: MAA201060515049 Ref C: 2025-02-13T11:47:31Z" + ], + "Date": [ + "Thu, 13 Feb 2025 11:47:30 GMT" + ], + "Content-Length": [ + "130304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"7575ec5b-781c-4019-961d-27f551da3851\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-23T22:17:35.7733983Z\",\r\n \"updatedOn\": \"2024-07-23T22:17:35.7733983Z\",\r\n \"createdBy\": \"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e\",\r\n \"updatedBy\": \"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/05c7fdf0-000f-4fa4-9ef6-a7ee547d8a51\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"05c7fdf0-000f-4fa4-9ef6-a7ee547d8a51\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599\",\r\n \"principalId\": \"5c445532-1499-448e-970c-bda7db1e1f15\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-07-13T16:20:06.8829118Z\",\r\n \"updatedOn\": \"2023-07-13T16:20:06.8829118Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"Allow AccessMonitorReader to read access details for compliance purpose\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/fb6b898e-5323-404d-a8af-da5aafc3ecc0\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fb6b898e-5323-404d-a8af-da5aafc3ecc0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599\",\r\n \"principalId\": \"612cdbb4-6edd-4998-aae9-129cdba53a9a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-07-19T22:13:56.348297Z\",\r\n \"updatedOn\": \"2023-07-19T22:13:56.348297Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"Allow AccessMonitorReader to read access details for compliance purpose\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/3cdb16ce-2290-4f5f-bcab-5b07a458405f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3cdb16ce-2290-4f5f-bcab-5b07a458405f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599\",\r\n \"principalId\": \"a1cd43c2-c713-4af4-b885-50540e2c595f\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-07-19T22:18:24.6119781Z\",\r\n \"updatedOn\": \"2023-07-19T22:18:24.6119781Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"Allow AccessMonitorReader to read access details for compliance purpose\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/125160dd-5630-45b1-8260-4e5469d3e7b6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"125160dd-5630-45b1-8260-4e5469d3e7b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"f76e2cfd-0948-4cd7-bc92-937a6fd5f280\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-09-30T15:35:35.1709516Z\",\r\n \"updatedOn\": \"2022-09-30T15:35:35.1709516Z\",\r\n \"createdBy\": \"bd7d80cf-6249-4555-acbd-278793ea12b2\",\r\n \"updatedBy\": \"bd7d80cf-6249-4555-acbd-278793ea12b2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/c154411a-7461-4e59-a72b-981068cf00fb\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c154411a-7461-4e59-a72b-981068cf00fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"65c24161-dc3c-4cc4-bf70-b9b13e8d6ec6\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-05-09T16:01:03.0818958Z\",\r\n \"updatedOn\": \"2022-05-09T16:01:03.0818958Z\",\r\n \"createdBy\": \"bd7d80cf-6249-4555-acbd-278793ea12b2\",\r\n \"updatedBy\": \"bd7d80cf-6249-4555-acbd-278793ea12b2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/0bebc094-9bc3-4b56-af84-587372b5ed75\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0bebc094-9bc3-4b56-af84-587372b5ed75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\r\n \"principalId\": \"8d9606ff-585b-421a-afee-188d2497c7c7\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-03-08T15:24:55.8564636Z\",\r\n \"updatedOn\": \"2023-03-08T15:24:55.8564636Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/2883e010-3052-41d2-858d-71421574f3e7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2883e010-3052-41d2-858d-71421574f3e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\r\n \"principalId\": \"e393dddc-7d32-4c92-8619-23578f8de85d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-03-08T15:25:02.6761267Z\",\r\n \"updatedOn\": \"2023-03-08T15:25:02.6761267Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/cc914de1-874d-4be8-a280-cf5a50e83d69\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"cc914de1-874d-4be8-a280-cf5a50e83d69\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"469e05b3-323f-4d8b-ad7c-325f402cc8db\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-03-19T12:43:50.5688437Z\",\r\n \"updatedOn\": \"2023-03-19T12:43:50.5688437Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/2460b2f9-7616-48af-a14f-5ec13aaeb518\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2460b2f9-7616-48af-a14f-5ec13aaeb518\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"ca51e4e8-ad32-4516-a35b-7dccde700f0b\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-05-04T03:46:46.4115279Z\",\r\n \"updatedOn\": \"2023-05-04T03:46:46.4115279Z\",\r\n \"createdBy\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"updatedBy\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/f84f8587-ad19-49bc-a962-4c5f508a1123\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f84f8587-ad19-49bc-a962-4c5f508a1123\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"ca51e4e8-ad32-4516-a35b-7dccde700f0b\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-05-04T03:46:46.4447668Z\",\r\n \"updatedOn\": \"2023-05-04T03:46:46.4447668Z\",\r\n \"createdBy\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"updatedBy\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/e02604a9-2520-4c9a-a4f1-22b7f0ce742f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e02604a9-2520-4c9a-a4f1-22b7f0ce742f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"principalId\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-08-04T09:59:57.0593709Z\",\r\n \"updatedOn\": \"2023-08-04T09:59:57.0593709Z\",\r\n \"createdBy\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"updatedBy\": \"6205f759-1234-453c-9712-34d7671bceff\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"Add logic app contibutor for SI testing\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/8fecc97b-a20f-4751-b334-52dde5e614ba\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8fecc97b-a20f-4751-b334-52dde5e614ba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6\",\r\n \"principalId\": \"6c8fb59d-dd39-408b-beee-847047eff143\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:19.7392814Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:19.7392814Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/a140f056-ff22-49fe-a301-3a0ba577558a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a140f056-ff22-49fe-a301-3a0ba577558a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"principalId\": \"2266bac4-0256-4765-8abe-772627da6e27\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.5777628Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.5777628Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/bc473adc-1cf5-4ffd-ce27-045bf6ec55e8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bc473adc-1cf5-4ffd-ce27-045bf6ec55e8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"principalId\": \"f357b4f8-09af-4f35-a7d6-706d3e7dc5ca\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.6706479Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.6706479Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/ca52252f-387d-4be9-3dcf-dd4270d0940b\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ca52252f-387d-4be9-3dcf-dd4270d0940b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"principalId\": \"f357b4f8-09af-4f35-a7d6-706d3e7dc5ca\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.6968051Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.6968051Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/9dae9ca3-0628-4064-a8f2-44d460607e5d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9dae9ca3-0628-4064-a8f2-44d460607e5d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"principalId\": \"3e1e4fbc-9e47-4dc0-a2df-b5649c777328\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.7416508Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.7416508Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/333dabdb-cd07-44e3-18ef-47d0fac41398\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"333dabdb-cd07-44e3-18ef-47d0fac41398\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"principalId\": \"0a6d9c2c-fe57-44bd-9d52-6eb585b25e93\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.745739Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.745739Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/5a83293f-5b53-4829-cf58-bd8a02da23c3\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5a83293f-5b53-4829-cf58-bd8a02da23c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\",\r\n \"principalId\": \"2266bac4-0256-4765-8abe-772627da6e27\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.6247613Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.6247613Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/bfa3d9f4-1bfd-4718-d1e4-cdc4106bff01\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bfa3d9f4-1bfd-4718-d1e4-cdc4106bff01\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"2266bac4-0256-4765-8abe-772627da6e27\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.7542206Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.7542206Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/065720ea-1468-4664-b149-086cd30558b4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"065720ea-1468-4664-b149-086cd30558b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"principalId\": \"3e1e4fbc-9e47-4dc0-a2df-b5649c777328\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.7554524Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.7554524Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/394d19ce-de19-4d28-b677-e6bd0951df82\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"394d19ce-de19-4d28-b677-e6bd0951df82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\",\r\n \"principalId\": \"0a6d9c2c-fe57-44bd-9d52-6eb585b25e93\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.7657395Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.7657395Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/2aef1ad7-5a5c-426c-963a-e35cceb35869\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2aef1ad7-5a5c-426c-963a-e35cceb35869\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"3e1e4fbc-9e47-4dc0-a2df-b5649c777328\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.772667Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.772667Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/a98fbf61-e02e-4e21-d650-1c7aa72492be\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a98fbf61-e02e-4e21-d650-1c7aa72492be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"f357b4f8-09af-4f35-a7d6-706d3e7dc5ca\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.8110943Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.8110943Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/d8625688-2d27-4b06-8c27-6fda1502a4d6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d8625688-2d27-4b06-8c27-6fda1502a4d6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\",\r\n \"principalId\": \"f357b4f8-09af-4f35-a7d6-706d3e7dc5ca\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.9620487Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.9620487Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/dbbbbad7-b2d1-4583-1914-e781573190bd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"dbbbbad7-b2d1-4583-1914-e781573190bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"principalId\": \"2266bac4-0256-4765-8abe-772627da6e27\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:48.6261084Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:48.6261084Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/f50a33bf-f783-445d-6fae-eb7d6ce16237\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f50a33bf-f783-445d-6fae-eb7d6ce16237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\",\r\n \"principalId\": \"3e1e4fbc-9e47-4dc0-a2df-b5649c777328\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:49.0100538Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:49.0100538Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/026cd031-2250-4d58-3f1b-bfb767944586\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"026cd031-2250-4d58-3f1b-bfb767944586\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"principalId\": \"0a6d9c2c-fe57-44bd-9d52-6eb585b25e93\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:49.0020476Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:49.0020476Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/db8f8da9-c96b-44a4-03aa-37e3c98de873\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"db8f8da9-c96b-44a4-03aa-37e3c98de873\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"0a6d9c2c-fe57-44bd-9d52-6eb585b25e93\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-12-11T15:02:49.1130541Z\",\r\n \"updatedOn\": \"2023-12-11T15:02:49.1130541Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/477a1ecc-e21f-4067-15c1-4718bf3935ab\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"477a1ecc-e21f-4067-15c1-4718bf3935ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae\",\r\n \"principalId\": \"96def109-c4fe-4d53-8b93-cc257c9716d1\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-11-03T00:21:21.0454846Z\",\r\n \"updatedOn\": \"2021-11-03T00:21:21.0454846Z\",\r\n \"createdBy\": \"\",\r\n \"updatedBy\": \"\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/3510f409-0f7d-4eae-99c8-d11e376780f0\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3510f409-0f7d-4eae-99c8-d11e376780f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-01-31T15:35:57.6967238Z\",\r\n \"updatedOn\": \"2024-01-31T15:35:57.6967238Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"To establish a network peering when you don't intend to separate the duty of managing the network belonging to each tenant, add the user from tenant A as a guest in the opposite tenant. Then, assign them the Network Contributor role to initiate and connect the network peering from each subscription. With these permissions, the user is able to establish the network peering from each subscription.\"\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/8c7d436a-1b3f-4ab7-a3c2-877ef299054a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8c7d436a-1b3f-4ab7-a3c2-877ef299054a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"principalId\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-02-20T03:15:47.5260439Z\",\r\n \"updatedOn\": \"2024-02-20T03:15:47.5260439Z\",\r\n \"createdBy\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"updatedBy\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/0ebd3c22-aae7-447a-8664-8a9de0f6e96c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0ebd3c22-aae7-447a-8664-8a9de0f6e96c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"principalId\": \"4a3ec5fb-ba6f-4a7f-98e2-2918cd728500\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-03-07T06:39:02.5033199Z\",\r\n \"updatedOn\": \"2024-03-07T06:39:02.5033199Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/3601d210-e939-4c42-b634-28bd90d7ba42\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3601d210-e939-4c42-b634-28bd90d7ba42\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"4a3ec5fb-ba6f-4a7f-98e2-2918cd728500\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-03-07T06:39:08.524249Z\",\r\n \"updatedOn\": \"2024-03-07T06:39:08.524249Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/f6e6894e-3f94-4fec-b740-3c18b1dfd278\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f6e6894e-3f94-4fec-b740-3c18b1dfd278\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"principalId\": \"39a51fdc-6193-45d2-a938-ddcb56a3592d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-03-07T16:15:21.4428586Z\",\r\n \"updatedOn\": \"2024-03-07T16:15:21.4428586Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/c2822010-e285-45a9-a4d9-2ca07b969a43\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c2822010-e285-45a9-a4d9-2ca07b969a43\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"39a51fdc-6193-45d2-a938-ddcb56a3592d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-03-07T16:15:27.8534668Z\",\r\n \"updatedOn\": \"2024-03-07T16:15:27.8534668Z\",\r\n \"createdBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"updatedBy\": \"8d015770-03ac-4fcb-ba49-104c64e41d16\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/a5385af2-8910-4c53-bc14-636bce49f608\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a5385af2-8910-4c53-bc14-636bce49f608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ac63b705-f282-497d-ac71-919bf39d939d\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-08T05:38:56.0091572Z\",\r\n \"updatedOn\": \"2024-05-08T05:38:56.0091572Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/431bb8ce-9f00-4efe-ba0b-7cb467d29b08\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"431bb8ce-9f00-4efe-ba0b-7cb467d29b08\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-08T05:50:55.986335Z\",\r\n \"updatedOn\": \"2024-05-08T05:50:55.986335Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/376cda8c-5af0-48a3-ba72-089ab43f55d9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"376cda8c-5af0-48a3-ba72-089ab43f55d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd\",\r\n \"principalId\": \"14630511-63a1-4d32-a204-a8002c139ad2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-13T22:28:07.6293701Z\",\r\n \"updatedOn\": \"2024-05-13T22:28:07.6293701Z\",\r\n \"createdBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"updatedBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/3b412961-e7f0-47a0-9222-f1f76068d907\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3b412961-e7f0-47a0-9222-f1f76068d907\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8480c0f0-4509-4229-9339-7c10018cb8c4\",\r\n \"principalId\": \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-13T22:28:24.1789956Z\",\r\n \"updatedOn\": \"2024-05-13T22:28:24.1789956Z\",\r\n \"createdBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"updatedBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/f60963f8-a89d-45b8-9baa-a2f06b9dc243\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f60963f8-a89d-45b8-9baa-a2f06b9dc243\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"f819bf1c-9cf9-42c3-bd59-82c507565fa1\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-13T22:28:15.5687413Z\",\r\n \"updatedOn\": \"2024-05-13T22:28:15.5687413Z\",\r\n \"createdBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"updatedBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/e7612708-d1b6-4dac-801e-9b48e3cc64b4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e7612708-d1b6-4dac-801e-9b48e3cc64b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6\",\r\n \"principalId\": \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-13T22:28:27.5301646Z\",\r\n \"updatedOn\": \"2024-05-13T22:28:27.5301646Z\",\r\n \"createdBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"updatedBy\": \"d623c6cf-91ae-4c85-b385-8bdaf627575e\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/6d21f24f-3c2c-4e4d-a81c-dc73998c2690\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6d21f24f-3c2c-4e4d-a81c-dc73998c2690\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\r\n \"principalId\": \"a4fcf44f-432a-4e14-8b0c-bcc57c65222f\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-13T22:28:35.4297343Z\",\r\n \"updatedOn\": \"2024-05-13T22:28:35.4297343Z\",\r\n \"createdBy\": \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"updatedBy\": \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/2be8bdef-dba5-472d-a6c3-8c28ffbf1000\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2be8bdef-dba5-472d-a6c3-8c28ffbf1000\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"ca181d1b-4362-4ed5-9f2b-f50120fa0eae\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-04T03:00:08.0985278Z\",\r\n \"updatedOn\": \"2024-06-04T03:00:08.0985278Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/4a18f458-805c-4506-9851-149a17abd782\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4a18f458-805c-4506-9851-149a17abd782\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-04T03:01:26.414692Z\",\r\n \"updatedOn\": \"2024-06-04T03:01:26.414692Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/2f52f241-eb8d-4a74-a850-fed2fb70f1a2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2f52f241-eb8d-4a74-a850-fed2fb70f1a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"d46dac9d-ed5e-4716-a263-46bfd8223004\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-04T03:01:26.4565203Z\",\r\n \"updatedOn\": \"2024-06-04T03:01:26.4565203Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/721777e2-7586-43ef-9667-b6434c2722cb\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"721777e2-7586-43ef-9667-b6434c2722cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-04T03:01:27.2326028Z\",\r\n \"updatedOn\": \"2024-06-04T03:01:27.2326028Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/6a6271f7-82e9-4148-9245-91c3a1b675c7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6a6271f7-82e9-4148-9245-91c3a1b675c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ce74a389-b5e8-4f16-89c7-787031ddd903\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-04T03:01:26.424814Z\",\r\n \"updatedOn\": \"2024-06-04T03:01:26.424814Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/a0b1f665-c6ab-4637-9a97-b3e824bb2adf\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a0b1f665-c6ab-4637-9a97-b3e824bb2adf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"18dc26db-fe4f-426e-9f3f-b3e52cc010bf\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-04T03:03:57.1259471Z\",\r\n \"updatedOn\": \"2024-06-04T03:03:57.1259471Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/659cdb32-8e56-487b-a63c-dbb34295c22f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"659cdb32-8e56-487b-a63c-dbb34295c22f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"1357843f-2c6b-4c6e-aa31-4748cbd2dd77\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-06T06:56:57.3259085Z\",\r\n \"updatedOn\": \"2024-06-06T06:56:57.3259085Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/d447ecef-d16f-4b6f-ab18-16f40b0752df\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d447ecef-d16f-4b6f-ab18-16f40b0752df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-03T05:21:59.7234113Z\",\r\n \"updatedOn\": \"2024-07-03T05:21:59.7234113Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/0325e9fe-e6ef-4f83-aa4e-96b80362996a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0325e9fe-e6ef-4f83-aa4e-96b80362996a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-08T09:11:18.7496679Z\",\r\n \"updatedOn\": \"2024-07-08T09:11:18.7496679Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/7e6851c8-097f-4a35-ae74-17cb7d81a3a4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7e6851c8-097f-4a35-ae74-17cb7d81a3a4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/a7264617-510b-434b-a828-9731dc254ea7\",\r\n \"principalId\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-09T03:17:09.0264171Z\",\r\n \"updatedOn\": \"2024-07-09T03:17:09.0264171Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/62eb50a4-866c-4e36-8f31-dac74eabdcd9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"62eb50a4-866c-4e36-8f31-dac74eabdcd9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168\",\r\n \"principalId\": \"772c6450-0edb-40e1-adc1-352fa7e5d1f3\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": \"((!(ActionMatches{'Microsoft.Authorization/roleAssignments/write'})) OR (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAllValues:GuidNotEquals {8e3af657-a8ff-443c-a75c-2fe8c4bcb635, 18d7d88d-d35e-4fb5-a5c3-7773c20a72d9, f58310d9-a9f6-439a-9e8d-f62e7b41a168})) AND ((!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) OR (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAllValues:GuidNotEquals {8e3af657-a8ff-443c-a75c-2fe8c4bcb635, 18d7d88d-d35e-4fb5-a5c3-7773c20a72d9, f58310d9-a9f6-439a-9e8d-f62e7b41a168}))\",\r\n \"conditionVersion\": \"2.0\",\r\n \"createdOn\": \"2024-07-10T05:35:35.7476227Z\",\r\n \"updatedOn\": \"2024-07-10T05:35:35.7476227Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/7a1a5dc7-e93b-4d1a-bfa0-24a2773e79b3\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7a1a5dc7-e93b-4d1a-bfa0-24a2773e79b3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\",\r\n \"principalId\": \"aef545e3-101e-484b-afe4-3da4c1a62f67\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-08-17T05:56:12.249981Z\",\r\n \"updatedOn\": \"2024-08-17T05:56:12.249981Z\",\r\n \"createdBy\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"updatedBy\": \"f7ef7504-ef68-4e0d-886a-62510e46ad52\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/19cf1062-d811-4235-9d75-2120e1176fd3\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"19cf1062-d811-4235-9d75-2120e1176fd3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"54e5295c-bab1-42eb-9811-569df9e55e73\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-17T06:09:32.2873652Z\",\r\n \"updatedOn\": \"2024-09-17T06:09:32.2873652Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/109b77d0-6586-48cf-9e82-c748be6795a4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"109b77d0-6586-48cf-9e82-c748be6795a4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"91852ff0-b73e-4d9f-9bf0-819fc3b1a387\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-10-01T14:04:40.8732332Z\",\r\n \"updatedOn\": \"2024-10-01T14:04:40.8732332Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/c28f360f-2e7e-445d-a9dc-36675bb40255\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c28f360f-2e7e-445d-a9dc-36675bb40255\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"3aed027b-3fee-4c92-a814-32d411cbd3a0\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2018-05-31T15:40:47.580281Z\",\r\n \"updatedOn\": \"2018-05-31T15:40:47.580281Z\",\r\n \"createdBy\": \"2b5ef1a8-96c2-4572-87e1-5eac032ea9f9\",\r\n \"updatedBy\": \"2b5ef1a8-96c2-4572-87e1-5eac032ea9f9\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/bee61f93-2535-45fc-8dc3-7b7b2597e845\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bee61f93-2535-45fc-8dc3-7b7b2597e845\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"3aed027b-3fee-4c92-a814-32d411cbd3a0\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2018-05-31T15:40:20.361612Z\",\r\n \"updatedOn\": \"2018-05-31T15:40:20.361612Z\",\r\n \"createdBy\": \"2b5ef1a8-96c2-4572-87e1-5eac032ea9f9\",\r\n \"updatedBy\": \"2b5ef1a8-96c2-4572-87e1-5eac032ea9f9\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/31c15bad-c0ba-4734-bd38-8dc776b947a6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"31c15bad-c0ba-4734-bd38-8dc776b947a6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"df454a10-e7d6-4a6e-88f8-f55a34522dbf\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-05-14T05:56:17.5966982Z\",\r\n \"updatedOn\": \"2020-05-14T05:56:17.5966982Z\",\r\n \"createdBy\": \"bd7d80cf-6249-4555-acbd-278793ea12b2\",\r\n \"updatedBy\": \"bd7d80cf-6249-4555-acbd-278793ea12b2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/9d3b7c08-f6ca-421a-b5b6-5b18d7dfe553\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9d3b7c08-f6ca-421a-b5b6-5b18d7dfe553\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"principalId\": \"3aed027b-3fee-4c92-a814-32d411cbd3a0\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2018-05-31T15:40:52.9674174Z\",\r\n \"updatedOn\": \"2018-05-31T15:40:52.9674174Z\",\r\n \"createdBy\": \"2b5ef1a8-96c2-4572-87e1-5eac032ea9f9\",\r\n \"updatedBy\": \"2b5ef1a8-96c2-4572-87e1-5eac032ea9f9\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/21562630-04dd-48c8-a478-708d16231139\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"21562630-04dd-48c8-a478-708d16231139\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b8eda974-7b85-4f76-af95-65846b26df6d\",\r\n \"principalId\": \"a4fcf44f-432a-4e14-8b0c-bcc57c65222f\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-11-06T15:19:27.6727937Z\",\r\n \"updatedOn\": \"2024-11-06T15:19:27.6727937Z\",\r\n \"createdBy\": \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"updatedBy\": \"906fa0c4-0594-48a7-bfe8-361011daa511\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/a18898a8-01a3-4d00-b758-36f582611ea4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a18898a8-01a3-4d00-b758-36f582611ea4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"09962365-f4fa-41a8-b9c9-8458c40c5a59\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-11-26T05:42:48.665744Z\",\r\n \"updatedOn\": \"2024-11-26T05:42:48.665744Z\",\r\n \"createdBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"updatedBy\": \"a16cb6f0-e2b9-44ec-9071-7a3adf4f0ed5\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/ae06efd5-4cd4-4010-9649-a7e49f80e3d5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ae06efd5-4cd4-4010-9649-a7e49f80e3d5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"ccad4beb-b13f-499e-a2ea-7b04f687d88f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-12-10T07:21:28.4471694Z\",\r\n \"updatedOn\": \"2024-12-10T07:21:28.4471694Z\",\r\n \"createdBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"updatedBy\": \"d7e17135-d5a7-4b8b-89e5-252aa15b7e01\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleAssignments/2ac9ded3-5905-4d84-a650-58680b21d5fd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2ac9ded3-5905-4d84-a650-58680b21d5fd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/542d4430-276f-957c-7ce8-dfae33a360e3\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-01-14T15:31:26.0339042Z\",\r\n \"updatedOn\": \"2022-01-14T15:31:26.0339042Z\",\r\n \"createdBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"updatedBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/542d4430-276f-957c-7ce8-dfae33a360e3/providers/Microsoft.Authorization/roleAssignments/8dc886af-e082-4448-aa11-6e5b66ebd037\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8dc886af-e082-4448-aa11-6e5b66ebd037\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2019-03-26T22:01:02.9136073Z\",\r\n \"updatedOn\": \"2019-03-26T22:01:02.9136073Z\",\r\n \"createdBy\": \"8701e34d-d7c2-459c-b2d7-f3a9c5204818\",\r\n \"updatedBy\": \"8701e34d-d7c2-459c-b2d7-f3a9c5204818\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6f4de15e-9316-4714-a7c4-40c46cf8e067\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"2ac3f52f-f3ad-40a4-9b2d-aa24e4c7bbba\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:36:13.2137492Z\",\r\n \"updatedOn\": \"2020-02-25T18:36:13.2137492Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"18fdd87e-1c01-424e-b380-32310f4940c2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"56d08bc2-cc29-4d23-9d23-fd396b807b02\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:35:55.7490022Z\",\r\n \"updatedOn\": \"2020-02-25T18:35:55.7490022Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6e2b954b-42b2-48e0-997a-622601f0a4b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"4a113caa-961f-4535-ac9b-79bfba8b9ed2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:36:00.4746112Z\",\r\n \"updatedOn\": \"2020-02-25T18:36:00.4746112Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d9bcf58a-6f24-446d-bf60-20ffe5142396\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"6179a082-c057-4fe3-8118-916b816a42e3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:35:57.9173081Z\",\r\n \"updatedOn\": \"2020-02-25T18:35:57.9173081Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"7c2d0d59-528c-434a-8c6c-03330539cad2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:36:31.2596366Z\",\r\n \"updatedOn\": \"2020-02-25T18:36:31.2596366Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dabf212-a1c7-4af6-ba8b-be045493b368\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"7d7aed0a-228e-420b-a6a2-82a49dacb8cb\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:35:52.9188704Z\",\r\n \"updatedOn\": \"2020-02-25T18:35:52.9188704Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d674b853-332e-4437-9ddb-bba8fde7ccce\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"b7a49237-f5b0-473f-a4ff-6830d23af17d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:36:38.8393742Z\",\r\n \"updatedOn\": \"2020-02-25T18:36:38.8393742Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"00625383-053d-4227-a4db-b098e9bd2289\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"f2e939bc-742a-42f9-a27a-f0982c6e3f64\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-02-25T18:36:05.0954462Z\",\r\n \"updatedOn\": \"2020-02-25T18:36:05.0954462Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3151fe9c-fcd2-45d3-a256-72fb13b86df5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"b7b8bd19-f827-425f-9be1-fd8a86b21904\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-07-06T18:51:23.0753297Z\",\r\n \"updatedOn\": \"2020-07-06T18:51:23.0753297Z\",\r\n \"createdBy\": \"d59f4a71-eff1-4bfa-a572-fe518f49f6c7\",\r\n \"updatedBy\": \"d59f4a71-eff1-4bfa-a572-fe518f49f6c7\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b3a9e1db-fde1-4ddd-ac1c-91913be67359\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"700587cd-b5ad-4d37-b560-3ff43a4a5490\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-12-12T21:14:55.1655079Z\",\r\n \"updatedOn\": \"2023-02-28T22:54:18.0450083Z\",\r\n \"createdBy\": \"393a8425-6c8d-4d4a-a700-811f0423e5aa\",\r\n \"updatedBy\": \"393a8425-6c8d-4d4a-a700-811f0423e5aa\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6565c104-61e2-5756-96d7-663b216c8b11\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"482dccba-36b8-4309-8599-dce82be5b107\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-02-17T00:30:39.4967398Z\",\r\n \"updatedOn\": \"2022-02-17T00:30:39.4967398Z\",\r\n \"createdBy\": \"a4319ad3-20be-4542-8952-685b66e56377\",\r\n \"updatedBy\": \"a4319ad3-20be-4542-8952-685b66e56377\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d8aedac6-3663-42b3-add4-c013b7935fb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"0504eea8-68f8-4367-a04f-38407a0c4a97\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-03-02T23:53:39.1630622Z\",\r\n \"updatedOn\": \"2022-03-02T23:53:39.1630622Z\",\r\n \"createdBy\": \"a4319ad3-20be-4542-8952-685b66e56377\",\r\n \"updatedBy\": \"a4319ad3-20be-4542-8952-685b66e56377\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b5f0a13f-ac13-4e45-8588-15f5d9a02b20\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971\",\r\n \"principalId\": \"1fdb09c2-872e-43c5-bb79-561e3122dc8a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-03-08T00:58:05.8353141Z\",\r\n \"updatedOn\": \"2022-03-08T00:58:05.8353141Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"403b97d1-ee0a-4b10-afe1-f36f368d2ced\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"0d73806b-2839-44f0-b9e0-3de55a565a24\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-05-17T18:23:54.2264851Z\",\r\n \"updatedOn\": \"2022-05-31T17:20:00.8273681Z\",\r\n \"createdBy\": \"393a8425-6c8d-4d4a-a700-811f0423e5aa\",\r\n \"updatedBy\": \"393a8425-6c8d-4d4a-a700-811f0423e5aa\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f0576973-5014-5fe2-b3f2-cf3aace860d6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\",\r\n \"principalId\": \"bec26c10-d462-4862-9537-53c98dd5606c\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-05-16T23:08:20.8536608Z\",\r\n \"updatedOn\": \"2022-05-16T23:08:20.8536608Z\",\r\n \"createdBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"updatedBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8b338a13-cfa6-42e6-b424-fb375ce9d07c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"421cdbd5-e8fa-4961-a599-600c3230e091\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-07-19T00:07:21.3325762Z\",\r\n \"updatedOn\": \"2022-07-19T00:07:21.3325762Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2697280b-812c-472d-841b-a10a9fe540a5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971\",\r\n \"principalId\": \"9c6d261d-f447-4cf6-bbde-6010b3953a75\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-07-19T00:07:23.702098Z\",\r\n \"updatedOn\": \"2022-07-19T00:07:23.702098Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f4254463-7a28-4d26-b331-5a18c354cbe6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"f47f1409-00ea-40d5-bed1-401a50741ae3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-07-19T00:07:26.4080657Z\",\r\n \"updatedOn\": \"2022-07-19T00:07:26.4080657Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"065a63ba-71cc-4c69-b92b-bc67421e7e64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"e0cb5c33-2084-4cec-ac51-2bc313d4502e\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-04-07T05:56:00.4871186Z\",\r\n \"updatedOn\": \"2023-04-24T19:44:20.3477537Z\",\r\n \"createdBy\": \"09a22e59-e99b-42cb-b8b7-2475f66a3007\",\r\n \"updatedBy\": \"09a22e59-e99b-42cb-b8b7-2475f66a3007\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/17a093c4-e4b2-5959-95e3-5894ef6873fb\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"17a093c4-e4b2-5959-95e3-5894ef6873fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"f7b9f917-9a41-437c-84b1-682a814dbaf6\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-11-26T01:37:41.914463Z\",\r\n \"updatedOn\": \"2024-01-08T19:18:08.6396605Z\",\r\n \"createdBy\": \"815c7b56-317b-457c-bf99-f9c2b6a3f739\",\r\n \"updatedBy\": \"815c7b56-317b-457c-bf99-f9c2b6a3f739\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/67815997-99bc-5b98-9a5d-5ad5a092d499\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"67815997-99bc-5b98-9a5d-5ad5a092d499\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"6571efc1-a303-44df-b1b8-38523fdea4fa\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-08-09T18:17:33.0012805Z\",\r\n \"updatedOn\": \"2021-08-09T18:17:33.0012805Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"01de8fe7-aae0-4d5c-844a-f0bdb8335252\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"dc50c6c2-4754-411b-9fe0-f341f3910403\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-08-24T19:32:18.2000692Z\",\r\n \"updatedOn\": \"2021-08-24T19:32:18.2000692Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0ce2f3fb-17ea-4193-9081-09aa4b39fec4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"72c0a066-b35b-4d68-bd6f-d406ed3f2b9f\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-08-09T18:17:39.9188336Z\",\r\n \"updatedOn\": \"2021-08-09T18:17:39.9188336Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ab2be506-5489-4c1f-add0-f5ed87a10439\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"779ead4e-2dc9-4191-b651-7f2a57b0b6ff\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-08-24T19:32:36.6775144Z\",\r\n \"updatedOn\": \"2021-08-24T19:32:36.6775144Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2e95b289-99bd-4e68-83de-5433f2a0428c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"fd279736-6a60-4ae6-b252-3ae9d9fea200\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-11-01T22:46:09.10564Z\",\r\n \"updatedOn\": \"2021-11-01T22:46:09.10564Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"82fe7886-5c1b-42c2-9319-7b4d436d8aba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"40b1b8e8-c813-4c09-b2bb-86db1f921168\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-11-01T22:46:14.7527743Z\",\r\n \"updatedOn\": \"2021-11-01T22:46:14.7527743Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"12162b26-25fb-4ef5-a6e8-651446483cb6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"fde3669e-734a-4765-a063-fdec3647fcc8\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-11-01T22:46:20.6399869Z\",\r\n \"updatedOn\": \"2021-11-01T22:46:20.6399869Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"76ae450f-630f-4af4-92cf-e7153ba839f0\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-01-26T20:10:13.8998989Z\",\r\n \"updatedOn\": \"2021-01-26T20:10:13.8998989Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b36517ec-61d3-468d-afdc-eceda8adb4ee\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"fd3aca68-eb29-4ad8-be21-662836d3f454\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-02-06T00:13:19.1780775Z\",\r\n \"updatedOn\": \"2021-02-06T00:13:19.1780775Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5216c1ee-4f58-4d36-b379-6c04b1fbd157\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"principalId\": \"5a1044d8-27f6-4e3d-b994-30521eedb46c\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-04-16T18:26:34.3109215Z\",\r\n \"updatedOn\": \"2021-04-16T18:26:34.3109215Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7464f8a3-9f55-443b-a3a5-44a31b100cad\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"2b8b0d82-3484-40e9-b634-df286b616735\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-05-04T19:20:06.7695456Z\",\r\n \"updatedOn\": \"2021-05-04T19:20:06.7695456Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"5e83e4cb-9b41-4b98-b8dd-4fc3951ea1ed\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2021-04-16T18:27:56.4446265Z\",\r\n \"updatedOn\": \"2021-04-16T18:27:56.4446265Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8f430c4c-4317-4495-9f01-4f3d4e1ca111\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"eb5dcf2a-c769-4615-b84b-74ac50f15a4a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-29T08:10:10.263924Z\",\r\n \"updatedOn\": \"2024-07-03T06:42:54.2315474Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fd981fb3-5e11-5e90-aa7b-b646c44e910a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fd981fb3-5e11-5e90-aa7b-b646c44e910a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"be438bf2-6cab-41fa-9b2c-9eaf5cd8049d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-07-15T23:41:54.4771046Z\",\r\n \"updatedOn\": \"2024-07-15T23:41:54.4771046Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ddcc0944-0060-4959-839b-3a0375f3c67d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ddcc0944-0060-4959-839b-3a0375f3c67d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6d224f7c-5c93-4466-b116-8c0c62090d0d\",\r\n \"principalId\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-08-06T19:46:22.1511939Z\",\r\n \"updatedOn\": \"2024-08-06T19:46:22.1511939Z\",\r\n \"createdBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"updatedBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/924c5f63-7511-49c2-b9f5-5a5b8deeb6cd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"924c5f63-7511-49c2-b9f5-5a5b8deeb6cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"principalId\": \"ed64b40d-cfa6-405c-890c-ade489e6dc9c\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.4640815Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.4640815Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/16ad0a18-aacd-4844-8c39-22deb4119f74\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"16ad0a18-aacd-4844-8c39-22deb4119f74\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"2dd1ea73-4024-489e-83a4-45cb3e962f69\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6627656Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6627656Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5e997838-ea3d-4e79-8d7b-2d2dfdbe3868\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5e997838-ea3d-4e79-8d7b-2d2dfdbe3868\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"principalId\": \"8b940b4f-b118-465f-bdd4-65cf3c55cc3e\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6545669Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6545669Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5b4f87ba-5464-4cb2-8c0d-1ac09e851dd0\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5b4f87ba-5464-4cb2-8c0d-1ac09e851dd0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"principalId\": \"64cb6e50-2fe8-4ad4-86e9-291b799fd3b7\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.7609502Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.7609502Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5eb9a251-63c4-4db4-a2f2-689d011b4509\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5eb9a251-63c4-4db4-a2f2-689d011b4509\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"principalId\": \"ff29f09e-a8be-4afc-b627-d02fcaf6c28d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.8333637Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.8333637Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/1cd85cca-586c-45d9-9f81-4074965a9d99\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1cd85cca-586c-45d9-9f81-4074965a9d99\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"5f354ec9-f512-41f0-9f1f-ce25bbeb5369\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.3122114Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.3122114Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e0ef8920-e57d-4c1c-a21f-0765b34786b5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e0ef8920-e57d-4c1c-a21f-0765b34786b5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\",\r\n \"principalId\": \"2dcdba1f-c5f9-4092-bce5-bf593ac4bea5\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.5115488Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.5115488Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/27929cc1-e4f6-4dab-80cb-51b2743ec222\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"27929cc1-e4f6-4dab-80cb-51b2743ec222\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\r\n \"principalId\": \"4efc6c2d-d534-418c-b109-7f54e80a70d0\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6565526Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6565526Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/a68687e3-f706-452b-ad9b-5d2497348da4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a68687e3-f706-452b-ad9b-5d2497348da4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"10b09f65-7a54-41fa-965d-ca3490541488\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6436777Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6436777Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ea232a8a-e2e3-472d-a926-257f61a306f8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ea232a8a-e2e3-472d-a926-257f61a306f8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"principalId\": \"ff29f09e-a8be-4afc-b627-d02fcaf6c28d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6276165Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6276165Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f61532eb-c3be-4af1-9283-49c3e54978bd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f61532eb-c3be-4af1-9283-49c3e54978bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"principalId\": \"10b09f65-7a54-41fa-965d-ca3490541488\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6806125Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6806125Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/48f44b2a-d2b7-45f6-b80a-930a630b26e7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"48f44b2a-d2b7-45f6-b80a-930a630b26e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419\",\r\n \"principalId\": \"dd6b2b46-ce72-42b7-af27-93fa41db399e\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.3196261Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.3196261Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6cca32ef-f72d-42b9-a956-b28bd5fd59a8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6cca32ef-f72d-42b9-a956-b28bd5fd59a8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"principalId\": \"729eba1d-8508-4034-abd2-54128fbe8b22\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:52.0592211Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:52.0592211Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/cd9c7e9c-f79f-4f2c-9e28-28879d2e85ec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"cd9c7e9c-f79f-4f2c-9e28-28879d2e85ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"principalId\": \"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T17:58:51.6932275Z\",\r\n \"updatedOn\": \"2024-09-04T17:58:51.6932275Z\",\r\n \"createdBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"updatedBy\": \"526cce61-401e-4709-9918-7888208dbe55\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/48c6a306-5301-439e-86b0-9e2bca52994e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"48c6a306-5301-439e-86b0-9e2bca52994e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"principalId\": \"3583e1a9-dbb9-472e-ab5c-2c7b0e2a9615\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-16T07:48:49.7761077Z\",\r\n \"updatedOn\": \"2024-10-09T11:32:02.0971195Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7a465a70-0737-5ea3-a401-17d618549b26\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7a465a70-0737-5ea3-a401-17d618549b26\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064\",\r\n \"principalId\": \"3583e1a9-dbb9-472e-ab5c-2c7b0e2a9615\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-16T07:48:51.5805513Z\",\r\n \"updatedOn\": \"2024-10-09T11:32:04.0456795Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e26bf549-e870-5800-af71-7a0d874ba92d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e26bf549-e870-5800-af71-7a0d874ba92d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"principalId\": \"0a44da5b-5b98-42b5-aa43-be2ceae9a377\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-20T23:14:31.647167Z\",\r\n \"updatedOn\": \"2024-09-20T23:14:31.647167Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/a514e01b-fd6b-4bfa-a4ee-0747994c9e5f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a514e01b-fd6b-4bfa-a4ee-0747994c9e5f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\r\n \"principalId\": \"2a7381d1-1dae-4b42-93f4-181ada4c4865\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-01-16T00:02:23.0916862Z\",\r\n \"updatedOn\": \"2025-02-04T02:25:20.8028292Z\",\r\n \"createdBy\": \"09a22e59-e99b-42cb-b8b7-2475f66a3007\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2674eb52-f8a5-5178-80e5-c2775b7da442\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2674eb52-f8a5-5178-80e5-c2775b7da442\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\r\n \"principalId\": \"273459e4-5fc5-4997-aae0-de7455209f23\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-01-28T20:53:00.9077636Z\",\r\n \"updatedOn\": \"2025-02-03T23:46:56.0575877Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/dd64da31-e90a-58fb-8767-341d655cf574\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"dd64da31-e90a-58fb-8767-341d655cf574\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/ebc6a08c-9436-41c0-98ea-9a98ce69e91c\",\r\n \"principalId\": \"93c69cf7-7f7c-44e8-bc82-889084703380\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-10-25T00:59:34.6842751Z\",\r\n \"updatedOn\": \"2024-10-25T00:59:34.6842751Z\",\r\n \"createdBy\": \"7065961c-d3a8-4346-985c-12cd2dec2994\",\r\n \"updatedBy\": \"7065961c-d3a8-4346-985c-12cd2dec2994\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/80be68ee-64b9-41c6-ad33-91e561563dc3\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"80be68ee-64b9-41c6-ad33-91e561563dc3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"principalId\": \"93c69cf7-7f7c-44e8-bc82-889084703380\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-10-25T01:00:25.9766703Z\",\r\n \"updatedOn\": \"2024-10-25T01:00:25.9766703Z\",\r\n \"createdBy\": \"7065961c-d3a8-4346-985c-12cd2dec2994\",\r\n \"updatedBy\": \"7065961c-d3a8-4346-985c-12cd2dec2994\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/7fcb7148-5d5b-43f5-866a-28bfc6db1727\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7fcb7148-5d5b-43f5-866a-28bfc6db1727\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"principalId\": \"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2019-03-27T00:49:37.3000523Z\",\r\n \"updatedOn\": \"2019-03-27T00:49:37.3000523Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2019-03-26T22:01:02.9176787Z\",\r\n \"updatedOn\": \"2019-03-26T22:01:02.9176787Z\",\r\n \"createdBy\": \"8701e34d-d7c2-459c-b2d7-f3a9c5204818\",\r\n \"updatedBy\": \"8701e34d-d7c2-459c-b2d7-f3a9c5204818\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\",\r\n \"principalId\": \"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2019-03-27T00:50:08.3039053Z\",\r\n \"updatedOn\": \"2019-03-27T00:50:08.3039053Z\",\r\n \"createdBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"updatedBy\": \"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3d01f56e-ee3a-41ed-a775-0e067546cb12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\",\r\n \"principalId\": \"bec26c10-d462-4862-9537-53c98dd5606c\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2022-06-28T23:11:28.9217618Z\",\r\n \"updatedOn\": \"2022-06-28T23:11:28.9217618Z\",\r\n \"createdBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"updatedBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"869183bd-893a-46f9-bb02-45e48b13f1be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\",\r\n \"principalId\": \"4e7ce0ab-3f80-4c90-834e-047bb8b21564\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-09-15T21:41:54.7021549Z\",\r\n \"updatedOn\": \"2023-09-15T21:41:54.7021549Z\",\r\n \"createdBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\",\r\n \"updatedBy\": \"08958326-d36e-43ae-bcfb-349b337a4483\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/c68e55f3-69fd-4ba8-8dfc-0c62d73e4eb6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c68e55f3-69fd-4ba8-8dfc-0c62d73e4eb6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"48580f46-cdf7-4677-b38f-13fee8d2b744\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-25T17:22:19.553013Z\",\r\n \"updatedOn\": \"2024-06-25T17:22:19.553013Z\",\r\n \"createdBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"updatedBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/9547ef7c-6294-470a-ad4a-00ab0587ff67\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9547ef7c-6294-470a-ad4a-00ab0587ff67\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"principalId\": \"753548ec-bac1-4b53-8540-167bade337a6\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-06-25T17:22:56.3760639Z\",\r\n \"updatedOn\": \"2024-06-25T17:22:56.3760639Z\",\r\n \"createdBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"updatedBy\": \"46e80812-4c4e-42fa-88fe-73f37845efe3\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/a9047912-01ff-4276-8ba3-86b00aac5a81\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a9047912-01ff-4276-8ba3-86b00aac5a81\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/47d81b3f-7139-46fc-a2e5-228265cc216c\",\r\n \"principalId\": \"4cecbcac-6e02-4472-b8b5-823a05494652\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T23:38:57.316734Z\",\r\n \"updatedOn\": \"2024-09-04T23:38:57.316734Z\",\r\n \"createdBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"updatedBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/802719eb-7994-4570-9d4e-5148bf3b9a92\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"802719eb-7994-4570-9d4e-5148bf3b9a92\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cbdd6655-6341-491c-b01b-8b202175cee4\",\r\n \"principalId\": \"4cecbcac-6e02-4472-b8b5-823a05494652\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-04T23:40:48.2349759Z\",\r\n \"updatedOn\": \"2024-09-04T23:40:48.2349759Z\",\r\n \"createdBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"updatedBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/2f995a6c-51e8-4cd1-aeb9-dd1bd10edab4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2f995a6c-51e8-4cd1-aeb9-dd1bd10edab4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/47d81b3f-7139-46fc-a2e5-228265cc216c\",\r\n \"principalId\": \"71c2f92b-fbbc-441b-bb97-84fbf374d8d2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-09T21:12:09.339003Z\",\r\n \"updatedOn\": \"2024-09-09T21:12:09.339003Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/1b73abcc-559a-4c11-919d-7ba9003ef4b7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1b73abcc-559a-4c11-919d-7ba9003ef4b7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/cbdd6655-6341-491c-b01b-8b202175cee4\",\r\n \"principalId\": \"71c2f92b-fbbc-441b-bb97-84fbf374d8d2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-09T21:12:33.2531658Z\",\r\n \"updatedOn\": \"2024-09-09T21:12:33.2531658Z\",\r\n \"createdBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"updatedBy\": \"2ffe2392-0a52-4093-b041-66b10ebc8317\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/b5c5043d-0d03-4e87-a5ff-74961fb5fc62\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b5c5043d-0d03-4e87-a5ff-74961fb5fc62\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0034c645-cd1a-45a2-9f68-21c21eba9995\",\r\n \"principalId\": \"0628a06b-881e-416d-827c-43b7f897368a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-02-03T20:09:15.4652511Z\",\r\n \"updatedOn\": \"2025-02-03T20:09:15.4652511Z\",\r\n \"createdBy\": \"319b9a8b-31b0-413f-8826-b1135db75bcb\",\r\n \"updatedBy\": \"319b9a8b-31b0-413f-8826-b1135db75bcb\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/9b3ef06e-d4ec-4749-9187-2220bad2f845\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9b3ef06e-d4ec-4749-9187-2220bad2f845\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"principalId\": \"7795c402-abeb-42e9-a027-b924b28c67bb\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-02-08T12:33:42.6662324Z\",\r\n \"updatedOn\": \"2025-02-11T13:31:01.3012787Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/c522c42b-842f-538e-b4bb-7a43ba597d28\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c522c42b-842f-538e-b4bb-7a43ba597d28\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"principalId\": \"8f57971f-cf33-4610-ad69-5671e1eb0420\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-02-09T00:45:40.2106127Z\",\r\n \"updatedOn\": \"2025-02-12T01:41:31.9037195Z\",\r\n \"createdBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"updatedBy\": \"54e5cbe7-4642-409f-a296-a6d41d03ce38\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4e15e659-ab5f-57ed-8187-bd5f3b98edbc\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4e15e659-ab5f-57ed-8187-bd5f3b98edbc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/0034c645-cd1a-45a2-9f68-21c21eba9995\",\r\n \"principalId\": \"832fedb9-9185-40cb-a432-490c7306801a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2025-02-10T23:30:15.2821592Z\",\r\n \"updatedOn\": \"2025-02-10T23:30:15.2821592Z\",\r\n \"createdBy\": \"ecb3ca67-89e4-4ec6-be01-19241f802632\",\r\n \"updatedBy\": \"ecb3ca67-89e4-4ec6-be01-19241f802632\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/24e5c634-c54b-407f-aa57-2284cf332331\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"24e5c634-c54b-407f-aa57-2284cf332331\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"ce2366a6-64d7-441b-939c-c9d23f91cccd\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2020-03-12T20:43:06.5941189Z\",\r\n \"updatedOn\": \"2020-03-12T20:43:06.5941189Z\",\r\n \"createdBy\": \"606f48c8-d219-4875-991d-ae6befaf0756\",\r\n \"updatedBy\": \"606f48c8-d219-4875-991d-ae6befaf0756\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ad9e2cd7-0ff7-4931-9b17-656c8f17934b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b325d340-14f0-412a-8753-4868e914902f\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-04-17T22:25:31.4437352Z\",\r\n \"updatedOn\": \"2024-04-17T22:25:31.4437352Z\",\r\n \"createdBy\": \"b3d441fb-e998-494d-a72b-9c24eabd0cde\",\r\n \"updatedBy\": \"b3d441fb-e998-494d-a72b-9c24eabd0cde\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/6aa7e5e7-bbdf-42ec-ab01-21cf9585ed97\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6aa7e5e7-bbdf-42ec-ab01-21cf9585ed97\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"274871fc-ab7d-4860-99b6-e4ceff4883bb\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-05-30T21:35:32.6579323Z\",\r\n \"updatedOn\": \"2024-05-30T21:35:32.6579323Z\",\r\n \"createdBy\": \"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa\",\r\n \"updatedBy\": \"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/f9085458-9261-4821-b4b0-c6ddba2af3d1\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f9085458-9261-4821-b4b0-c6ddba2af3d1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"principalId\": \"ff29f09e-a8be-4afc-b627-d02fcaf6c28d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-08-14T19:04:17.9473811Z\",\r\n \"updatedOn\": \"2024-08-14T19:04:17.9473811Z\",\r\n \"createdBy\": \"b3d441fb-e998-494d-a72b-9c24eabd0cde\",\r\n \"updatedBy\": \"b3d441fb-e998-494d-a72b-9c24eabd0cde\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/73f1e96c-b727-4776-80a5-02dbe581a565\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"73f1e96c-b727-4776-80a5-02dbe581a565\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-02-21T22:32:46.2324804Z\",\r\n \"updatedOn\": \"2023-02-21T22:32:46.2324804Z\",\r\n \"createdBy\": \"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e\",\r\n \"updatedBy\": \"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"2dd1ea73-4024-489e-83a4-45cb3e962f69\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2023-05-04T20:23:16.3808369Z\",\r\n \"updatedOn\": \"2023-05-04T20:23:16.3808369Z\",\r\n \"createdBy\": \"fa00c2de-57d5-4527-9254-4d513f482d0a\",\r\n \"updatedBy\": \"fa00c2de-57d5-4527-9254-4d513f482d0a\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"59109645-7b2b-4278-831a-2e4627ec603d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"principalId\": \"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-01-17T20:03:31.9828324Z\",\r\n \"updatedOn\": \"2024-01-17T20:03:31.9828324Z\",\r\n \"createdBy\": \"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa\",\r\n \"updatedBy\": \"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/fe395c31-2241-4055-9536-d814d39b801b\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fe395c31-2241-4055-9536-d814d39b801b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"80bef37c-0c59-474b-964a-e9eb09f913f5\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"condition\": null,\r\n \"conditionVersion\": null,\r\n \"createdOn\": \"2024-09-27T18:17:31.8607675Z\",\r\n \"updatedOn\": \"2024-09-27T18:17:31.8607675Z\",\r\n \"createdBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"updatedBy\": \"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2\",\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/97983db6-32d1-49aa-ac4b-45452f2c7913\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"97983db6-32d1-49aa-ac4b-45452f2c7913\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f" + } +} \ No newline at end of file diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index b40924695b0a..13025befc8cf 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Supported getting role assignments at the exact scope via `-AtScope` for `Get-AzRoleAssignment`. ## Version 7.8.1 * Updated to use bicep parameter --documentation-uri instead of the deprecated --documentationUri diff --git a/src/Resources/Resources/Models.Authorization/AuthorizationClient.cs b/src/Resources/Resources/Models.Authorization/AuthorizationClient.cs index bf50c62017a2..fab7d30b9cc6 100644 --- a/src/Resources/Resources/Models.Authorization/AuthorizationClient.cs +++ b/src/Resources/Resources/Models.Authorization/AuthorizationClient.cs @@ -192,7 +192,7 @@ public List FilterRoleAssignments(FilterRoleAssignmentsOptions // https://learn.microsoft.com/en-us/azure/role-based-access-control/role-assignments-list-rest // https://learn.microsoft.com/en-us/azure/role-based-access-control/elevate-access-global-admin#elevate-access-for-a-global-administrator-1 // scope is path variable in REST API. When scope is '/', query '$filter=atScope()' is required, or else it will throw BadRequest. - Boolean isRootScope = "/".Equals(options.Scope); + Boolean needsAtScope = "/".Equals(options.Scope) || options.AtScope; Boolean needsFilterPrincipalId = false; if (options.ADObjectFilter?.HasFilter ?? false) { @@ -215,7 +215,7 @@ public List FilterRoleAssignments(FilterRoleAssignmentsOptions } principalId = adObject.Id.ToString(); - if (isRootScope) + if (needsAtScope) { odataQuery = new ODataQuery(f => (f.AtScope() && f.AssignedTo(principalId))); } @@ -227,7 +227,7 @@ public List FilterRoleAssignments(FilterRoleAssignmentsOptions else { principalId = string.IsNullOrEmpty(options.ADObjectFilter.Id) ? adObject.Id.ToString() : options.ADObjectFilter.Id; - if (isRootScope) + if (needsAtScope) { /* $filter = principalId + eq + '{objectId}' Lists role assignments for a specified user, group, or service principal. * If you use atScope() and principalId+eq + '{objectId}' together, it will throw exception because the API doesn't allow it. @@ -243,7 +243,7 @@ public List FilterRoleAssignments(FilterRoleAssignmentsOptions } } } - else if (isRootScope) + else if (needsAtScope) { odataQuery = new ODataQuery(f => f.AtScope()); } diff --git a/src/Resources/Resources/Models.Authorization/FilterRoleAssignmentsOptions.cs b/src/Resources/Resources/Models.Authorization/FilterRoleAssignmentsOptions.cs index f44c53ef93fe..a843fe4ce605 100644 --- a/src/Resources/Resources/Models.Authorization/FilterRoleAssignmentsOptions.cs +++ b/src/Resources/Resources/Models.Authorization/FilterRoleAssignmentsOptions.cs @@ -58,6 +58,8 @@ public string Scope public ADObjectFilterOptions ADObjectFilter { get; set; } + public bool AtScope { get; set; } + public bool ExpandPrincipalGroups { get; set; } public bool IncludeClassicAdministrators { get; set; } diff --git a/src/Resources/Resources/RoleAssignments/GetAzureRoleAssignmentCommand.cs b/src/Resources/Resources/RoleAssignments/GetAzureRoleAssignmentCommand.cs index 9a87836f99eb..4212e2c1bce8 100644 --- a/src/Resources/Resources/RoleAssignments/GetAzureRoleAssignmentCommand.cs +++ b/src/Resources/Resources/RoleAssignments/GetAzureRoleAssignmentCommand.cs @@ -178,6 +178,18 @@ public class GetAzureRoleAssignmentCommand : ResourcesBaseCmdlet [ScopeCompleter] public string Scope { get; set; } + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.Scope, + HelpMessage = "If specified, lists role assignments for only the specified scope, not including the role assignments at subscopes.")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ScopeWithObjectId, + HelpMessage = "If specified, lists role assignments for only the specified scope, not including the role assignments at subscopes.")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ScopeWithSignInName, + HelpMessage = "If specified, lists role assignments for only the specified scope, not including the role assignments at subscopes.")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ScopeWithSPN, + HelpMessage = "If specified, lists role assignments for only the specified scope, not including the role assignments at subscopes.")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.RoleIdWithScopeAndObjectId, + HelpMessage = "If specified, lists role assignments for only the specified scope, not including the role assignments at subscopes.")] + public SwitchParameter AtScope { get; set; } + [Parameter(Mandatory = false, ParameterSetName = ParameterSet.ObjectId, HelpMessage = "If specified, returns role assignments directly assigned to the principal as well as assignments to the principal's groups (transitive). Supported only for User Principals.")] [Parameter(Mandatory = false, ParameterSetName = ParameterSet.SignInName, @@ -245,8 +257,9 @@ public override void ExecuteCmdlet() ResourceType = ResourceType, Subscription = DefaultProfile.DefaultContext.Subscription?.Id?.ToString() }, - ExpandPrincipalGroups = ExpandPrincipalGroups.IsPresent, - IncludeClassicAdministrators = IncludeClassicAdministrators.IsPresent, + AtScope = AtScope, + ExpandPrincipalGroups = ExpandPrincipalGroups, + IncludeClassicAdministrators = IncludeClassicAdministrators, }; if (options.Scope == null && options.ResourceIdentifier.Subscription == null) diff --git a/src/Resources/Resources/help/Get-AzRoleAssignment.md b/src/Resources/Resources/help/Get-AzRoleAssignment.md index 3aebf1176761..8bf535cfb632 100644 --- a/src/Resources/Resources/help/Get-AzRoleAssignment.md +++ b/src/Resources/Resources/help/Get-AzRoleAssignment.md @@ -29,21 +29,21 @@ Please notice that this cmdlet will mark `ObjectType` as `Unknown` in output if ``` Get-AzRoleAssignment [-RoleDefinitionName ] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ObjectIdParameterSet ``` Get-AzRoleAssignment -ObjectId [-RoleDefinitionName ] [-ExpandPrincipalGroups] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ResourceGroupWithObjectIdParameterSet ``` Get-AzRoleAssignment -ObjectId -ResourceGroupName [-RoleDefinitionName ] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ResourceWithObjectIdParameterSet @@ -51,28 +51,28 @@ Get-AzRoleAssignment -ObjectId -ResourceGroupName [-RoleDefini Get-AzRoleAssignment -ObjectId -ResourceGroupName -ResourceName -ResourceType [-ParentResource ] [-RoleDefinitionName ] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ScopeWithObjectIdParameterSet ``` -Get-AzRoleAssignment -ObjectId [-RoleDefinitionName ] -Scope +Get-AzRoleAssignment -ObjectId [-RoleDefinitionName ] -Scope [-AtScope] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### RoleIdWithScopeAndObjectIdParameterSet ``` -Get-AzRoleAssignment [-ObjectId ] -RoleDefinitionId [-Scope ] +Get-AzRoleAssignment [-ObjectId ] -RoleDefinitionId [-Scope ] [-AtScope] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ResourceGroupWithSignInNameParameterSet ``` Get-AzRoleAssignment -SignInName -ResourceGroupName [-RoleDefinitionName ] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ResourceWithSignInNameParameterSet @@ -80,28 +80,28 @@ Get-AzRoleAssignment -SignInName -ResourceGroupName [-RoleDefi Get-AzRoleAssignment -SignInName -ResourceGroupName -ResourceName -ResourceType [-ParentResource ] [-RoleDefinitionName ] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ScopeWithSignInNameParameterSet ``` -Get-AzRoleAssignment -SignInName [-RoleDefinitionName ] -Scope +Get-AzRoleAssignment -SignInName [-RoleDefinitionName ] -Scope [-AtScope] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### SignInNameParameterSet ``` Get-AzRoleAssignment -SignInName [-RoleDefinitionName ] [-ExpandPrincipalGroups] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ResourceGroupWithSPNParameterSet ``` Get-AzRoleAssignment -ServicePrincipalName -ResourceGroupName [-RoleDefinitionName ] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ResourceWithSPNParameterSet @@ -109,28 +109,28 @@ Get-AzRoleAssignment -ServicePrincipalName -ResourceGroupName Get-AzRoleAssignment -ServicePrincipalName -ResourceGroupName -ResourceName -ResourceType [-ParentResource ] [-RoleDefinitionName ] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ScopeWithSPNParameterSet ``` -Get-AzRoleAssignment -ServicePrincipalName [-RoleDefinitionName ] -Scope +Get-AzRoleAssignment -ServicePrincipalName [-RoleDefinitionName ] -Scope [-AtScope] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### SPNParameterSet ``` Get-AzRoleAssignment -ServicePrincipalName [-RoleDefinitionName ] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ResourceGroupParameterSet ``` Get-AzRoleAssignment -ResourceGroupName [-RoleDefinitionName ] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ResourceParameterSet @@ -138,14 +138,14 @@ Get-AzRoleAssignment -ResourceGroupName [-RoleDefinitionName ] Get-AzRoleAssignment -ResourceGroupName -ResourceName -ResourceType [-ParentResource ] [-RoleDefinitionName ] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ### ScopeParameterSet ``` -Get-AzRoleAssignment [-RoleDefinitionName ] -Scope [-IncludeClassicAdministrators] +Get-AzRoleAssignment [-RoleDefinitionName ] -Scope [-AtScope] [-IncludeClassicAdministrators] [-SkipClientSideScopeValidation] [-DefaultProfile ] - [] + [-ProgressAction ] [] ``` ## DESCRIPTION @@ -213,6 +213,21 @@ Gets role assignments for the specified Service Principal using Get-AzAdServiceP ## PARAMETERS +### -AtScope +If specified, lists role assignments for only the specified scope, not including the role assignments at subscopes. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: ScopeWithObjectIdParameterSet, RoleIdWithScopeAndObjectIdParameterSet, ScopeWithSignInNameParameterSet, ScopeWithSPNParameterSet, ScopeParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with azure @@ -303,6 +318,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: System.Management.Automation.ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The resource group name. Lists role assignments that are effective at the specified resource group.