From 1181051d80341f831e10d60a974bf8c256547a54 Mon Sep 17 00:00:00 2001 From: jiasli <4003950+jiasli@users.noreply.github.com> Date: Thu, 27 Mar 2025 13:46:38 +0800 Subject: [PATCH] fill-principal-name --- .../azure/cli/command_modules/role/_help.py | 2 + .../azure/cli/command_modules/role/_params.py | 8 + .../azure/cli/command_modules/role/custom.py | 34 +- .../test_role_assignment_no_graph.yaml | 2002 +++++++++++++++++ .../role/tests/latest/test_role.py | 25 + 5 files changed, 2055 insertions(+), 16 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_role_assignment_no_graph.yaml diff --git a/src/azure-cli/azure/cli/command_modules/role/_help.py b/src/azure-cli/azure/cli/command_modules/role/_help.py index c2b34bc3459..42915529882 100644 --- a/src/azure-cli/azure/cli/command_modules/role/_help.py +++ b/src/azure-cli/azure/cli/command_modules/role/_help.py @@ -800,6 +800,8 @@ text: az role assignment list --role Reader --scope /subscriptions/00000000-0000-0000-0000-000000000000 - name: List all role assignments of an assignee at the subscription scope. text: az role assignment list --assignee 00000000-0000-0000-0000-000000000000 --scope /subscriptions/00000000-0000-0000-0000-000000000000 + - name: List all role assignments with "Reader" role at the subscription scope, without filling principalName property + text: az role assignment list --role Reader --scope /subscriptions/00000000-0000-0000-0000-000000000000 --fill-principal-name false """ helps['role assignment list-changelogs'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/role/_params.py b/src/azure-cli/azure/cli/command_modules/role/_params.py index 228a310922a..73a9dcb66e5 100644 --- a/src/azure-cli/azure/cli/command_modules/role/_params.py +++ b/src/azure-cli/azure/cli/command_modules/role/_params.py @@ -340,6 +340,14 @@ def load_arguments(self, _): c.argument('assignment_name', name_arg_type, help='A GUID for the role assignment. It must be unique and different for each role assignment. If omitted, a new GUID is generated.') + with self.argument_context('role assignment list') as c: + c.argument('fill_principal_name', arg_type=get_three_state_flag(), + help="Query Microsoft Graph to get the assignee's userPrincipalName (for user), " + "servicePrincipalNames (for service principal) or displayName (for group), then fill " + "principalName property with it. " + "If the logged-in account has no permission or the machine has no network access to query " + "Microsoft Graph, set this flag to false to avoid warning or error.") + time_help = 'The {} of the query in the format of %Y-%m-%dT%H:%M:%SZ, e.g. 2000-12-31T12:59:59Z. Defaults to {}' with self.argument_context('role assignment list-changelogs') as c: c.argument('start_time', help=time_help.format('start time', '1 Hour prior to the current time')) diff --git a/src/azure-cli/azure/cli/command_modules/role/custom.py b/src/azure-cli/azure/cli/command_modules/role/custom.py index e57a30b4525..94e986fb2f1 100644 --- a/src/azure-cli/azure/cli/command_modules/role/custom.py +++ b/src/azure-cli/azure/cli/command_modules/role/custom.py @@ -234,7 +234,8 @@ def _create_role_assignment(cli_ctx, role, assignee, resource_group_name=None, s def list_role_assignments(cmd, assignee=None, role=None, resource_group_name=None, scope=None, include_inherited=False, - show_all=False, include_groups=False, include_classic_administrators=False): + show_all=False, include_groups=False, include_classic_administrators=False, + fill_principal_name=True): ''' :param include_groups: include extra assignments to the groups of which the user is a member(transitively). @@ -282,22 +283,23 @@ def list_role_assignments(cmd, assignee=None, role=None, resource_group_name=Non i['roleDefinitionName'] = None # the role definition might have been deleted # fill in principal names - principal_ids = set(worker.get_role_property(i, 'principalId') - for i in results if worker.get_role_property(i, 'principalId')) + if fill_principal_name: + principal_ids = set(worker.get_role_property(i, 'principalId') + for i in results if worker.get_role_property(i, 'principalId')) - if principal_ids: - try: - principals = _get_object_stubs(graph_client, principal_ids) - principal_dics = {i[ID]: _get_displayable_name(i) for i in principals} - - for i in [r for r in results if not r.get('principalName')]: - i['principalName'] = '' - if principal_dics.get(worker.get_role_property(i, 'principalId')): - worker.set_role_property(i, 'principalName', - principal_dics[worker.get_role_property(i, 'principalId')]) - except (HttpResponseError, GraphError) as ex: - # failure on resolving principal due to graph permission should not fail the whole thing - logger.info("Failed to resolve graph object information per error '%s'", ex) + if principal_ids: + try: + principals = _get_object_stubs(graph_client, principal_ids) + principal_dics = {i[ID]: _get_displayable_name(i) for i in principals} + + for i in [r for r in results if not r.get('principalName')]: + i['principalName'] = '' + if principal_dics.get(worker.get_role_property(i, 'principalId')): + worker.set_role_property(i, 'principalName', + principal_dics[worker.get_role_property(i, 'principalId')]) + except (HttpResponseError, GraphError) as ex: + # failure on resolving principal due to graph permission should not fail the whole thing + logger.info("Failed to resolve graph object information per error '%s'", ex) for r in results: if not r.get('additionalProperties'): # remove the useless "additionalProperties" diff --git a/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_role_assignment_no_graph.yaml b/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_role_assignment_no_graph.yaml new file mode 100644 index 00000000000..ef0d3aa4c2a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_role_assignment_no_graph.yaml @@ -0,0 +1,2002 @@ +interactions: +- request: + body: '{"location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json + ParameterSetName: + - -g -n --location + User-Agent: + - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.9 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_role_assign000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest000002?api-version=2023-01-31 + response: + body: + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_role_assign000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest000002","name":"clitest000002","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"a990f2a7-8d68-454f-b228-1e9557bc233d","clientId":"785a4ec1-67b2-42ed-b209-78ef91b54917"}}' + headers: + cache-control: + - no-cache + content-length: + - '449' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 27 Mar 2025 05:45:40 GMT + expires: + - '-1' + location: + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_role_assign000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/clitest000002 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=0d504196-1423-4569-9a6e-15149656f0ee/southeastasia/9f517eaa-62f4-428c-a1a5-53348257b48a + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: C2F99F0563A44FD99315048DC6E4A04C Ref B: MAA201060516037 Ref C: 2025-03-27T05:45:35Z' + status: + code: 201 + message: Created +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "a990f2a7-8d68-454f-b228-1e9557bc233d", "principalType": "ServicePrincipal"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - role assignment create + Connection: + - keep-alive + Content-Length: + - '270' + Content-Type: + - application/json + ParameterSetName: + - --assignee-object-id --assignee-principal-type --role --scope + User-Agent: + - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.9 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_role_assign000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"a990f2a7-8d68-454f-b228-1e9557bc233d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_role_assign000001","condition":null,"conditionVersion":null,"createdOn":"2025-03-27T05:45:41.7234164Z","updatedOn":"2025-03-27T05:45:42.7210631Z","createdBy":null,"updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_role_assign000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + headers: + cache-control: + - no-cache + content-length: + - '897' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 27 Mar 2025 05:45:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=0d504196-1423-4569-9a6e-15149656f0ee/southeastasia/a471e6cc-b871-4b25-b93a-de1ef8e8e5a4 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: E81797FD5C254D03887A7190B5EF7C5F Ref B: MAA201060515025 Ref C: 2025-03-27T05:45:41Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - role assignment list + Connection: + - keep-alive + ParameterSetName: + - --scope --fill-principal-name + User-Agent: + - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.9 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_role_assign000001/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2022-04-01 + response: + body: + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade","principalId":"9ac534f1-d577-4034-a32d-48de400dacbf","principalType":"User","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2020-03-19T04:06:32.7642459Z","updatedOn":"2020-03-19T04:06:32.7642459Z","createdBy":"9ac534f1-d577-4034-a32d-48de400dacbf","updatedBy":"9ac534f1-d577-4034-a32d-48de400dacbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/b4bdedde-4f10-4610-9201-2421bb032107","type":"Microsoft.Authorization/roleAssignments","name":"b4bdedde-4f10-4610-9201-2421bb032107"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"9ac534f1-d577-4034-a32d-48de400dacbf","principalType":"User","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2020-03-19T03:47:15.1734978Z","updatedOn":"2020-03-19T03:47:15.1734978Z","createdBy":"9ac534f1-d577-4034-a32d-48de400dacbf","updatedBy":"9ac534f1-d577-4034-a32d-48de400dacbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/888c7688-4ae3-406f-948b-fd569da173fc","type":"Microsoft.Authorization/roleAssignments","name":"888c7688-4ae3-406f-948b-fd569da173fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2020-01-29T13:27:35.7170489Z","updatedOn":"2020-01-29T13:27:35.7170489Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/b6899915-1e85-4406-aa1f-f346ec3ded50","type":"Microsoft.Authorization/roleAssignments","name":"b6899915-1e85-4406-aa1f-f346ec3ded50"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"b436a2b3-24c4-46f9-a79d-f9585a8d6f6e","principalType":"User","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2022-08-26T07:39:42.2647154Z","updatedOn":"2022-08-26T07:39:42.2647154Z","createdBy":"b436a2b3-24c4-46f9-a79d-f9585a8d6f6e","updatedBy":"b436a2b3-24c4-46f9-a79d-f9585a8d6f6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/db261a5f-96eb-4dee-b084-ad90a6951129","type":"Microsoft.Authorization/roleAssignments","name":"db261a5f-96eb-4dee-b084-ad90a6951129"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","principalType":"User","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2022-08-26T07:53:30.0028683Z","updatedOn":"2022-08-26T07:53:30.0028683Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/ff4807bb-511d-43f5-a3d1-850ee0a0faa8","type":"Microsoft.Authorization/roleAssignments","name":"ff4807bb-511d-43f5-a3d1-850ee0a0faa8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"32fe2882-ca97-44f9-8e0d-dfe916b9dfee","principalType":"User","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2020-10-20T08:31:00.3094805Z","updatedOn":"2020-10-20T08:31:00.3094805Z","createdBy":"32fe2882-ca97-44f9-8e0d-dfe916b9dfee","updatedBy":"32fe2882-ca97-44f9-8e0d-dfe916b9dfee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/f454d407-9a67-417f-937f-0d8eb72abfe7","type":"Microsoft.Authorization/roleAssignments","name":"f454d407-9a67-417f-937f-0d8eb72abfe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"cded80ac-7840-4070-a783-db73a7c3ee4c","principalType":"User","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2023-07-24T02:19:11.3232681Z","updatedOn":"2023-07-24T02:19:11.3232681Z","createdBy":"cded80ac-7840-4070-a783-db73a7c3ee4c","updatedBy":"cded80ac-7840-4070-a783-db73a7c3ee4c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/5511e71b-dce2-400c-b091-5b29304c86dd","type":"Microsoft.Authorization/roleAssignments","name":"5511e71b-dce2-400c-b091-5b29304c86dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2023-08-28T06:27:31.0373988Z","updatedOn":"2023-08-28T06:27:31.0373988Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/75cc3f27-e325-4eed-b8bb-f50babffe19e","type":"Microsoft.Authorization/roleAssignments","name":"75cc3f27-e325-4eed-b8bb-f50babffe19e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"2b7fa1bd-b817-45cb-9068-e416ce1125fa","principalType":"User","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2024-10-30T22:36:55.8798293Z","updatedOn":"2024-10-30T22:36:55.8798293Z","createdBy":"2b7fa1bd-b817-45cb-9068-e416ce1125fa","updatedBy":"2b7fa1bd-b817-45cb-9068-e416ce1125fa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/07f811f8-0534-47fb-aaaf-c68df1c53ada","type":"Microsoft.Authorization/roleAssignments","name":"07f811f8-0534-47fb-aaaf-c68df1c53ada"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"596c247a-9db0-4c20-8ddb-d944102067ac","principalType":"User","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2024-12-18T07:07:01.9207139Z","updatedOn":"2024-12-18T07:07:01.9207139Z","createdBy":"596c247a-9db0-4c20-8ddb-d944102067ac","updatedBy":"596c247a-9db0-4c20-8ddb-d944102067ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/abaeac3d-9cc9-4b5f-a7bd-e13cb84990c1","type":"Microsoft.Authorization/roleAssignments","name":"abaeac3d-9cc9-4b5f-a7bd-e13cb84990c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2025-02-18T08:42:28.9327012Z","updatedOn":"2025-02-18T08:42:28.9327012Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3f4c4bdc-1026-4501-86f8-5d65acc43253","type":"Microsoft.Authorization/roleAssignments","name":"3f4c4bdc-1026-4501-86f8-5d65acc43253"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3","principalId":"30601973-dcd6-4c4e-85e8-dc6e057238fa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-14T15:35:54.7519315Z","updatedOn":"2020-06-14T15:35:54.7519315Z","createdBy":"f0f844e0-d2fe-4aa3-8e2c-2e429618f305","updatedBy":"f0f844e0-d2fe-4aa3-8e2c-2e429618f305","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02d00457-a5a7-4da3-b12a-e944705f4170","type":"Microsoft.Authorization/roleAssignments","name":"02d00457-a5a7-4da3-b12a-e944705f4170"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"677a61e9-086e-4f13-986a-11aaedc31416","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-11-26T03:31:37.3848580Z","updatedOn":"2019-11-26T03:31:37.3848580Z","createdBy":"08cee9d4-f1ee-46a2-9dd1-7462196c9ac6","updatedBy":"08cee9d4-f1ee-46a2-9dd1-7462196c9ac6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aac8538d-8226-4b91-9232-03d3f3a40214","type":"Microsoft.Authorization/roleAssignments","name":"aac8538d-8226-4b91-9232-03d3f3a40214"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-07-26T04:16:43.3784273Z","updatedOn":"2019-07-26T04:16:43.3784273Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a567d42-8a33-4cad-9f7b-5299a16dc269","type":"Microsoft.Authorization/roleAssignments","name":"9a567d42-8a33-4cad-9f7b-5299a16dc269"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"32fe2882-ca97-44f9-8e0d-dfe916b9dfee","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-09-06T03:03:50.0740099Z","updatedOn":"2019-09-06T03:03:50.0740099Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/01c1fcc9-4df3-4107-832f-42f245309750","type":"Microsoft.Authorization/roleAssignments","name":"01c1fcc9-4df3-4107-832f-42f245309750"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"596c247a-9db0-4c20-8ddb-d944102067ac","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-10-25T08:06:17.3145960Z","updatedOn":"2019-10-25T08:06:17.3145960Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5383f6ae-0e25-43d5-a448-2fd0d2699d72","type":"Microsoft.Authorization/roleAssignments","name":"5383f6ae-0e25-43d5-a448-2fd0d2699d72"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-11-15T08:49:50.8762611Z","updatedOn":"2019-11-15T08:49:50.8762611Z","createdBy":"0a592c45-613e-4f1b-9023-7c4414fd53bf","updatedBy":"0a592c45-613e-4f1b-9023-7c4414fd53bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/233c612a-f4d8-41fb-bf58-8e2a587142df","type":"Microsoft.Authorization/roleAssignments","name":"233c612a-f4d8-41fb-bf58-8e2a587142df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-12-23T05:48:03.4970209Z","updatedOn":"2019-12-23T05:48:03.4970209Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8cbac001-17ff-4ba4-ade1-cbbb4924e6d6","type":"Microsoft.Authorization/roleAssignments","name":"8cbac001-17ff-4ba4-ade1-cbbb4924e6d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9ac534f1-d577-4034-a32d-48de400dacbf","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-12-04T03:06:42.9265284Z","updatedOn":"2019-12-04T03:06:42.9265284Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe0b9591-410f-4229-a288-98d8bfb7ffe5","type":"Microsoft.Authorization/roleAssignments","name":"fe0b9591-410f-4229-a288-98d8bfb7ffe5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade","principalId":"9ac534f1-d577-4034-a32d-48de400dacbf","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-19T04:01:23.9885462Z","updatedOn":"2020-03-19T04:01:23.9885462Z","createdBy":"9ac534f1-d577-4034-a32d-48de400dacbf","updatedBy":"9ac534f1-d577-4034-a32d-48de400dacbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a96438a6-6252-499b-b391-710446ac8ddb","type":"Microsoft.Authorization/roleAssignments","name":"a96438a6-6252-499b-b391-710446ac8ddb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-01-29T13:26:41.7796634Z","updatedOn":"2020-01-29T13:26:41.7796634Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/185c46f5-737c-4e7e-bdeb-5bafee91059d","type":"Microsoft.Authorization/roleAssignments","name":"185c46f5-737c-4e7e-bdeb-5bafee91059d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4559f5d9-0272-48bd-b6af-fde7f60744dc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-05T02:39:11.3496688Z","updatedOn":"2020-02-05T02:39:11.3496688Z","createdBy":"596c247a-9db0-4c20-8ddb-d944102067ac","updatedBy":"596c247a-9db0-4c20-8ddb-d944102067ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/108c3348-6445-49c8-8a02-1e9088373505","type":"Microsoft.Authorization/roleAssignments","name":"108c3348-6445-49c8-8a02-1e9088373505"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"60a5c23b-3773-41b6-b27f-74805f1d2d9c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-04T10:54:04.8614591Z","updatedOn":"2020-02-04T10:54:04.8614591Z","createdBy":"596c247a-9db0-4c20-8ddb-d944102067ac","updatedBy":"596c247a-9db0-4c20-8ddb-d944102067ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47ad8fd8-84be-48d1-8d7a-923163696cdd","type":"Microsoft.Authorization/roleAssignments","name":"47ad8fd8-84be-48d1-8d7a-923163696cdd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6aef5178-c2d2-41f6-a180-a296155ddf40","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-11-21T05:12:34.7950106Z","updatedOn":"2019-11-21T05:12:34.7950106Z","createdBy":"08cee9d4-f1ee-46a2-9dd1-7462196c9ac6","updatedBy":"08cee9d4-f1ee-46a2-9dd1-7462196c9ac6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5c83b39-f8a1-425f-984b-79e74f9ea79a","type":"Microsoft.Authorization/roleAssignments","name":"b5c83b39-f8a1-425f-984b-79e74f9ea79a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d61a178-3216-4ba7-bdc3-0fbc62b65ac9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-11-18T14:13:16.1350734Z","updatedOn":"2019-11-18T14:13:16.1350734Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/951d7466-f489-49df-88a3-9790ad814153","type":"Microsoft.Authorization/roleAssignments","name":"951d7466-f489-49df-88a3-9790ad814153"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7ecfd123-73a8-4c5a-b57b-df502769b4e7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-26T11:44:45.7387983Z","updatedOn":"2020-05-26T11:44:45.7387983Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a878581-11bf-4bd4-a7ab-b1fb64e555aa","type":"Microsoft.Authorization/roleAssignments","name":"6a878581-11bf-4bd4-a7ab-b1fb64e555aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"97885433-e8ee-463f-9db0-194661924999","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-05T09:50:17.9261390Z","updatedOn":"2020-03-05T09:50:17.9261390Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7934da9a-5ac8-4145-b917-d9e061fc10fc","type":"Microsoft.Authorization/roleAssignments","name":"7934da9a-5ac8-4145-b917-d9e061fc10fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ac49f0af-daf1-40c5-a7c5-976a80349806","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-02-25T19:29:43.0393638Z","updatedOn":"2019-02-25T19:29:43.0393638Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2990befc-9d32-467c-82e6-f6d4b9989731","type":"Microsoft.Authorization/roleAssignments","name":"2990befc-9d32-467c-82e6-f6d4b9989731"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9085a307-933c-452f-ae3a-9a8e13e68500","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-02T09:57:16.5579321Z","updatedOn":"2020-04-02T09:57:16.5579321Z","createdBy":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","updatedBy":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e74faf5-14cb-443a-a960-986c993decbc","type":"Microsoft.Authorization/roleAssignments","name":"1e74faf5-14cb-443a-a960-986c993decbc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f22c2b35-e81d-4fa5-afa4-e6178a257deb","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-12T13:25:32.1208963Z","updatedOn":"2020-05-12T13:25:32.1208963Z","createdBy":"6f4d4442-0894-47fe-a5e6-b84bfb47b944","updatedBy":"6f4d4442-0894-47fe-a5e6-b84bfb47b944","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a898ad94-406c-429f-8221-1d2e7b9cd5bb","type":"Microsoft.Authorization/roleAssignments","name":"a898ad94-406c-429f-8221-1d2e7b9cd5bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f802089b-0ae0-4e9b-984a-4e37eef96b0d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-01-19T05:51:35.7314750Z","updatedOn":"2020-01-19T05:51:35.7314750Z","createdBy":"3a401b8a-1d42-43d2-a38f-7ecd4e471273","updatedBy":"3a401b8a-1d42-43d2-a38f-7ecd4e471273","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cc61a45-01f3-45df-8661-e7bdd3cf0ef5","type":"Microsoft.Authorization/roleAssignments","name":"3cc61a45-01f3-45df-8661-e7bdd3cf0ef5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ee38ef12-23d7-4595-8f6f-b4aaa15933f9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-01T04:46:10.4023148Z","updatedOn":"2020-07-01T04:46:10.4023148Z","createdBy":"9bc33702-a011-4e3b-80f7-927356668049","updatedBy":"9bc33702-a011-4e3b-80f7-927356668049","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d3f0718-3404-4f68-b88f-01d3852d40c2","type":"Microsoft.Authorization/roleAssignments","name":"6d3f0718-3404-4f68-b88f-01d3852d40c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a74e6464-e4c7-4475-8048-50c410f91351","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-24T03:25:05.9394092Z","updatedOn":"2020-09-24T03:25:05.9394092Z","createdBy":"31e600e0-d7ce-4e98-a927-19bb30042e44","updatedBy":"31e600e0-d7ce-4e98-a927-19bb30042e44","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fdee4f9-21e6-40b9-ae41-7254ffe58cc5","type":"Microsoft.Authorization/roleAssignments","name":"9fdee4f9-21e6-40b9-ae41-7254ffe58cc5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-23T08:44:03.4551275Z","updatedOn":"2020-10-23T08:44:03.4551275Z","createdBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","updatedBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7d69f79a-e8d0-4e57-9c40-79a122d65804","type":"Microsoft.Authorization/roleAssignments","name":"7d69f79a-e8d0-4e57-9c40-79a122d65804"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-06T02:18:40.9737048Z","updatedOn":"2020-11-06T02:18:40.9737048Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d082c74d-1f16-4982-918f-e5859094710c","type":"Microsoft.Authorization/roleAssignments","name":"d082c74d-1f16-4982-918f-e5859094710c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4a7ed004-30ec-4831-b20e-8050c1d6f145","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-10T02:05:28.8830216Z","updatedOn":"2020-12-10T02:05:28.8830216Z","createdBy":"3a401b8a-1d42-43d2-a38f-7ecd4e471273","updatedBy":"3a401b8a-1d42-43d2-a38f-7ecd4e471273","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd91dbfc-9507-44f0-b01f-7b1f417730c8","type":"Microsoft.Authorization/roleAssignments","name":"dd91dbfc-9507-44f0-b01f-7b1f417730c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"645a92a9-52a9-4c37-a121-ce82ab6db963","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-16T06:29:13.5894715Z","updatedOn":"2020-12-16T06:29:13.5894715Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5ed517f8-7fce-45f2-b312-16f65e6a96c4","type":"Microsoft.Authorization/roleAssignments","name":"5ed517f8-7fce-45f2-b312-16f65e6a96c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"58c34d6c-4ada-452c-829d-aba2ab37fb19","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-17T09:31:40.2111590Z","updatedOn":"2020-12-17T09:31:40.2111590Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f4488a0-9b5e-43a8-badd-511bcc833f72","type":"Microsoft.Authorization/roleAssignments","name":"7f4488a0-9b5e-43a8-badd-511bcc833f72"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7fbddebf-dcbe-45cd-adbe-676cb301165a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-28T06:32:08.7322353Z","updatedOn":"2020-12-28T06:32:08.7322353Z","createdBy":"596c247a-9db0-4c20-8ddb-d944102067ac","updatedBy":"596c247a-9db0-4c20-8ddb-d944102067ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9af2a45c-fb53-4938-855d-fe9e7b167118","type":"Microsoft.Authorization/roleAssignments","name":"9af2a45c-fb53-4938-855d-fe9e7b167118"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ce38b9a5-8387-45a1-8202-feb3211711d8","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-01-11T07:29:57.4447654Z","updatedOn":"2021-01-11T07:29:57.4447654Z","createdBy":"596c247a-9db0-4c20-8ddb-d944102067ac","updatedBy":"596c247a-9db0-4c20-8ddb-d944102067ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65ac10c9-b53c-4862-b642-2481647b448f","type":"Microsoft.Authorization/roleAssignments","name":"65ac10c9-b53c-4862-b642-2481647b448f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bf0feb5c-e925-4e0d-970a-f7037509add4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-07T08:22:42.4938831Z","updatedOn":"2021-02-07T08:22:42.4938831Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef5ae843-93fe-4619-82da-286d3c6bd9ea","type":"Microsoft.Authorization/roleAssignments","name":"ef5ae843-93fe-4619-82da-286d3c6bd9ea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-16T06:02:07.8233627Z","updatedOn":"2021-03-16T06:02:07.8233627Z","createdBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","updatedBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f0eea58-ac85-4859-bd79-16f669445dfc","type":"Microsoft.Authorization/roleAssignments","name":"2f0eea58-ac85-4859-bd79-16f669445dfc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d206c77a-3453-4ec5-abd5-e2e1eabe9674","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-21T05:56:18.4526535Z","updatedOn":"2021-03-21T05:56:18.4526535Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7316735b-f7c5-4e26-b537-fde91260ac90","type":"Microsoft.Authorization/roleAssignments","name":"7316735b-f7c5-4e26-b537-fde91260ac90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"810a4268-fc7b-484a-9265-d74be53e200f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-10T09:42:50.7467613Z","updatedOn":"2021-05-10T09:42:50.7467613Z","createdBy":"2f153a9e-5be9-4f43-abd2-04561777c8b0","updatedBy":"2f153a9e-5be9-4f43-abd2-04561777c8b0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4905d9ce-36da-4b02-b1d8-c8fbbc7cbf01","type":"Microsoft.Authorization/roleAssignments","name":"4905d9ce-36da-4b02-b1d8-c8fbbc7cbf01"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f24d75c3-0cef-4ddb-a3a9-198a52c0edf6","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-02T02:25:11.7772285Z","updatedOn":"2021-06-02T02:25:11.7772285Z","createdBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c","updatedBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/763804e1-afe1-4bd5-9874-9bb04dc840e9","type":"Microsoft.Authorization/roleAssignments","name":"763804e1-afe1-4bd5-9874-9bb04dc840e9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"181c08fa-7ac8-48a6-a869-342ab74566a4","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-07T07:53:07.9267881Z","updatedOn":"2020-07-07T07:53:07.9267881Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb1f995e-258c-4174-9f1f-b21038b6fe15","type":"Microsoft.Authorization/roleAssignments","name":"cb1f995e-258c-4174-9f1f-b21038b6fe15"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"181c08fa-7ac8-48a6-a869-342ab74566a4","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-07T07:53:53.3178813Z","updatedOn":"2020-07-07T07:53:53.3178813Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/300179b3-b4bc-4d43-a800-14a538c341f2","type":"Microsoft.Authorization/roleAssignments","name":"300179b3-b4bc-4d43-a800-14a538c341f2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"181c08fa-7ac8-48a6-a869-342ab74566a4","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-24T03:54:19.5994989Z","updatedOn":"2020-07-24T03:54:19.5994989Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dc91700c-9959-4179-80b7-f2bfb957d4ec","type":"Microsoft.Authorization/roleAssignments","name":"dc91700c-9959-4179-80b7-f2bfb957d4ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T08:52:51.3842219Z","updatedOn":"2022-10-06T08:52:51.3842219Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a70f15aa-d53d-4cd9-9889-43b4f27f2e83","type":"Microsoft.Authorization/roleAssignments","name":"a70f15aa-d53d-4cd9-9889-43b4f27f2e83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b64e21ea-ac4e-4cdf-9dc9-5b892992bee7","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T08:53:23.7749142Z","updatedOn":"2022-10-06T08:53:23.7749142Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/44e66749-08c0-484b-98bb-6f289966af6e","type":"Microsoft.Authorization/roleAssignments","name":"44e66749-08c0-484b-98bb-6f289966af6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6960efce-2ac6-491b-8a59-13975ca713be","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-20T05:30:55.3887151Z","updatedOn":"2022-10-20T05:30:55.3887151Z","createdBy":"ba8d7935-be2f-489e-9e16-4936597119af","updatedBy":"ba8d7935-be2f-489e-9e16-4936597119af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd4998bd-874d-4b8a-a348-a7d9b18b83c0","type":"Microsoft.Authorization/roleAssignments","name":"bd4998bd-874d-4b8a-a348-a7d9b18b83c0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"525e072a-0267-46e6-8c2d-8fec642b5681","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T05:02:16.4976256Z","updatedOn":"2022-10-26T05:02:16.4976256Z","createdBy":"2e0b6384-0ba9-4f6e-9a98-4464a152ed54","updatedBy":"2e0b6384-0ba9-4f6e-9a98-4464a152ed54","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/525e072a-0267-46e6-8c2d-8fec642b5681","type":"Microsoft.Authorization/roleAssignments","name":"525e072a-0267-46e6-8c2d-8fec642b5681"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-16T06:33:57.3259195Z","updatedOn":"2022-11-16T06:33:57.3259195Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d87a3f-b87e-47c2-9723-e13cf0d573e3","type":"Microsoft.Authorization/roleAssignments","name":"d2d87a3f-b87e-47c2-9723-e13cf0d573e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/12338af0-0e69-4776-bea7-57ae8d297424","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-16T07:35:18.4990022Z","updatedOn":"2022-11-16T07:35:18.4990022Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a79dea4c-bab6-4ccb-b3e9-89dde257100b","type":"Microsoft.Authorization/roleAssignments","name":"a79dea4c-bab6-4ccb-b3e9-89dde257100b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"18fdec2a-581a-4056-ba2b-75dab6752a8f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-20T06:04:05.0329324Z","updatedOn":"2022-11-20T06:04:05.0329324Z","createdBy":"2b7fa1bd-b817-45cb-9068-e416ce1125fa","updatedBy":"2b7fa1bd-b817-45cb-9068-e416ce1125fa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/216a54fb-8689-45a3-b8b4-bc35a8227ad1","type":"Microsoft.Authorization/roleAssignments","name":"216a54fb-8689-45a3-b8b4-bc35a8227ad1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1cc9cff1-b993-4d9b-adc5-6e6220063e2a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-25T06:48:06.5401178Z","updatedOn":"2022-11-25T06:48:06.5401178Z","createdBy":"6b30bdc6-696a-46fb-82d7-739c2fb147b7","updatedBy":"6b30bdc6-696a-46fb-82d7-739c2fb147b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ad866f2-a8c5-4f95-8f58-68b1fbd2ac4e","type":"Microsoft.Authorization/roleAssignments","name":"9ad866f2-a8c5-4f95-8f58-68b1fbd2ac4e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9f1f5b19-b155-4c85-819e-bff5422ec9d4","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-30T06:19:26.7288923Z","updatedOn":"2022-11-30T06:19:26.7288923Z","createdBy":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","updatedBy":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a2b3725-840e-4e0c-873a-7a18a127de62","type":"Microsoft.Authorization/roleAssignments","name":"0a2b3725-840e-4e0c-873a-7a18a127de62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9db7ba9d-a627-4f35-a548-c77024d77c32","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T06:40:18.1471540Z","updatedOn":"2023-01-17T06:40:18.1471540Z","createdBy":"ba8d7935-be2f-489e-9e16-4936597119af","updatedBy":"ba8d7935-be2f-489e-9e16-4936597119af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05f4ea26-34c5-44ad-85a7-f8e2fa4251f5","type":"Microsoft.Authorization/roleAssignments","name":"05f4ea26-34c5-44ad-85a7-f8e2fa4251f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ba521a07-6bb9-4228-b1f6-1236178fdc2d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T07:43:29.3532104Z","updatedOn":"2023-01-17T07:43:29.3532104Z","createdBy":"ba8d7935-be2f-489e-9e16-4936597119af","updatedBy":"ba8d7935-be2f-489e-9e16-4936597119af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fbbf124-947a-4a17-b55e-0e5d4df669be","type":"Microsoft.Authorization/roleAssignments","name":"8fbbf124-947a-4a17-b55e-0e5d4df669be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"abdd745a-b6de-4705-bc7b-2d59044f04b6","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-18T08:30:25.8833288Z","updatedOn":"2023-01-18T08:30:25.8833288Z","createdBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","updatedBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ce6e5f6-2c1b-42ab-a6aa-202af8f26384","type":"Microsoft.Authorization/roleAssignments","name":"1ce6e5f6-2c1b-42ab-a6aa-202af8f26384"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"abdd745a-b6de-4705-bc7b-2d59044f04b6","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T09:03:34.4158876Z","updatedOn":"2023-02-10T09:03:34.4158876Z","createdBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","updatedBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/636704d2-b83c-487c-8dfc-2d48f1ee18fd","type":"Microsoft.Authorization/roleAssignments","name":"636704d2-b83c-487c-8dfc-2d48f1ee18fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"abdd745a-b6de-4705-bc7b-2d59044f04b6","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T09:05:49.8997863Z","updatedOn":"2023-02-10T09:05:49.8997863Z","createdBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","updatedBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/823d886e-7ee7-4417-9f40-bf26680e0936","type":"Microsoft.Authorization/roleAssignments","name":"823d886e-7ee7-4417-9f40-bf26680e0936"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"abdd745a-b6de-4705-bc7b-2d59044f04b6","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T09:06:24.1887313Z","updatedOn":"2023-02-10T09:06:24.1887313Z","createdBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","updatedBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da2cc3a8-f18b-434a-bfe5-4badb225f971","type":"Microsoft.Authorization/roleAssignments","name":"da2cc3a8-f18b-434a-bfe5-4badb225f971"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/19e7f393-937e-4f77-808e-94535e297925","principalId":"abdd745a-b6de-4705-bc7b-2d59044f04b6","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T09:09:01.6033096Z","updatedOn":"2023-02-10T09:09:01.6033096Z","createdBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","updatedBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca0e1aa3-d0d1-495b-9421-c06094ec3b1a","type":"Microsoft.Authorization/roleAssignments","name":"ca0e1aa3-d0d1-495b-9421-c06094ec3b1a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3","principalId":"abdd745a-b6de-4705-bc7b-2d59044f04b6","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T09:09:29.7106350Z","updatedOn":"2023-02-10T09:09:29.7106350Z","createdBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","updatedBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/024233a8-9157-46c9-8f2c-31c432a3625f","type":"Microsoft.Authorization/roleAssignments","name":"024233a8-9157-46c9-8f2c-31c432a3625f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/76199698-9eea-4c19-bc75-cec21354c6b6","principalId":"abdd745a-b6de-4705-bc7b-2d59044f04b6","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T09:09:53.1187998Z","updatedOn":"2023-02-10T09:09:53.1187998Z","createdBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","updatedBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5814f66c-379c-4938-bcad-3da2950682f1","type":"Microsoft.Authorization/roleAssignments","name":"5814f66c-379c-4938-bcad-3da2950682f1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"abdd745a-b6de-4705-bc7b-2d59044f04b6","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T09:13:30.7585729Z","updatedOn":"2023-03-10T09:13:30.7585729Z","createdBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","updatedBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/066bc53e-977e-4a79-875c-337ace49b226","type":"Microsoft.Authorization/roleAssignments","name":"066bc53e-977e-4a79-875c-337ace49b226"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7264617-510b-434b-a828-9731dc254ea7","principalId":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-04T09:59:28.4231313Z","updatedOn":"2023-04-04T09:59:28.4231313Z","createdBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","updatedBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c56035d4-432a-4004-86a0-fb5bc54e5900","type":"Microsoft.Authorization/roleAssignments","name":"c56035d4-432a-4004-86a0-fb5bc54e5900"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb","principalId":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-06T07:20:08.3502424Z","updatedOn":"2023-04-06T07:20:08.3502424Z","createdBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","updatedBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a5107e1-57d1-4bde-b65d-743cfdbb3909","type":"Microsoft.Authorization/roleAssignments","name":"3a5107e1-57d1-4bde-b65d-743cfdbb3909"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T09:29:12.4793661Z","updatedOn":"2023-04-17T09:29:12.4793661Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a1e3f12-7762-4150-84ce-8841f2631b25","type":"Microsoft.Authorization/roleAssignments","name":"7a1e3f12-7762-4150-84ce-8841f2631b25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5c83a1c2-870c-4966-8003-c50daca699fa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-25T08:57:19.8408729Z","updatedOn":"2023-04-25T08:57:19.8408729Z","createdBy":"ba8d7935-be2f-489e-9e16-4936597119af","updatedBy":"ba8d7935-be2f-489e-9e16-4936597119af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6d2a2a1-290c-4d05-8b90-9d13bc6306b9","type":"Microsoft.Authorization/roleAssignments","name":"e6d2a2a1-290c-4d05-8b90-9d13bc6306b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0f876fc3-c749-4607-ad50-c13ef1569cea","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-27T06:03:09.1199422Z","updatedOn":"2023-04-27T06:03:09.1199422Z","createdBy":"58c34d6c-4ada-452c-829d-aba2ab37fb19","updatedBy":"58c34d6c-4ada-452c-829d-aba2ab37fb19","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00be6446-d6f8-4861-aee0-3aeaa2d706f8","type":"Microsoft.Authorization/roleAssignments","name":"00be6446-d6f8-4861-aee0-3aeaa2d706f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18500a29-7fe2-46b2-a342-b16a415e101d","principalId":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T03:03:23.2013687Z","updatedOn":"2021-09-23T03:03:23.2013687Z","createdBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","updatedBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d704134-1973-4f4e-b748-f9601a076b80","type":"Microsoft.Authorization/roleAssignments","name":"2d704134-1973-4f4e-b748-f9601a076b80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2b7fa1bd-b817-45cb-9068-e416ce1125fa","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-26T02:14:07.6163770Z","updatedOn":"2021-09-26T02:14:07.6163770Z","createdBy":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","updatedBy":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/592f774e-eab6-469d-b90f-678381fd3e78","type":"Microsoft.Authorization/roleAssignments","name":"592f774e-eab6-469d-b90f-678381fd3e78"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1fadbba2-e5aa-4f4b-a279-fe6db770d253","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-18T07:00:26.3327772Z","updatedOn":"2021-10-18T07:00:26.3327772Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b106577-007a-42fd-bd33-71153129150d","type":"Microsoft.Authorization/roleAssignments","name":"7b106577-007a-42fd-bd33-71153129150d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T03:32:38.2364758Z","updatedOn":"2021-10-19T03:32:38.2364758Z","createdBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","updatedBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4de217a-fe5e-4054-b7a7-34a68fbe760f","type":"Microsoft.Authorization/roleAssignments","name":"e4de217a-fe5e-4054-b7a7-34a68fbe760f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"2e0b6384-0ba9-4f6e-9a98-4464a152ed54","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-22T06:10:28.4991572Z","updatedOn":"2021-10-22T06:10:28.4991572Z","createdBy":"a9668459-3905-4e76-a681-a1633c50f368","updatedBy":"a9668459-3905-4e76-a681-a1633c50f368","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdac5ab9-8f07-462a-827c-ad6942914fa2","type":"Microsoft.Authorization/roleAssignments","name":"fdac5ab9-8f07-462a-827c-ad6942914fa2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae","principalId":"819a17e1-a79f-4f24-a36f-f99dec3f09ca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T21:52:27.1141329Z","updatedOn":"2021-11-02T21:52:27.1141329Z","createdBy":"","updatedBy":"","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8f68fb50-53b1-434a-af0b-3a5828a12d96","type":"Microsoft.Authorization/roleAssignments","name":"8f68fb50-53b1-434a-af0b-3a5828a12d96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2cb55360-eabc-4956-8963-38a028c256d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-08T07:48:08.0835537Z","updatedOn":"2021-11-08T07:48:08.0835537Z","createdBy":"66e11f0f-d01d-47d4-893d-e536e117371e","updatedBy":"66e11f0f-d01d-47d4-893d-e536e117371e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/acfe41f1-bfd3-4b48-90aa-3a09b03ebf9e","type":"Microsoft.Authorization/roleAssignments","name":"acfe41f1-bfd3-4b48-90aa-3a09b03ebf9e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-10T03:14:49.9165625Z","updatedOn":"2021-11-10T03:14:49.9165625Z","createdBy":"a9668459-3905-4e76-a681-a1633c50f368","updatedBy":"a9668459-3905-4e76-a681-a1633c50f368","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f10c223-125c-406a-8d06-f455dfb203c3","type":"Microsoft.Authorization/roleAssignments","name":"6f10c223-125c-406a-8d06-f455dfb203c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d6f3b091-77da-49db-bdeb-42de109e6ef9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-15T03:09:54.8413893Z","updatedOn":"2021-11-15T03:09:54.8413893Z","createdBy":"2f153a9e-5be9-4f43-abd2-04561777c8b0","updatedBy":"2f153a9e-5be9-4f43-abd2-04561777c8b0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ec1aa809-0fe8-4ead-8890-32114fc451d1","type":"Microsoft.Authorization/roleAssignments","name":"ec1aa809-0fe8-4ead-8890-32114fc451d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d44a2991-98c6-47c3-b59b-2b30d72cfcc2","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T09:20:06.7875100Z","updatedOn":"2021-12-01T09:20:06.7875100Z","createdBy":"9ac534f1-d577-4034-a32d-48de400dacbf","updatedBy":"9ac534f1-d577-4034-a32d-48de400dacbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66b036af-e6eb-44de-8c1f-bb2f8a9251e8","type":"Microsoft.Authorization/roleAssignments","name":"66b036af-e6eb-44de-8c1f-bb2f8a9251e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"674368bb-7eaa-4100-aef7-138f65f50648","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-15T06:30:55.1314255Z","updatedOn":"2021-12-15T06:30:55.1314255Z","createdBy":"d64e4618-a7a0-41ff-a20c-1594fdde8c87","updatedBy":"d64e4618-a7a0-41ff-a20c-1594fdde8c87","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf5d3042-016c-4907-9638-05ffe38302c4","type":"Microsoft.Authorization/roleAssignments","name":"bf5d3042-016c-4907-9638-05ffe38302c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"128dfeb9-0b7e-4d6b-9ee4-ec2cdf7bb02d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-17T06:53:17.9472071Z","updatedOn":"2021-12-17T06:53:17.9472071Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31e69194-5728-4494-869c-de2943a86335","type":"Microsoft.Authorization/roleAssignments","name":"31e69194-5728-4494-869c-de2943a86335"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"15dfa334-adde-462c-8e2e-55b66ee698d2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-23T07:47:40.2600711Z","updatedOn":"2021-12-23T07:47:40.2600711Z","createdBy":"2f153a9e-5be9-4f43-abd2-04561777c8b0","updatedBy":"2f153a9e-5be9-4f43-abd2-04561777c8b0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fa20e6e-11b0-423b-9c0f-ce48c806d5c5","type":"Microsoft.Authorization/roleAssignments","name":"5fa20e6e-11b0-423b-9c0f-ce48c806d5c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f79cbd84-0287-431e-8467-0d4ce7bd972c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-21T06:40:33.7216935Z","updatedOn":"2022-02-21T06:40:33.7216935Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6cad3a16-ec6c-4348-8c31-ed5548119af3","type":"Microsoft.Authorization/roleAssignments","name":"6cad3a16-ec6c-4348-8c31-ed5548119af3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8bedc21b-6861-4daf-993e-6386a0839e8a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-24T02:36:13.3604140Z","updatedOn":"2022-02-24T02:36:13.3604140Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf5562b1-3a4a-4f46-9520-426865714891","type":"Microsoft.Authorization/roleAssignments","name":"bf5562b1-3a4a-4f46-9520-426865714891"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3","principalId":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-10T07:17:36.7908387Z","updatedOn":"2022-03-10T07:17:36.7908387Z","createdBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","updatedBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4afbc96a-7710-44e7-9e10-517a71df5a67","type":"Microsoft.Authorization/roleAssignments","name":"4afbc96a-7710-44e7-9e10-517a71df5a67"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-29T07:07:26.9171325Z","updatedOn":"2022-03-29T07:07:26.9171325Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90c944e7-9f16-4ec3-9fc9-e4f66be996a1","type":"Microsoft.Authorization/roleAssignments","name":"90c944e7-9f16-4ec3-9fc9-e4f66be996a1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe87037c-4c23-46ac-9fcf-5ad3d7e5ba3e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-01T07:03:36.0287465Z","updatedOn":"2022-04-01T07:03:36.0287465Z","createdBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","updatedBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79c4412d-e3c5-4864-9425-948093c46897","type":"Microsoft.Authorization/roleAssignments","name":"79c4412d-e3c5-4864-9425-948093c46897"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"03aaab22-55ae-4c18-9086-398117b23567","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-07T03:55:06.1900687Z","updatedOn":"2022-04-07T03:55:06.1900687Z","createdBy":"a9668459-3905-4e76-a681-a1633c50f368","updatedBy":"a9668459-3905-4e76-a681-a1633c50f368","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ddaa18d-3eaf-44e9-a747-91461068e40d","type":"Microsoft.Authorization/roleAssignments","name":"9ddaa18d-3eaf-44e9-a747-91461068e40d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"fe87037c-4c23-46ac-9fcf-5ad3d7e5ba3e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-22T02:33:14.7630374Z","updatedOn":"2022-04-22T02:33:14.7630374Z","createdBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","updatedBy":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4c094650-b615-406e-b43e-3a5d27f00fbb","type":"Microsoft.Authorization/roleAssignments","name":"4c094650-b615-406e-b43e-3a5d27f00fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5d369c21-b2ba-4e66-86c7-1562181b509f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-05T09:23:30.3783298Z","updatedOn":"2022-05-05T09:23:30.3783298Z","createdBy":"7ecfd123-73a8-4c5a-b57b-df502769b4e7","updatedBy":"7ecfd123-73a8-4c5a-b57b-df502769b4e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdf98bbd-4822-47da-a01e-afdc0f968310","type":"Microsoft.Authorization/roleAssignments","name":"bdf98bbd-4822-47da-a01e-afdc0f968310"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0826caaf-edbe-4f00-869d-45a6979c6dd1","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-20T09:42:28.9345746Z","updatedOn":"2022-05-20T09:42:28.9345746Z","createdBy":"a9668459-3905-4e76-a681-a1633c50f368","updatedBy":"a9668459-3905-4e76-a681-a1633c50f368","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4e07fef-1dc4-4b6a-a2d9-792ec986ee50","type":"Microsoft.Authorization/roleAssignments","name":"d4e07fef-1dc4-4b6a-a2d9-792ec986ee50"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"87dabaeb-7935-4888-a263-5ba8767782e1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-20T11:04:17.4818701Z","updatedOn":"2022-05-20T11:04:17.4818701Z","createdBy":"0826caaf-edbe-4f00-869d-45a6979c6dd1","updatedBy":"0826caaf-edbe-4f00-869d-45a6979c6dd1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6417652-d51c-4cfb-b010-be6be4e5dccf","type":"Microsoft.Authorization/roleAssignments","name":"f6417652-d51c-4cfb-b010-be6be4e5dccf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0581142e-ae8f-4bc0-9a0d-ffb7cbad05b2","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T09:25:41.0389977Z","updatedOn":"2022-05-23T09:25:41.0389977Z","createdBy":"9ac534f1-d577-4034-a32d-48de400dacbf","updatedBy":"9ac534f1-d577-4034-a32d-48de400dacbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a21d147-7c65-4ef8-b356-a6615cffd463","type":"Microsoft.Authorization/roleAssignments","name":"3a21d147-7c65-4ef8-b356-a6615cffd463"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"fe87037c-4c23-46ac-9fcf-5ad3d7e5ba3e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T03:43:22.0397649Z","updatedOn":"2022-05-26T03:43:22.0397649Z","createdBy":"fe87037c-4c23-46ac-9fcf-5ad3d7e5ba3e","updatedBy":"fe87037c-4c23-46ac-9fcf-5ad3d7e5ba3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00181f54-6150-45e1-ae0c-7222ef02a622","type":"Microsoft.Authorization/roleAssignments","name":"00181f54-6150-45e1-ae0c-7222ef02a622"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f","principalId":"31ea12a7-b6d7-4db9-a4e8-66c0378b1294","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T09:30:26.9209938Z","updatedOn":"2022-05-26T09:30:26.9209938Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ca8459d-7db4-4e8d-aa3d-feff9726352c","type":"Microsoft.Authorization/roleAssignments","name":"3ca8459d-7db4-4e8d-aa3d-feff9726352c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T07:13:35.7382070Z","updatedOn":"2022-07-25T07:13:35.7382070Z","createdBy":"2f153a9e-5be9-4f43-abd2-04561777c8b0","updatedBy":"2f153a9e-5be9-4f43-abd2-04561777c8b0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a109aad3-991a-4460-8b89-d9cfb517677b","type":"Microsoft.Authorization/roleAssignments","name":"a109aad3-991a-4460-8b89-d9cfb517677b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a72a547f-b9d2-4b24-9861-1e568b215bee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-29T05:50:37.0213114Z","updatedOn":"2023-05-29T05:50:37.0213114Z","createdBy":"b436a2b3-24c4-46f9-a79d-f9585a8d6f6e","updatedBy":"b436a2b3-24c4-46f9-a79d-f9585a8d6f6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a72a547f-b9d2-4b24-9861-1e568b215bee","type":"Microsoft.Authorization/roleAssignments","name":"a72a547f-b9d2-4b24-9861-1e568b215bee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"78398595-3b96-4c14-ad87-46f24d429941","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T08:12:26.7738917Z","updatedOn":"2023-05-31T08:12:26.7738917Z","createdBy":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","updatedBy":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1916fda6-30d5-44ad-a142-f1f5bc11f2ce","type":"Microsoft.Authorization/roleAssignments","name":"1916fda6-30d5-44ad-a142-f1f5bc11f2ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35dd8128-a3bc-4ba3-a83c-15ccb4861ae8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T14:25:59.0519306Z","updatedOn":"2023-05-31T14:25:59.0519306Z","createdBy":"b436a2b3-24c4-46f9-a79d-f9585a8d6f6e","updatedBy":"b436a2b3-24c4-46f9-a79d-f9585a8d6f6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a002e04-a6df-4c8e-bdef-f08a342388d7","type":"Microsoft.Authorization/roleAssignments","name":"0a002e04-a6df-4c8e-bdef-f08a342388d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"7fe989f6-5c63-416a-94ca-46e5fe1297c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T06:22:40.2707174Z","updatedOn":"2023-06-01T06:22:40.2707174Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af970476-c369-416e-ac69-4ff6dad19652","type":"Microsoft.Authorization/roleAssignments","name":"af970476-c369-416e-ac69-4ff6dad19652"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b2b7fa9-79dd-4246-b179-2a925235a99c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T09:55:31.8645882Z","updatedOn":"2023-06-06T09:55:31.8645882Z","createdBy":"ba8d7935-be2f-489e-9e16-4936597119af","updatedBy":"ba8d7935-be2f-489e-9e16-4936597119af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b2b7fa9-79dd-4246-b179-2a925235a99c","type":"Microsoft.Authorization/roleAssignments","name":"4b2b7fa9-79dd-4246-b179-2a925235a99c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-25T07:31:07.2515221Z","updatedOn":"2023-06-25T07:31:07.2515221Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a0d2c917-a129-4f9a-a868-fffc4b2bfafb","type":"Microsoft.Authorization/roleAssignments","name":"a0d2c917-a129-4f9a-a868-fffc4b2bfafb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"58c34d6c-4ada-452c-829d-aba2ab37fb19","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-26T08:02:05.9232941Z","updatedOn":"2023-06-26T08:02:05.9232941Z","createdBy":"351fa797-c81a-4998-9720-4c2ecb6c7abc","updatedBy":"351fa797-c81a-4998-9720-4c2ecb6c7abc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1604a7a5-5fb3-4c21-adbf-bb9cbfd5b332","type":"Microsoft.Authorization/roleAssignments","name":"1604a7a5-5fb3-4c21-adbf-bb9cbfd5b332"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1afc88d9-8464-402f-af6f-7b57a5ace100","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-07-12T08:06:30.9396813Z","updatedOn":"2023-07-12T08:06:30.9396813Z","createdBy":"9ac534f1-d577-4034-a32d-48de400dacbf","updatedBy":"9ac534f1-d577-4034-a32d-48de400dacbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf4e58ae-eda4-47b1-92c8-eeb04764c90b","type":"Microsoft.Authorization/roleAssignments","name":"cf4e58ae-eda4-47b1-92c8-eeb04764c90b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"79c860a8-c5da-4876-9b14-edf1d69e422b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-07-24T02:22:35.2856626Z","updatedOn":"2023-07-24T02:22:35.2856626Z","createdBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c","updatedBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3eb48ae8-ea9f-4550-ac39-eab06a9e8c7f","type":"Microsoft.Authorization/roleAssignments","name":"3eb48ae8-ea9f-4550-ac39-eab06a9e8c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd","principalId":"79471cdf-5172-460f-b2b5-f6169b8b68e3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-08-04T22:27:54.7062742Z","updatedOn":"2023-08-04T22:27:54.7062742Z","createdBy":"c848f9c2-44be-4a85-8743-c0ef48797a1f","updatedBy":"c848f9c2-44be-4a85-8743-c0ef48797a1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbf530a4-14af-4da8-89ff-4f053301fe83","type":"Microsoft.Authorization/roleAssignments","name":"cbf530a4-14af-4da8-89ff-4f053301fe83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a4417e6f-fecd-4de8-b567-7b0420556985","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-08-18T07:26:59.2478780Z","updatedOn":"2023-08-18T07:26:59.2478780Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/231df130-cffe-4c17-a586-15ea17699366","type":"Microsoft.Authorization/roleAssignments","name":"231df130-cffe-4c17-a586-15ea17699366"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-08-18T07:55:22.3081482Z","updatedOn":"2023-08-18T07:55:22.3081482Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a180a786-8993-48a9-af78-1448388c992e","type":"Microsoft.Authorization/roleAssignments","name":"a180a786-8993-48a9-af78-1448388c992e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/959f8984-c045-4866-89c7-12bf9737be2e","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-08-18T08:54:23.7046225Z","updatedOn":"2023-08-18T08:54:23.7046225Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f30146c6-b0c8-4c0c-82c4-cff148aa43a2","type":"Microsoft.Authorization/roleAssignments","name":"f30146c6-b0c8-4c0c-82c4-cff148aa43a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e74e6e87-c610-4e23-b1d1-48d9c8c9834a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-08-21T02:18:20.6266802Z","updatedOn":"2023-08-21T02:18:20.6266802Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b177726b-2316-489e-93b8-478f19c0c4b8","type":"Microsoft.Authorization/roleAssignments","name":"b177726b-2316-489e-93b8-478f19c0c4b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-08-28T02:59:20.5007763Z","updatedOn":"2023-08-28T02:59:20.5007763Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c54e9960-d2ad-4d9f-b8c4-2741534a5946","type":"Microsoft.Authorization/roleAssignments","name":"c54e9960-d2ad-4d9f-b8c4-2741534a5946"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-08-28T03:18:50.5646586Z","updatedOn":"2023-08-28T03:18:50.5646586Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/62475f9d-db10-4363-ad2e-9d46216282d0","type":"Microsoft.Authorization/roleAssignments","name":"62475f9d-db10-4363-ad2e-9d46216282d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-08-29T07:51:53.1403086Z","updatedOn":"2023-08-29T07:51:53.1403086Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5da5bc70-6f66-49a1-9803-00efaaacce16","type":"Microsoft.Authorization/roleAssignments","name":"5da5bc70-6f66-49a1-9803-00efaaacce16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"71340ea7-3db3-4b48-b9b1-9bee67d6dd74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-09-05T01:49:04.2797298Z","updatedOn":"2023-09-05T01:49:04.2797298Z","createdBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","updatedBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d840acd1-4746-4555-ae19-fbdb14eff82d","type":"Microsoft.Authorization/roleAssignments","name":"d840acd1-4746-4555-ae19-fbdb14eff82d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f","principalId":"da48ee2c-439a-4334-acfa-515a1db0aec7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-09-06T07:46:03.8321297Z","updatedOn":"2023-09-06T07:46:03.8321297Z","createdBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","updatedBy":"abdd745a-b6de-4705-bc7b-2d59044f04b6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d470c5dd-3903-493e-ab4f-c903ef377f14","type":"Microsoft.Authorization/roleAssignments","name":"d470c5dd-3903-493e-ab4f-c903ef377f14"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b5b5565a-d0da-4543-889c-4df4c43947ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-09-13T04:51:07.9573997Z","updatedOn":"2023-09-13T04:51:07.9573997Z","createdBy":"d64e4618-a7a0-41ff-a20c-1594fdde8c87","updatedBy":"d64e4618-a7a0-41ff-a20c-1594fdde8c87","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b96cd2a-99da-4739-b525-555c92c6509c","type":"Microsoft.Authorization/roleAssignments","name":"7b96cd2a-99da-4739-b525-555c92c6509c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35cf9b1d-2ca6-4311-a147-1b59e0f6aa75","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-09-29T23:56:32.6875292Z","updatedOn":"2023-09-29T23:56:32.6875292Z","createdBy":"c848f9c2-44be-4a85-8743-c0ef48797a1f","updatedBy":"c848f9c2-44be-4a85-8743-c0ef48797a1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/988f31bc-f039-4b98-ac1c-f54c51865cb8","type":"Microsoft.Authorization/roleAssignments","name":"988f31bc-f039-4b98-ac1c-f54c51865cb8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"35cf9b1d-2ca6-4311-a147-1b59e0f6aa75","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-09-29T23:56:36.1050673Z","updatedOn":"2023-09-29T23:56:36.1050673Z","createdBy":"c848f9c2-44be-4a85-8743-c0ef48797a1f","updatedBy":"c848f9c2-44be-4a85-8743-c0ef48797a1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61438806-dbf1-40cd-9781-ff32ebd0b279","type":"Microsoft.Authorization/roleAssignments","name":"61438806-dbf1-40cd-9781-ff32ebd0b279"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"351fa797-c81a-4998-9720-4c2ecb6c7abc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-10-11T04:39:19.5121857Z","updatedOn":"2023-10-11T04:39:19.5121857Z","createdBy":"b436a2b3-24c4-46f9-a79d-f9585a8d6f6e","updatedBy":"b436a2b3-24c4-46f9-a79d-f9585a8d6f6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f6f6661-5876-4e1e-ad6e-7ccedfa860cb","type":"Microsoft.Authorization/roleAssignments","name":"0f6f6661-5876-4e1e-ad6e-7ccedfa860cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168","principalId":"351fa797-c81a-4998-9720-4c2ecb6c7abc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-10-16T07:32:47.8117478Z","updatedOn":"2023-10-16T07:32:47.8117478Z","createdBy":"b436a2b3-24c4-46f9-a79d-f9585a8d6f6e","updatedBy":"b436a2b3-24c4-46f9-a79d-f9585a8d6f6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d010e0a6-8eab-48f3-8368-c4641cbf715b","type":"Microsoft.Authorization/roleAssignments","name":"d010e0a6-8eab-48f3-8368-c4641cbf715b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"351fa797-c81a-4998-9720-4c2ecb6c7abc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-10-16T07:41:35.8030559Z","updatedOn":"2023-10-16T07:41:35.8030559Z","createdBy":"351fa797-c81a-4998-9720-4c2ecb6c7abc","updatedBy":"351fa797-c81a-4998-9720-4c2ecb6c7abc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66c444ba-2d1a-4e8d-963e-defc35cee159","type":"Microsoft.Authorization/roleAssignments","name":"66c444ba-2d1a-4e8d-963e-defc35cee159"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"66486765-477a-4243-880c-7e1fb3c80f2b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-10-16T08:05:46.3169256Z","updatedOn":"2023-10-16T08:05:46.3169256Z","createdBy":"351fa797-c81a-4998-9720-4c2ecb6c7abc","updatedBy":"351fa797-c81a-4998-9720-4c2ecb6c7abc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8327291c-f55b-4b8c-8a35-9e3006b1e82d","type":"Microsoft.Authorization/roleAssignments","name":"8327291c-f55b-4b8c-8a35-9e3006b1e82d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"2f153a9e-5be9-4f43-abd2-04561777c8b0","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":"@Resource[Microsoft.Storage/storageAccounts:name] + StringEquals ''storagecontainer4test''","conditionVersion":"2.0","createdOn":"2023-10-23T05:19:13.5872585Z","updatedOn":"2023-10-23T05:23:58.2384664Z","createdBy":"351fa797-c81a-4998-9720-4c2ecb6c7abc","updatedBy":"351fa797-c81a-4998-9720-4c2ecb6c7abc","delegatedManagedIdentityResourceId":null,"description":"This + test should not fail"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d2","type":"Microsoft.Authorization/roleAssignments","name":"734de5f5-c680-41c0-8beb-67b98c3539d2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5432c526-bc82-444a-b7ba-57c5b0b5b34f","principalId":"66486765-477a-4243-880c-7e1fb3c80f2b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-10-24T03:22:15.6785029Z","updatedOn":"2023-10-24T03:22:15.6785029Z","createdBy":"351fa797-c81a-4998-9720-4c2ecb6c7abc","updatedBy":"351fa797-c81a-4998-9720-4c2ecb6c7abc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0c20190b-f1fc-4777-a26f-d6134e5232b2","type":"Microsoft.Authorization/roleAssignments","name":"0c20190b-f1fc-4777-a26f-d6134e5232b2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"2f153a9e-5be9-4f43-abd2-04561777c8b0","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-10-24T06:12:28.6384966Z","updatedOn":"2023-10-24T06:12:28.6384966Z","createdBy":"351fa797-c81a-4998-9720-4c2ecb6c7abc","updatedBy":"351fa797-c81a-4998-9720-4c2ecb6c7abc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4f953c17-88ed-4c7c-a463-7d9628744b7c","type":"Microsoft.Authorization/roleAssignments","name":"4f953c17-88ed-4c7c-a463-7d9628744b7c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"92bebeb6-c875-4f40-b2d2-f6324929f04a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-11-05T04:54:57.2711632Z","updatedOn":"2023-11-05T04:54:57.2711632Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddef476c-c2ad-4757-b9c6-71bdd61ef820","type":"Microsoft.Authorization/roleAssignments","name":"ddef476c-c2ad-4757-b9c6-71bdd61ef820"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"a3a5fd1c-8153-439a-be8e-2b685899d85c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-11-09T03:35:08.1099674Z","updatedOn":"2023-11-09T03:35:08.1099674Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7286cc0-5aa7-45f3-972a-7eded43680da","type":"Microsoft.Authorization/roleAssignments","name":"b7286cc0-5aa7-45f3-972a-7eded43680da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a3a5fd1c-8153-439a-be8e-2b685899d85c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-11-10T07:44:06.1296281Z","updatedOn":"2023-11-10T07:44:06.1296281Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e47f906-d577-42a2-ab2d-7601c391c98d","type":"Microsoft.Authorization/roleAssignments","name":"7e47f906-d577-42a2-ab2d-7601c391c98d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-11-22T07:47:53.6536919Z","updatedOn":"2023-11-22T07:47:53.6536919Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ee64428-e8a2-4342-8c0d-26953dbb86a6","type":"Microsoft.Authorization/roleAssignments","name":"9ee64428-e8a2-4342-8c0d-26953dbb86a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/69566ab7-960f-475b-8e7c-b3118f30c6bd","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-11-22T07:48:48.7463075Z","updatedOn":"2023-11-22T07:48:48.7463075Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d0aa7c8-a114-43b0-822f-8fa730833baf","type":"Microsoft.Authorization/roleAssignments","name":"6d0aa7c8-a114-43b0-822f-8fa730833baf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c46fec39-0cd7-49cd-a259-63aa21fd0a95","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-12-25T19:49:46.4925853Z","updatedOn":"2023-12-25T19:49:46.4925853Z","createdBy":"596c247a-9db0-4c20-8ddb-d944102067ac","updatedBy":"596c247a-9db0-4c20-8ddb-d944102067ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24028e8e-19e2-44c8-9494-d61c2c9f75fe","type":"Microsoft.Authorization/roleAssignments","name":"24028e8e-19e2-44c8-9494-d61c2c9f75fe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c12c1c16-33a1-487b-954d-41c89c60f349","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-24T06:27:18.0865963Z","updatedOn":"2024-01-24T06:27:18.0865963Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c833b0a6-600d-47ec-a5b7-5dc11fcbaa19","type":"Microsoft.Authorization/roleAssignments","name":"c833b0a6-600d-47ec-a5b7-5dc11fcbaa19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"9051756a-a7bc-4964-9b30-13a801c3427c","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-30T03:11:09.0018911Z","updatedOn":"2024-01-30T03:11:09.0018911Z","createdBy":"58c34d6c-4ada-452c-829d-aba2ab37fb19","updatedBy":"58c34d6c-4ada-452c-829d-aba2ab37fb19","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54f9e771-db5c-4087-814c-4e82f48c3551","type":"Microsoft.Authorization/roleAssignments","name":"54f9e771-db5c-4087-814c-4e82f48c3551"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"141ed42b-feaa-4e5f-9108-2d5dd3f01de6","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-30T03:11:08.9940520Z","updatedOn":"2024-01-30T03:11:08.9940520Z","createdBy":"58c34d6c-4ada-452c-829d-aba2ab37fb19","updatedBy":"58c34d6c-4ada-452c-829d-aba2ab37fb19","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18f41f0d-ba46-48d3-8777-99152f5bb740","type":"Microsoft.Authorization/roleAssignments","name":"18f41f0d-ba46-48d3-8777-99152f5bb740"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b436a2b3-24c4-46f9-a79d-f9585a8d6f6e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-31T08:46:35.3818606Z","updatedOn":"2024-01-31T08:46:35.3818606Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3dd2df4-c4fe-44e3-b56b-90f9add88ae6","type":"Microsoft.Authorization/roleAssignments","name":"c3dd2df4-c4fe-44e3-b56b-90f9add88ae6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1178d20-4ca4-45f0-ba9a-5a08f588da8d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-31T08:46:35.3427053Z","updatedOn":"2024-01-31T08:46:35.3427053Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb245b42-3a0b-4a9a-a180-2d11f4a7d9ca","type":"Microsoft.Authorization/roleAssignments","name":"bb245b42-3a0b-4a9a-a180-2d11f4a7d9ca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f44cc02c-cec4-4b32-860a-50bdf6ab7362","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-31T08:46:36.5487510Z","updatedOn":"2024-01-31T08:46:36.5487510Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29eb785d-a807-4586-a67a-cb33667b0923","type":"Microsoft.Authorization/roleAssignments","name":"29eb785d-a807-4586-a67a-cb33667b0923"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2f153a9e-5be9-4f43-abd2-04561777c8b0","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-31T08:46:36.3181097Z","updatedOn":"2024-01-31T08:46:36.3181097Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f93daa4e-7b6d-48a4-82ec-5718211e265e","type":"Microsoft.Authorization/roleAssignments","name":"f93daa4e-7b6d-48a4-82ec-5718211e265e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d64e4618-a7a0-41ff-a20c-1594fdde8c87","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-31T08:46:36.4481206Z","updatedOn":"2024-01-31T08:46:36.4481206Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/971124a8-4367-4a9a-87ba-4d15cbe3b201","type":"Microsoft.Authorization/roleAssignments","name":"971124a8-4367-4a9a-87ba-4d15cbe3b201"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cded80ac-7840-4070-a783-db73a7c3ee4c","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-31T08:46:36.5408924Z","updatedOn":"2024-01-31T08:46:36.5408924Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9ba2105-130a-4b8c-875b-b822f6bd1ec8","type":"Microsoft.Authorization/roleAssignments","name":"e9ba2105-130a-4b8c-875b-b822f6bd1ec8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-31T08:46:37.6085042Z","updatedOn":"2024-01-31T08:46:37.6085042Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba86cfa1-e6e6-4d15-9796-2650a85d971e","type":"Microsoft.Authorization/roleAssignments","name":"ba86cfa1-e6e6-4d15-9796-2650a85d971e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ba8d7935-be2f-489e-9e16-4936597119af","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-31T08:46:37.9913612Z","updatedOn":"2024-01-31T08:46:37.9913612Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/211edf05-2b60-49d7-bb26-c6268499e834","type":"Microsoft.Authorization/roleAssignments","name":"211edf05-2b60-49d7-bb26-c6268499e834"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"97ba2d79-dbab-45ab-9cb6-ec6517c6d78f","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-31T08:50:13.8510350Z","updatedOn":"2024-01-31T08:50:13.8510350Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12769271-386c-44e8-b4f9-6eab917a95e3","type":"Microsoft.Authorization/roleAssignments","name":"12769271-386c-44e8-b4f9-6eab917a95e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"58c34d6c-4ada-452c-829d-aba2ab37fb19","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-01-31T15:33:32.6167446Z","updatedOn":"2024-01-31T15:33:32.6167446Z","createdBy":"58c34d6c-4ada-452c-829d-aba2ab37fb19","updatedBy":"58c34d6c-4ada-452c-829d-aba2ab37fb19","delegatedManagedIdentityResourceId":null,"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."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/74cc389f-66ab-4c12-a919-a874f5acd34a","type":"Microsoft.Authorization/roleAssignments","name":"74cc389f-66ab-4c12-a919-a874f5acd34a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e6cea611-e43c-4cf9-9100-4c98fa51644f","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-02-01T07:33:08.9303172Z","updatedOn":"2024-02-01T07:33:08.9303172Z","createdBy":"58c34d6c-4ada-452c-829d-aba2ab37fb19","updatedBy":"58c34d6c-4ada-452c-829d-aba2ab37fb19","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba384a6f-7156-43d7-b14d-24044d2ec8b2","type":"Microsoft.Authorization/roleAssignments","name":"ba384a6f-7156-43d7-b14d-24044d2ec8b2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"55e73ff3-85c1-4e75-84df-a7a86a55f067","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-02-06T08:55:27.7659376Z","updatedOn":"2024-02-06T08:55:27.7659376Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/292a6ca8-33a3-404d-bf9f-196aaa56e3eb","type":"Microsoft.Authorization/roleAssignments","name":"292a6ca8-33a3-404d-bf9f-196aaa56e3eb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"55e73ff3-85c1-4e75-84df-a7a86a55f067","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-02-06T08:55:43.1768599Z","updatedOn":"2024-02-06T08:55:43.1768599Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e92bd043-c859-4be1-8dc1-51a83ead6a30","type":"Microsoft.Authorization/roleAssignments","name":"e92bd043-c859-4be1-8dc1-51a83ead6a30"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"55e73ff3-85c1-4e75-84df-a7a86a55f067","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-02-06T08:55:54.2538831Z","updatedOn":"2024-02-06T08:55:54.2538831Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c8eba6da-b507-4e70-bc60-d44f72d8beb9","type":"Microsoft.Authorization/roleAssignments","name":"c8eba6da-b507-4e70-bc60-d44f72d8beb9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3","principalId":"55e73ff3-85c1-4e75-84df-a7a86a55f067","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-02-06T08:56:03.1822057Z","updatedOn":"2024-02-06T08:56:03.1822057Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61b4b169-c980-4328-a635-c9a99637a6fb","type":"Microsoft.Authorization/roleAssignments","name":"61b4b169-c980-4328-a635-c9a99637a6fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"2b7fa1bd-b817-45cb-9068-e416ce1125fa","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-02-06T08:59:28.4758130Z","updatedOn":"2024-02-06T08:59:28.4758130Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/091bc346-f587-4e90-8404-0e3e95df25ac","type":"Microsoft.Authorization/roleAssignments","name":"091bc346-f587-4e90-8404-0e3e95df25ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"35197511-d1b3-4df2-9b17-12f39eb74b59","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-02-17T18:16:32.2756181Z","updatedOn":"2024-02-17T18:16:32.2756181Z","createdBy":"39029da9-0fef-42a9-b478-2fe4e19b8c7b","updatedBy":"39029da9-0fef-42a9-b478-2fe4e19b8c7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f425525-9cae-b67d-1155-760fc4c71b25","type":"Microsoft.Authorization/roleAssignments","name":"0f425525-9cae-b67d-1155-760fc4c71b25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-02-22T09:03:01.6104485Z","updatedOn":"2024-02-22T09:03:01.6104485Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6fcc28f3-b76f-48b7-a5da-b81ede9670b8","type":"Microsoft.Authorization/roleAssignments","name":"6fcc28f3-b76f-48b7-a5da-b81ede9670b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-02-23T06:55:12.2293552Z","updatedOn":"2024-02-23T06:55:12.2293552Z","createdBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","updatedBy":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25928501-11a8-4b73-9d6b-a0beef237da4","type":"Microsoft.Authorization/roleAssignments","name":"25928501-11a8-4b73-9d6b-a0beef237da4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-02-29T07:32:57.3035096Z","updatedOn":"2024-02-29T07:32:57.3035096Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fb1a83d-45e4-4f3b-9cc8-5869542ffd5f","type":"Microsoft.Authorization/roleAssignments","name":"5fb1a83d-45e4-4f3b-9cc8-5869542ffd5f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f4ed124d-6acb-49a5-a6ac-bd96f35d8d16","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-03-01T03:43:49.6459974Z","updatedOn":"2024-03-01T03:43:49.6459974Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4fec02ea-3a68-4ee1-8f8b-05374524d968","type":"Microsoft.Authorization/roleAssignments","name":"4fec02ea-3a68-4ee1-8f8b-05374524d968"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1ef6a3be-d0ac-425d-8c01-acb62866290b","principalId":"d44a2991-98c6-47c3-b59b-2b30d72cfcc2","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-03-12T06:39:56.8201155Z","updatedOn":"2024-03-12T06:39:56.8201155Z","createdBy":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","updatedBy":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d01e5732-5b29-4971-98bc-83f4b5c69402","type":"Microsoft.Authorization/roleAssignments","name":"d01e5732-5b29-4971-98bc-83f4b5c69402"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0581142e-ae8f-4bc0-9a0d-ffb7cbad05b2","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":"((!(ActionMatches + {''Microsoft.Authorization/roleAssignments/write''})) || (@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] + ForAnyOfAllValues:GuidNotEquals {8e3af657a8ff443ca75c2fe8c4bcb635, 18d7d88dd35e4fb5a5c37773c20a72d9, + f58310d9a9f6439a9e8df62e7b41a168})) && ((!(ActionMatches {''Microsoft.Authorization/roleAssignments/delete''})) + || (@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAllValues:GuidNotEquals + {8e3af657a8ff443ca75c2fe8c4bcb635, 18d7d88dd35e4fb5a5c37773c20a72d9, f58310d9a9f6439a9e8df62e7b41a168}))","conditionVersion":"2.0","createdOn":"2024-04-08T07:51:10.1942542Z","updatedOn":"2024-05-14T18:49:04.7634776Z","createdBy":"9ac534f1-d577-4034-a32d-48de400dacbf","updatedBy":"9ac534f1-d577-4034-a32d-48de400dacbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/370feeaf-7802-46ce-a9a8-37b4a7ae5ea2","type":"Microsoft.Authorization/roleAssignments","name":"370feeaf-7802-46ce-a9a8-37b4a7ae5ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"147fec72-36d6-493e-87a4-2bc247cab1d7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-04-18T05:00:25.5264648Z","updatedOn":"2024-04-18T05:00:25.5264648Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83b6fb3f-0933-41fc-ac3c-7f06508275d4","type":"Microsoft.Authorization/roleAssignments","name":"83b6fb3f-0933-41fc-ac3c-7f06508275d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3679403a-91ca-4c30-90d1-29a0572c26e5","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-04-18T08:02:26.5688083Z","updatedOn":"2024-04-18T08:02:26.5688083Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0dc7726f-c414-4a93-9fdc-398b1ee66fa9","type":"Microsoft.Authorization/roleAssignments","name":"0dc7726f-c414-4a93-9fdc-398b1ee66fa9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"062d5f19-c525-48c9-a809-3be8685b85d0","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-04-18T09:12:07.0373035Z","updatedOn":"2024-04-18T09:12:07.0373035Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56f723ae-2cee-405b-8e4c-39b5638f8fab","type":"Microsoft.Authorization/roleAssignments","name":"56f723ae-2cee-405b-8e4c-39b5638f8fab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"258b249d-3285-4e12-8cd5-c82f413dfb2c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-04-18T10:10:35.4639964Z","updatedOn":"2024-04-18T10:10:35.4639964Z","createdBy":"3679403a-91ca-4c30-90d1-29a0572c26e5","updatedBy":"3679403a-91ca-4c30-90d1-29a0572c26e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf1e72fa-88ed-42a1-a362-b4b0bf2ecef3","type":"Microsoft.Authorization/roleAssignments","name":"cf1e72fa-88ed-42a1-a362-b4b0bf2ecef3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d5bc1c89-bc17-41b2-b597-afcd4a60247b","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-04-20T09:07:09.2534533Z","updatedOn":"2024-04-20T09:07:09.2534533Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89d09d6d-9909-43d1-9353-611c73d76a13","type":"Microsoft.Authorization/roleAssignments","name":"89d09d6d-9909-43d1-9353-611c73d76a13"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d5bc1c89-bc17-41b2-b597-afcd4a60247b","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-04-22T02:25:18.1798737Z","updatedOn":"2024-04-22T02:25:18.1798737Z","createdBy":"7ecfd123-73a8-4c5a-b57b-df502769b4e7","updatedBy":"7ecfd123-73a8-4c5a-b57b-df502769b4e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a45d06cf-8f2a-4f5a-ad7f-0ea06483d74b","type":"Microsoft.Authorization/roleAssignments","name":"a45d06cf-8f2a-4f5a-ad7f-0ea06483d74b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5966ab0c-d810-4d19-865a-1331fc86c6ec","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-04-24T08:05:41.7137419Z","updatedOn":"2024-04-24T08:05:41.7137419Z","createdBy":"d9a42fb9-7fae-4bcf-8653-f679dabf13af","updatedBy":"d9a42fb9-7fae-4bcf-8653-f679dabf13af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4aa625a5-3bec-435b-88db-a538f1c2ed91","type":"Microsoft.Authorization/roleAssignments","name":"4aa625a5-3bec-435b-88db-a538f1c2ed91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"977a498f-a90c-46c0-bff5-5fc6b0d4d527","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-04-28T07:33:05.5216841Z","updatedOn":"2024-04-28T07:33:05.5216841Z","createdBy":"062d5f19-c525-48c9-a809-3be8685b85d0","updatedBy":"062d5f19-c525-48c9-a809-3be8685b85d0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89457be1-463f-48c3-907d-e9e8cddf41e2","type":"Microsoft.Authorization/roleAssignments","name":"89457be1-463f-48c3-907d-e9e8cddf41e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"4489ef34-dc01-4513-a845-ce2bca5f6c91","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-04-28T07:35:24.2429500Z","updatedOn":"2024-04-28T07:35:24.2429500Z","createdBy":"147fec72-36d6-493e-87a4-2bc247cab1d7","updatedBy":"147fec72-36d6-493e-87a4-2bc247cab1d7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dab39b92-244c-4c88-9ec5-4048cd7116c2","type":"Microsoft.Authorization/roleAssignments","name":"dab39b92-244c-4c88-9ec5-4048cd7116c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"74534aec-551b-4bc8-973f-0516fd4c1f4b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-05-04T00:51:32.1019068Z","updatedOn":"2024-05-04T00:51:32.1019068Z","createdBy":"39029da9-0fef-42a9-b478-2fe4e19b8c7b","updatedBy":"39029da9-0fef-42a9-b478-2fe4e19b8c7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/34e3e42f-c387-a712-bcb2-b600f2d4c1ff","type":"Microsoft.Authorization/roleAssignments","name":"34e3e42f-c387-a712-bcb2-b600f2d4c1ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"a02bd8e8-0f07-4cd3-b319-e6d5786c5c94","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-05-06T09:19:05.9627784Z","updatedOn":"2024-05-06T09:19:05.9627784Z","createdBy":"e1ab5672-abb7-4468-aa2d-e0208b50709b","updatedBy":"e1ab5672-abb7-4468-aa2d-e0208b50709b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c62dda0-15a9-431e-8665-6aca1bf2861b","type":"Microsoft.Authorization/roleAssignments","name":"1c62dda0-15a9-431e-8665-6aca1bf2861b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b","principalId":"a02bd8e8-0f07-4cd3-b319-e6d5786c5c94","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-05-06T09:19:58.3778285Z","updatedOn":"2024-05-06T09:19:58.3778285Z","createdBy":"e1ab5672-abb7-4468-aa2d-e0208b50709b","updatedBy":"e1ab5672-abb7-4468-aa2d-e0208b50709b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de04dc05-e287-4763-bc88-51d044c80cf1","type":"Microsoft.Authorization/roleAssignments","name":"de04dc05-e287-4763-bc88-51d044c80cf1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0870daa0-ca35-42cf-9cd8-d2250494b435","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-05-07T07:34:24.8159341Z","updatedOn":"2024-05-07T07:34:24.8159341Z","createdBy":"bd681be3-da8c-4a0f-a9c0-03bc8e8ea83b","updatedBy":"bd681be3-da8c-4a0f-a9c0-03bc8e8ea83b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07645126-37d6-422e-9be8-e66a7b886d5e","type":"Microsoft.Authorization/roleAssignments","name":"07645126-37d6-422e-9be8-e66a7b886d5e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bcf91013-c8c0-4ef7-83a9-65bb7fb4dc50","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-05-09T07:08:17.8544051Z","updatedOn":"2024-05-09T07:08:17.8544051Z","createdBy":"7ecfd123-73a8-4c5a-b57b-df502769b4e7","updatedBy":"7ecfd123-73a8-4c5a-b57b-df502769b4e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89d053e2-260a-4f34-9fc3-373f426a60ad","type":"Microsoft.Authorization/roleAssignments","name":"89d053e2-260a-4f34-9fc3-373f426a60ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"71e17346-0800-4d62-bcd5-77c1c5bf2801","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-05-11T23:46:48.0800000Z","updatedOn":"2024-05-11T23:46:48.0800000Z","createdBy":"39029da9-0fef-42a9-b478-2fe4e19b8c7b","updatedBy":"39029da9-0fef-42a9-b478-2fe4e19b8c7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23f4eff6-a11c-6043-923f-295696b0cf36","type":"Microsoft.Authorization/roleAssignments","name":"23f4eff6-a11c-6043-923f-295696b0cf36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d44a2991-98c6-47c3-b59b-2b30d72cfcc2","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-05-13T09:55:15.5763241Z","updatedOn":"2024-05-13T09:55:15.5763241Z","createdBy":"9ac534f1-d577-4034-a32d-48de400dacbf","updatedBy":"9ac534f1-d577-4034-a32d-48de400dacbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1336cbc-fa69-4e2e-80c0-a8e85650a529","type":"Microsoft.Authorization/roleAssignments","name":"e1336cbc-fa69-4e2e-80c0-a8e85650a529"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a8a00123-90b9-453c-a97a-2860157443ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-05-25T01:03:00.7294102Z","updatedOn":"2024-05-25T01:03:00.7294102Z","createdBy":"39029da9-0fef-42a9-b478-2fe4e19b8c7b","updatedBy":"39029da9-0fef-42a9-b478-2fe4e19b8c7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b5be8d6-4eca-ea83-7046-244db3c4481d","type":"Microsoft.Authorization/roleAssignments","name":"4b5be8d6-4eca-ea83-7046-244db3c4481d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"abdd745a-b6de-4705-bc7b-2d59044f04b6","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-05-29T06:18:30.9429428Z","updatedOn":"2024-05-29T06:18:30.9429428Z","createdBy":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","updatedBy":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/789ae856-a132-41b7-8478-1a36969de6f8","type":"Microsoft.Authorization/roleAssignments","name":"789ae856-a132-41b7-8478-1a36969de6f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9c09fcd8-9c00-4cc5-accc-30b9d38c5675","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-05-31T09:00:06.4716305Z","updatedOn":"2024-05-31T09:00:06.4716305Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/30f9412d-efd2-4b43-ace5-eef51b18a59f","type":"Microsoft.Authorization/roleAssignments","name":"30f9412d-efd2-4b43-ace5-eef51b18a59f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"234bb4cf-4ce6-4532-a98c-51cbb5955146","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-03T06:23:24.2425517Z","updatedOn":"2024-06-03T06:23:24.2425517Z","createdBy":"147fec72-36d6-493e-87a4-2bc247cab1d7","updatedBy":"147fec72-36d6-493e-87a4-2bc247cab1d7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/62b889ac-5242-4794-86c0-933258329672","type":"Microsoft.Authorization/roleAssignments","name":"62b889ac-5242-4794-86c0-933258329672"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"9b126fcb-9668-402a-a344-84351011cf0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T10:31:57.6164727Z","updatedOn":"2024-06-04T10:31:57.6164727Z","createdBy":"e6cea611-e43c-4cf9-9100-4c98fa51644f","updatedBy":"e6cea611-e43c-4cf9-9100-4c98fa51644f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2af4157c-d4dc-48f4-962f-4a7a2595b876","type":"Microsoft.Authorization/roleAssignments","name":"2af4157c-d4dc-48f4-962f-4a7a2595b876"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eb827749-fb33-42ff-9cdc-d958159cf0c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-07T05:18:17.6816803Z","updatedOn":"2024-06-07T05:18:17.6816803Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3921c17-1877-4f64-a4a7-979733051526","type":"Microsoft.Authorization/roleAssignments","name":"b3921c17-1877-4f64-a4a7-979733051526"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"36c3d352-8f9b-4365-8363-f160cb8f2174","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-12T11:18:04.5313363Z","updatedOn":"2024-06-12T11:18:04.5313363Z","createdBy":"58c34d6c-4ada-452c-829d-aba2ab37fb19","updatedBy":"58c34d6c-4ada-452c-829d-aba2ab37fb19","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8db0ac02-369b-4d6f-afff-499197a54228","type":"Microsoft.Authorization/roleAssignments","name":"8db0ac02-369b-4d6f-afff-499197a54228"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6","principalId":"acc44b00-fe68-4ed2-9de2-2327ee17f51b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T03:33:19.4115292Z","updatedOn":"2024-06-13T03:33:19.4115292Z","createdBy":"69a25840-8928-4ea0-a8a5-e44d0fdaee5f","updatedBy":"69a25840-8928-4ea0-a8a5-e44d0fdaee5f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35f59139-fdc7-42a2-9752-d779cc9d09c2","type":"Microsoft.Authorization/roleAssignments","name":"35f59139-fdc7-42a2-9752-d779cc9d09c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824","principalId":"acc44b00-fe68-4ed2-9de2-2327ee17f51b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T03:33:22.6612970Z","updatedOn":"2024-06-13T03:33:22.6612970Z","createdBy":"69a25840-8928-4ea0-a8a5-e44d0fdaee5f","updatedBy":"69a25840-8928-4ea0-a8a5-e44d0fdaee5f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/050af50b-f717-4e61-979e-a76728fa09c4","type":"Microsoft.Authorization/roleAssignments","name":"050af50b-f717-4e61-979e-a76728fa09c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"647f01e0-e091-46c3-8c0b-f40cf310d3e5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:06:08.3817881Z","updatedOn":"2024-06-13T07:06:08.3817881Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b18ec137-6403-4abe-f251-8d70cfe267c3","type":"Microsoft.Authorization/roleAssignments","name":"b18ec137-6403-4abe-f251-8d70cfe267c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824","principalId":"647f01e0-e091-46c3-8c0b-f40cf310d3e5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:06:10.8590468Z","updatedOn":"2024-06-13T07:06:10.8590468Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24ce5e5d-62c8-4db4-8a03-ac896ed32f47","type":"Microsoft.Authorization/roleAssignments","name":"24ce5e5d-62c8-4db4-8a03-ac896ed32f47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824","principalId":"15b3a25f-3d39-451d-9315-4a8b49947114","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:06:14.9888804Z","updatedOn":"2024-06-13T07:06:14.9888804Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61fe0769-c346-4225-c9fe-ef505b271df6","type":"Microsoft.Authorization/roleAssignments","name":"61fe0769-c346-4225-c9fe-ef505b271df6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"15b3a25f-3d39-451d-9315-4a8b49947114","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:06:13.1128473Z","updatedOn":"2024-06-13T07:06:13.1128473Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1df04ce-56f2-4e80-e0e4-0808bc4684b4","type":"Microsoft.Authorization/roleAssignments","name":"f1df04ce-56f2-4e80-e0e4-0808bc4684b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824","principalId":"15b3a25f-3d39-451d-9315-4a8b49947114","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:06:13.7448619Z","updatedOn":"2024-06-13T07:06:13.7448619Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3fc78e7-dbcb-4ad2-82b1-c9faac68e9ae","type":"Microsoft.Authorization/roleAssignments","name":"a3fc78e7-dbcb-4ad2-82b1-c9faac68e9ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"437ddf2d-f367-4001-bfe0-c22d97ef9679","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:06:19.7499220Z","updatedOn":"2024-06-13T07:06:19.7499220Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f426329a-e042-40db-18e6-06a8576481d4","type":"Microsoft.Authorization/roleAssignments","name":"f426329a-e042-40db-18e6-06a8576481d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"6428a0fd-3beb-44ac-94e9-af55b91a24f9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:06:20.3100206Z","updatedOn":"2024-06-13T07:06:20.3100206Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66a738f5-e538-4642-1b36-0d183b47f39f","type":"Microsoft.Authorization/roleAssignments","name":"66a738f5-e538-4642-1b36-0d183b47f39f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824","principalId":"437ddf2d-f367-4001-bfe0-c22d97ef9679","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:06:20.6725757Z","updatedOn":"2024-06-13T07:06:20.6725757Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4fd85b4-ae81-4cd0-c9eb-7047fb33052b","type":"Microsoft.Authorization/roleAssignments","name":"e4fd85b4-ae81-4cd0-c9eb-7047fb33052b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824","principalId":"6428a0fd-3beb-44ac-94e9-af55b91a24f9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:06:23.3456402Z","updatedOn":"2024-06-13T07:06:23.3456402Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa6c4ed1-2788-41c0-fa42-04fb703bcb9d","type":"Microsoft.Authorization/roleAssignments","name":"fa6c4ed1-2788-41c0-fa42-04fb703bcb9d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824","principalId":"507bd51a-7543-4f4f-94c5-129f285e05bd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:18:21.8036316Z","updatedOn":"2024-06-13T07:18:21.8036316Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7074ef1f-7a16-4569-5e24-907d831ce630","type":"Microsoft.Authorization/roleAssignments","name":"7074ef1f-7a16-4569-5e24-907d831ce630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824","principalId":"9e3cbd71-8334-4831-b532-dd2151f56257","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:18:21.8728946Z","updatedOn":"2024-06-13T07:18:21.8728946Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6c99fff-f50e-47ef-c18a-570ae9a4a869","type":"Microsoft.Authorization/roleAssignments","name":"c6c99fff-f50e-47ef-c18a-570ae9a4a869"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824","principalId":"c1fc63e1-81ad-44fe-8223-8a3642e6f2eb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:18:21.9466366Z","updatedOn":"2024-06-13T07:18:21.9466366Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb0c616e-04b8-4ff1-691b-1964ec1203f8","type":"Microsoft.Authorization/roleAssignments","name":"bb0c616e-04b8-4ff1-691b-1964ec1203f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824","principalId":"9b8c7217-91b1-4fd6-b1bc-29ab9604f1a9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:18:26.2050830Z","updatedOn":"2024-06-13T07:18:26.2050830Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eaffab6d-9514-4535-34db-5f1b170c54b5","type":"Microsoft.Authorization/roleAssignments","name":"eaffab6d-9514-4535-34db-5f1b170c54b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa","principalId":"8064f9d4-0ac1-48cd-94e7-05423ca40be7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:30:32.1718467Z","updatedOn":"2024-06-13T07:30:32.1718467Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6085fc16-47a0-4842-038c-7dd97b1e033a","type":"Microsoft.Authorization/roleAssignments","name":"6085fc16-47a0-4842-038c-7dd97b1e033a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"8064f9d4-0ac1-48cd-94e7-05423ca40be7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:30:32.6254868Z","updatedOn":"2024-06-13T07:30:32.6254868Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c1e38a4-de87-4561-858f-ce8ebfaca25c","type":"Microsoft.Authorization/roleAssignments","name":"7c1e38a4-de87-4561-858f-ce8ebfaca25c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"8064f9d4-0ac1-48cd-94e7-05423ca40be7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:30:33.4856471Z","updatedOn":"2024-06-13T07:30:33.4856471Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9cabf390-43bb-4f2b-50f6-a02cb2ad3541","type":"Microsoft.Authorization/roleAssignments","name":"9cabf390-43bb-4f2b-50f6-a02cb2ad3541"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"8064f9d4-0ac1-48cd-94e7-05423ca40be7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-13T07:30:33.7649280Z","updatedOn":"2024-06-13T07:30:33.7649280Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95de5410-7f06-4760-0502-36fc96068e49","type":"Microsoft.Authorization/roleAssignments","name":"95de5410-7f06-4760-0502-36fc96068e49"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"beb657f2-a8a6-4d71-a01b-22baddf2864a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-20T02:43:11.1894478Z","updatedOn":"2024-06-20T02:43:11.1894478Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e2fc5b-f81e-4a40-bb6c-926eede862ef","type":"Microsoft.Authorization/roleAssignments","name":"90e2fc5b-f81e-4a40-bb6c-926eede862ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"75284bd7-8d14-4d17-acdf-b71cd04e57ba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-20T10:48:15.5292848Z","updatedOn":"2024-06-20T10:48:15.5292848Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54979048-80c0-40d2-a5a3-34557b1e66a8","type":"Microsoft.Authorization/roleAssignments","name":"54979048-80c0-40d2-a5a3-34557b1e66a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"3707fb2f-ac10-4591-a04f-8b0d786ea37d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-25T08:28:56.7434300Z","updatedOn":"2024-06-25T08:28:56.7434300Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f18e4fc9-3379-4107-a20d-9dd96dcbda5f","type":"Microsoft.Authorization/roleAssignments","name":"f18e4fc9-3379-4107-a20d-9dd96dcbda5f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"615fc7c3-0e28-4d86-ab69-78b861d34a77","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-07-04T15:54:26.9125364Z","updatedOn":"2024-07-04T15:54:26.9125364Z","createdBy":"596c247a-9db0-4c20-8ddb-d944102067ac","updatedBy":"596c247a-9db0-4c20-8ddb-d944102067ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7487967b-7add-4398-83bc-99b2cc70b397","type":"Microsoft.Authorization/roleAssignments","name":"7487967b-7add-4398-83bc-99b2cc70b397"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/874d1c73-6003-4e60-a13a-cb31ea190a85","principalId":"d5bc1c89-bc17-41b2-b597-afcd4a60247b","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-07-10T06:41:54.4241991Z","updatedOn":"2024-07-10T06:41:54.4241991Z","createdBy":"d5bc1c89-bc17-41b2-b597-afcd4a60247b","updatedBy":"d5bc1c89-bc17-41b2-b597-afcd4a60247b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/156dd1ce-94a9-48c9-8791-ae2f71bf3936","type":"Microsoft.Authorization/roleAssignments","name":"156dd1ce-94a9-48c9-8791-ae2f71bf3936"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"33538bc5-4fe5-438f-b4ef-22fdbaf4d862","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-07-15T06:40:49.5836130Z","updatedOn":"2024-07-15T06:40:49.5836130Z","createdBy":"062d5f19-c525-48c9-a809-3be8685b85d0","updatedBy":"062d5f19-c525-48c9-a809-3be8685b85d0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/095a376a-156f-4611-9ea7-afea1b3c88d7","type":"Microsoft.Authorization/roleAssignments","name":"095a376a-156f-4611-9ea7-afea1b3c88d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7ed4bac4-a2ca-45fa-a56b-b3db43c1e925","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-07-29T05:48:21.1542892Z","updatedOn":"2024-07-29T05:48:21.1542892Z","createdBy":"e6cea611-e43c-4cf9-9100-4c98fa51644f","updatedBy":"e6cea611-e43c-4cf9-9100-4c98fa51644f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d3bab94-03de-4ae4-bde6-c94f5c2d2e18","type":"Microsoft.Authorization/roleAssignments","name":"8d3bab94-03de-4ae4-bde6-c94f5c2d2e18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4603767a-0e74-4b03-a80f-7bebfddc052f","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-07-29T07:26:10.6153657Z","updatedOn":"2024-07-29T07:26:10.6153657Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55f51036-9d0d-48a1-8e65-8146696912a1","type":"Microsoft.Authorization/roleAssignments","name":"55f51036-9d0d-48a1-8e65-8146696912a1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3d12f495-3e6e-4930-acd8-62f904e9683a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-08-02T06:52:13.9918060Z","updatedOn":"2024-08-02T06:52:13.9918060Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8745343-ecac-4fcd-8802-57dcf6b17859","type":"Microsoft.Authorization/roleAssignments","name":"e8745343-ecac-4fcd-8802-57dcf6b17859"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52a2fda8-c59f-4bde-8c4d-48ffa466fefc","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-08-15T06:47:54.0018160Z","updatedOn":"2024-08-15T06:47:54.0018160Z","createdBy":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","updatedBy":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50451586-72fc-4ed7-8ae8-bfa589b80722","type":"Microsoft.Authorization/roleAssignments","name":"50451586-72fc-4ed7-8ae8-bfa589b80722"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"beb657f2-a8a6-4d71-a01b-22baddf2864a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-08-16T08:11:44.2721072Z","updatedOn":"2024-08-16T08:11:44.2721072Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/64deb56f-1435-426a-8d02-769cafcb43f0","type":"Microsoft.Authorization/roleAssignments","name":"64deb56f-1435-426a-8d02-769cafcb43f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9c09fcd8-9c00-4cc5-accc-30b9d38c5675","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-09-12T07:00:45.6201582Z","updatedOn":"2024-09-12T07:00:45.6201582Z","createdBy":"2b7fa1bd-b817-45cb-9068-e416ce1125fa","updatedBy":"2b7fa1bd-b817-45cb-9068-e416ce1125fa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0571bc4-ba7c-475a-9eec-c447c304eec1","type":"Microsoft.Authorization/roleAssignments","name":"f0571bc4-ba7c-475a-9eec-c447c304eec1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-10-11T07:51:16.2205525Z","updatedOn":"2024-10-11T07:51:16.2205525Z","createdBy":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","updatedBy":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5342e4b-ec24-4923-bdb2-8e70768c9228","type":"Microsoft.Authorization/roleAssignments","name":"a5342e4b-ec24-4923-bdb2-8e70768c9228"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"03aaab22-55ae-4c18-9086-398117b23567","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-10-16T05:06:43.7392757Z","updatedOn":"2024-10-16T05:06:43.7392757Z","createdBy":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","updatedBy":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95bc3a8a-95ea-45f8-99db-32a25ae2df4f","type":"Microsoft.Authorization/roleAssignments","name":"95bc3a8a-95ea-45f8-99db-32a25ae2df4f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6","principalId":"89baed5a-f293-408f-842d-830144353594","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-10-29T05:35:17.7156846Z","updatedOn":"2024-10-29T05:35:17.7156846Z","createdBy":"062d5f19-c525-48c9-a809-3be8685b85d0","updatedBy":"062d5f19-c525-48c9-a809-3be8685b85d0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f40601a8-a2e1-44c8-914c-a50833abbfa7","type":"Microsoft.Authorization/roleAssignments","name":"f40601a8-a2e1-44c8-914c-a50833abbfa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4339b7cf-9826-4e41-b4ed-c7f4505dac08","principalId":"062d5f19-c525-48c9-a809-3be8685b85d0","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T06:13:34.2933363Z","updatedOn":"2024-11-08T06:13:34.2933363Z","createdBy":"062d5f19-c525-48c9-a809-3be8685b85d0","updatedBy":"062d5f19-c525-48c9-a809-3be8685b85d0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2851cec2-e2d3-4ece-a307-b835afca850d","type":"Microsoft.Authorization/roleAssignments","name":"2851cec2-e2d3-4ece-a307-b835afca850d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bd681be3-da8c-4a0f-a9c0-03bc8e8ea83b","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:37:45.5923905Z","updatedOn":"2024-11-08T10:37:45.5923905Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d196386a-5d26-4376-96c4-b9183d3c4111","type":"Microsoft.Authorization/roleAssignments","name":"d196386a-5d26-4376-96c4-b9183d3c4111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31ea12a7-b6d7-4db9-a4e8-66c0378b1294","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:40:02.8703751Z","updatedOn":"2024-11-08T10:40:02.8703751Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c297cc0-3715-4970-9e9e-d8f0e50ad396","type":"Microsoft.Authorization/roleAssignments","name":"6c297cc0-3715-4970-9e9e-d8f0e50ad396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"25b04d57-dac8-4a3d-b025-36e6322d244e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:40:02.5216508Z","updatedOn":"2024-11-08T10:40:02.5216508Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/561d4cda-751e-444d-8396-23cdba088173","type":"Microsoft.Authorization/roleAssignments","name":"561d4cda-751e-444d-8396-23cdba088173"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0870daa0-ca35-42cf-9cd8-d2250494b435","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:41:59.9419003Z","updatedOn":"2024-11-08T10:41:59.9419003Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8675c31a-49b1-4bc9-9077-c80407c7f8a6","type":"Microsoft.Authorization/roleAssignments","name":"8675c31a-49b1-4bc9-9077-c80407c7f8a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4489ef34-dc01-4513-a845-ce2bca5f6c91","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:42:00.0639360Z","updatedOn":"2024-11-08T10:42:00.0639360Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb5faa92-44dd-40bc-ad2a-794ac0ba1975","type":"Microsoft.Authorization/roleAssignments","name":"fb5faa92-44dd-40bc-ad2a-794ac0ba1975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d9a42fb9-7fae-4bcf-8653-f679dabf13af","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:44:15.7763371Z","updatedOn":"2024-11-08T10:44:15.7763371Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9898746d-3291-47b5-864b-eca320a6cd68","type":"Microsoft.Authorization/roleAssignments","name":"9898746d-3291-47b5-864b-eca320a6cd68"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d12e5126-6168-4ced-b1b2-fa4a1d5a50ce","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:45:59.3310346Z","updatedOn":"2024-11-08T10:45:59.3310346Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7476086b-b9de-47ee-bca7-efb145948ec8","type":"Microsoft.Authorization/roleAssignments","name":"7476086b-b9de-47ee-bca7-efb145948ec8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ae39378e-8d35-43fd-9949-6dd0b5710f82","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:45:59.4776470Z","updatedOn":"2024-11-08T10:45:59.4776470Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5bace8e-84f8-4557-aa7b-7daef56b8055","type":"Microsoft.Authorization/roleAssignments","name":"d5bace8e-84f8-4557-aa7b-7daef56b8055"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b2af5c0-cd7e-4661-ab0a-1649ef5b746b","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:47:41.3209203Z","updatedOn":"2024-11-08T10:47:41.3209203Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e269a985-8021-4bb3-ae1c-cd53520ccf3f","type":"Microsoft.Authorization/roleAssignments","name":"e269a985-8021-4bb3-ae1c-cd53520ccf3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e1ab5672-abb7-4468-aa2d-e0208b50709b","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:49:46.9757905Z","updatedOn":"2024-11-08T10:49:46.9757905Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d69b2ec-2b37-4380-93e3-abde280c1d1e","type":"Microsoft.Authorization/roleAssignments","name":"6d69b2ec-2b37-4380-93e3-abde280c1d1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"69a25840-8928-4ea0-a8a5-e44d0fdaee5f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:51:23.2904044Z","updatedOn":"2024-11-08T10:51:23.2904044Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d8b7afd5-7298-43d7-9001-e44cd797fc31","type":"Microsoft.Authorization/roleAssignments","name":"d8b7afd5-7298-43d7-9001-e44cd797fc31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"30716a40-adee-4985-86bd-37216988befe","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:51:23.4708102Z","updatedOn":"2024-11-08T10:51:23.4708102Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/198d4bf9-b09a-446e-ba32-ac281f19f4e2","type":"Microsoft.Authorization/roleAssignments","name":"198d4bf9-b09a-446e-ba32-ac281f19f4e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9c06c48a-ca4d-495e-9619-cafd0f9e6cff","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:52:47.8254070Z","updatedOn":"2024-11-08T10:52:47.8254070Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b00b4529-ba4c-4dcf-9324-bf0673b0a1b6","type":"Microsoft.Authorization/roleAssignments","name":"b00b4529-ba4c-4dcf-9324-bf0673b0a1b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2986ba8-619f-4145-b4fb-d0d1ba036ac3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T10:54:00.1358682Z","updatedOn":"2024-11-08T10:54:00.1358682Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d70053f-d6d4-4390-a4a6-c40eea76a2d0","type":"Microsoft.Authorization/roleAssignments","name":"9d70053f-d6d4-4390-a4a6-c40eea76a2d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a02bd8e8-0f07-4cd3-b319-e6d5786c5c94","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-08T12:14:25.2095782Z","updatedOn":"2024-11-08T12:14:25.2095782Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ec17bcce-1dc8-49be-b841-7fe5759217ec","type":"Microsoft.Authorization/roleAssignments","name":"ec17bcce-1dc8-49be-b841-7fe5759217ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"0f876fc3-c749-4607-ad50-c13ef1569cea","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-18T06:50:25.4611645Z","updatedOn":"2024-11-18T06:50:25.4611645Z","createdBy":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","updatedBy":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e305ff00-18d4-41a6-b010-bbd9a68a8eb5","type":"Microsoft.Authorization/roleAssignments","name":"e305ff00-18d4-41a6-b010-bbd9a68a8eb5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"147fec72-36d6-493e-87a4-2bc247cab1d7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:41.5635170Z","updatedOn":"2024-11-19T04:38:41.5635170Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/97b3ffc9-cc20-4a26-957a-2b1beef64a2d","type":"Microsoft.Authorization/roleAssignments","name":"97b3ffc9-cc20-4a26-957a-2b1beef64a2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"d12e5126-6168-4ced-b1b2-fa4a1d5a50ce","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:41.6019589Z","updatedOn":"2024-11-19T04:38:41.6019589Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3308def9-1307-4471-b472-697c68aecf4c","type":"Microsoft.Authorization/roleAssignments","name":"3308def9-1307-4471-b472-697c68aecf4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"e1ab5672-abb7-4468-aa2d-e0208b50709b","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:41.5746560Z","updatedOn":"2024-11-19T04:38:41.5746560Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3140fc8-45e3-4ac3-9e92-babbeae267de","type":"Microsoft.Authorization/roleAssignments","name":"e3140fc8-45e3-4ac3-9e92-babbeae267de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"31ea12a7-b6d7-4db9-a4e8-66c0378b1294","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:41.6505168Z","updatedOn":"2024-11-19T04:38:41.6505168Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1f0f6a8-a301-4bdf-b15b-49947921c548","type":"Microsoft.Authorization/roleAssignments","name":"b1f0f6a8-a301-4bdf-b15b-49947921c548"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"062d5f19-c525-48c9-a809-3be8685b85d0","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:42.2002492Z","updatedOn":"2024-11-19T04:38:42.2002492Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/97fa1bc1-a4de-41af-a5d8-52737c14e47b","type":"Microsoft.Authorization/roleAssignments","name":"97fa1bc1-a4de-41af-a5d8-52737c14e47b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:42.2211810Z","updatedOn":"2024-11-19T04:38:42.2211810Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebb5d5e0-6d4d-494c-b640-4d74579ff7ed","type":"Microsoft.Authorization/roleAssignments","name":"ebb5d5e0-6d4d-494c-b640-4d74579ff7ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"4b2af5c0-cd7e-4661-ab0a-1649ef5b746b","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:42.2303665Z","updatedOn":"2024-11-19T04:38:42.2303665Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa6d6bc-0f93-41f2-8331-16d627ab1a46","type":"Microsoft.Authorization/roleAssignments","name":"8aa6d6bc-0f93-41f2-8331-16d627ab1a46"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"7ecfd123-73a8-4c5a-b57b-df502769b4e7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:42.2305205Z","updatedOn":"2024-11-19T04:38:42.2305205Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b9be734-d282-482d-b290-c6c95ef15b72","type":"Microsoft.Authorization/roleAssignments","name":"5b9be734-d282-482d-b290-c6c95ef15b72"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"d9a42fb9-7fae-4bcf-8653-f679dabf13af","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:42.3461907Z","updatedOn":"2024-11-19T04:38:42.3461907Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5680b11-da9d-4db3-a6d9-f81115ca83b0","type":"Microsoft.Authorization/roleAssignments","name":"f5680b11-da9d-4db3-a6d9-f81115ca83b0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"bd681be3-da8c-4a0f-a9c0-03bc8e8ea83b","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:42.2491596Z","updatedOn":"2024-11-19T04:38:42.2491596Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d8b76d1c-371b-4388-b9b0-a77311d228fb","type":"Microsoft.Authorization/roleAssignments","name":"d8b76d1c-371b-4388-b9b0-a77311d228fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"3679403a-91ca-4c30-90d1-29a0572c26e5","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:46.2987830Z","updatedOn":"2024-11-19T04:38:46.2987830Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ca56d57-c4c7-4cc1-b3cf-3d24bdb1eddb","type":"Microsoft.Authorization/roleAssignments","name":"8ca56d57-c4c7-4cc1-b3cf-3d24bdb1eddb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"30716a40-adee-4985-86bd-37216988befe","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:46.6000859Z","updatedOn":"2024-11-19T04:38:46.6000859Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ea84c66-cd77-4957-bd16-0daaf0aae7a3","type":"Microsoft.Authorization/roleAssignments","name":"3ea84c66-cd77-4957-bd16-0daaf0aae7a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"e6cea611-e43c-4cf9-9100-4c98fa51644f","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:46.5809565Z","updatedOn":"2024-11-19T04:38:46.5809565Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/afe0c0d0-0255-4bf2-8d0d-134c90d1e8cc","type":"Microsoft.Authorization/roleAssignments","name":"afe0c0d0-0255-4bf2-8d0d-134c90d1e8cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"234bb4cf-4ce6-4532-a98c-51cbb5955146","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:46.6723623Z","updatedOn":"2024-11-19T04:38:46.6723623Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc877687-472a-4e58-97f7-684f55394feb","type":"Microsoft.Authorization/roleAssignments","name":"bc877687-472a-4e58-97f7-684f55394feb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"4e26425c-bd9d-4faa-82de-187bbcc137b4","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:46.9751758Z","updatedOn":"2024-11-19T04:38:46.9751758Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f79f0ddd-f26b-4b47-9a13-f946823edb53","type":"Microsoft.Authorization/roleAssignments","name":"f79f0ddd-f26b-4b47-9a13-f946823edb53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"4603767a-0e74-4b03-a80f-7bebfddc052f","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:47.1054539Z","updatedOn":"2024-11-19T04:38:47.1054539Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ba01eb3-2ed3-4cde-9d88-1a3e60426dc3","type":"Microsoft.Authorization/roleAssignments","name":"9ba01eb3-2ed3-4cde-9d88-1a3e60426dc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"9c06c48a-ca4d-495e-9619-cafd0f9e6cff","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-11-19T04:38:46.3562346Z","updatedOn":"2024-11-19T04:38:46.3562346Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/818e169f-db0e-47e4-8a1d-4f303fc25958","type":"Microsoft.Authorization/roleAssignments","name":"818e169f-db0e-47e4-8a1d-4f303fc25958"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"bb5f4067-ecf7-44ea-86be-c7ff5e3c03b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-21T03:21:25.0411971Z","updatedOn":"2024-11-21T03:21:25.0411971Z","createdBy":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","updatedBy":"7c7e34a2-6ea5-4d7f-a850-209630b9a209","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/930bacb5-8947-4673-a5e6-b4fada2e8a3f","type":"Microsoft.Authorization/roleAssignments","name":"930bacb5-8947-4673-a5e6-b4fada2e8a3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"5966ab0c-d810-4d19-865a-1331fc86c6ec","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-12-10T05:38:08.3313086Z","updatedOn":"2024-12-10T05:38:08.3313086Z","createdBy":"d9a42fb9-7fae-4bcf-8653-f679dabf13af","updatedBy":"d9a42fb9-7fae-4bcf-8653-f679dabf13af","delegatedManagedIdentityResourceId":null,"description":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b924d26e-7fdf-46b9-af95-8584da87a79e","type":"Microsoft.Authorization/roleAssignments","name":"b924d26e-7fdf-46b9-af95-8584da87a79e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168","principalId":"d9a42fb9-7fae-4bcf-8653-f679dabf13af","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-12-10T07:52:45.6165412Z","updatedOn":"2024-12-10T07:52:45.6165412Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5802b4ff-0ef4-4ba8-ac5d-b3911f6284c3","type":"Microsoft.Authorization/roleAssignments","name":"5802b4ff-0ef4-4ba8-ac5d-b3911f6284c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168","principalId":"5966ab0c-d810-4d19-865a-1331fc86c6ec","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2024-12-10T08:30:31.9493594Z","updatedOn":"2024-12-10T08:30:31.9493594Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40f5331b-02d5-431a-acd3-0bbee2f2226b","type":"Microsoft.Authorization/roleAssignments","name":"40f5331b-02d5-431a-acd3-0bbee2f2226b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"f4ed124d-6acb-49a5-a6ac-bd96f35d8d16","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-12-31T04:31:37.0614893Z","updatedOn":"2024-12-31T04:31:37.0614893Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a11d66f1-47f1-445f-abde-96a5a0b38896","type":"Microsoft.Authorization/roleAssignments","name":"a11d66f1-47f1-445f-abde-96a5a0b38896"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"e9da4467-12ff-4334-8179-c99abf0ffd5a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-01-03T03:16:25.0314740Z","updatedOn":"2025-02-12T03:56:03.8150937Z","createdBy":"0f876fc3-c749-4607-ad50-c13ef1569cea","updatedBy":"0f876fc3-c749-4607-ad50-c13ef1569cea","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f153333-5be9-4f43-abd2-04561777c8b0","type":"Microsoft.Authorization/roleAssignments","name":"2f153333-5be9-4f43-abd2-04561777c8b0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"938bfc7a-f278-4412-b830-21a5e6fa9c5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-01-06T05:12:52.5245020Z","updatedOn":"2025-01-06T05:12:52.5245020Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/766e05d9-d9aa-4cd5-80c6-78df323e4bca","type":"Microsoft.Authorization/roleAssignments","name":"766e05d9-d9aa-4cd5-80c6-78df323e4bca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"0581142e-ae8f-4bc0-9a0d-ffb7cbad05b2","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-01-06T06:52:59.4863328Z","updatedOn":"2025-01-06T06:52:59.4863328Z","createdBy":"9ac534f1-d577-4034-a32d-48de400dacbf","updatedBy":"9ac534f1-d577-4034-a32d-48de400dacbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00114e05-55f1-47f9-bdd9-2ae594f5bfc1","type":"Microsoft.Authorization/roleAssignments","name":"00114e05-55f1-47f9-bdd9-2ae594f5bfc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"52a2fda8-c59f-4bde-8c4d-48ffa466fefc","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2025-01-06T09:25:51.7148423Z","updatedOn":"2025-01-06T09:25:51.7148423Z","createdBy":"9ac534f1-d577-4034-a32d-48de400dacbf","updatedBy":"9ac534f1-d577-4034-a32d-48de400dacbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f69099a0-aa16-4818-8d37-ce0e57f2d2f4","type":"Microsoft.Authorization/roleAssignments","name":"f69099a0-aa16-4818-8d37-ce0e57f2d2f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/69566ab7-960f-475b-8e7c-b3118f30c6bd","principalId":"f4ed124d-6acb-49a5-a6ac-bd96f35d8d16","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-01-09T03:23:18.1816706Z","updatedOn":"2025-01-09T03:23:18.1816706Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e75669a6-1f74-4beb-a9b0-f22e5cfa72cb","type":"Microsoft.Authorization/roleAssignments","name":"e75669a6-1f74-4beb-a9b0-f22e5cfa72cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6459773f-c52b-4f0f-98a6-3f8d11fe573a","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-01-16T07:48:58.1747218Z","updatedOn":"2025-01-16T07:48:58.1747218Z","createdBy":"d5bc1c89-bc17-41b2-b597-afcd4a60247b","updatedBy":"d5bc1c89-bc17-41b2-b597-afcd4a60247b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58a20198-be03-4c5d-b325-9fa371e706f4","type":"Microsoft.Authorization/roleAssignments","name":"58a20198-be03-4c5d-b325-9fa371e706f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fb30c8c7-1e22-4478-96bb-9fffeec48f10","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-01-16T09:06:44.6751640Z","updatedOn":"2025-01-16T09:06:44.6751640Z","createdBy":"d5bc1c89-bc17-41b2-b597-afcd4a60247b","updatedBy":"d5bc1c89-bc17-41b2-b597-afcd4a60247b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b11cc3a8-2c9b-41a1-a07a-483547b27037","type":"Microsoft.Authorization/roleAssignments","name":"b11cc3a8-2c9b-41a1-a07a-483547b27037"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ac324a5e-5f76-4e55-a49d-082b493ff09d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-01-19T03:26:09.8750986Z","updatedOn":"2025-01-19T03:26:09.8750986Z","createdBy":"147fec72-36d6-493e-87a4-2bc247cab1d7","updatedBy":"147fec72-36d6-493e-87a4-2bc247cab1d7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b81d4044-0432-4c4f-85b1-c27f0d714264","type":"Microsoft.Authorization/roleAssignments","name":"b81d4044-0432-4c4f-85b1-c27f0d714264"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/adb29209-aa1d-457b-a786-c913953d2891","principalId":"0f876fc3-c749-4607-ad50-c13ef1569cea","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-01-20T02:49:45.7725290Z","updatedOn":"2025-01-20T02:49:45.7725290Z","createdBy":"0f876fc3-c749-4607-ad50-c13ef1569cea","updatedBy":"0f876fc3-c749-4607-ad50-c13ef1569cea","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f866aa00-571f-446e-be20-9417ff5733b7","type":"Microsoft.Authorization/roleAssignments","name":"f866aa00-571f-446e-be20-9417ff5733b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"0f876fc3-c749-4607-ad50-c13ef1569cea","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-01-23T03:20:25.7450100Z","updatedOn":"2025-01-23T03:20:25.7450100Z","createdBy":"0f876fc3-c749-4607-ad50-c13ef1569cea","updatedBy":"0f876fc3-c749-4607-ad50-c13ef1569cea","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8099f3f3-f605-46e5-a0eb-f0b55a487ad4","type":"Microsoft.Authorization/roleAssignments","name":"8099f3f3-f605-46e5-a0eb-f0b55a487ad4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893","principalId":"31ea12a7-b6d7-4db9-a4e8-66c0378b1294","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-01-27T02:08:17.0810662Z","updatedOn":"2025-01-27T02:08:17.0810662Z","createdBy":"31ea12a7-b6d7-4db9-a4e8-66c0378b1294","updatedBy":"31ea12a7-b6d7-4db9-a4e8-66c0378b1294","delegatedManagedIdentityResourceId":null,"description":""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/626d93de-afd8-41bd-af46-2c195e7b320c","type":"Microsoft.Authorization/roleAssignments","name":"626d93de-afd8-41bd-af46-2c195e7b320c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"69a25840-8928-4ea0-a8a5-e44d0fdaee5f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2025-01-27T06:54:48.8093286Z","updatedOn":"2025-01-27T06:54:48.8093286Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4945d9c-ef8b-4b8a-a169-aa220b66283d","type":"Microsoft.Authorization/roleAssignments","name":"d4945d9c-ef8b-4b8a-a169-aa220b66283d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a997346a-1989-4db6-b799-cdebd9e16bc1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-02-03T03:18:23.5719519Z","updatedOn":"2025-02-03T03:18:23.5719519Z","createdBy":"062d5f19-c525-48c9-a809-3be8685b85d0","updatedBy":"062d5f19-c525-48c9-a809-3be8685b85d0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5ffae682-2291-48d6-88b9-b18be7ab49e0","type":"Microsoft.Authorization/roleAssignments","name":"5ffae682-2291-48d6-88b9-b18be7ab49e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"52a2fda8-c59f-4bde-8c4d-48ffa466fefc","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-02-17T08:52:28.5729551Z","updatedOn":"2025-02-17T08:52:28.5729551Z","createdBy":"9ac534f1-d577-4034-a32d-48de400dacbf","updatedBy":"9ac534f1-d577-4034-a32d-48de400dacbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/97f00578-0bdd-436d-98af-1eb1615ecc0b","type":"Microsoft.Authorization/roleAssignments","name":"97f00578-0bdd-436d-98af-1eb1615ecc0b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-03-04T06:00:38.1821965Z","updatedOn":"2025-03-04T06:00:38.1821965Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de8ed70a-ddc3-47c2-a2af-c0ac9a4b4844","type":"Microsoft.Authorization/roleAssignments","name":"de8ed70a-ddc3-47c2-a2af-c0ac9a4b4844"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"977a498f-a90c-46c0-bff5-5fc6b0d4d527","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","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}))","conditionVersion":"2.0","createdOn":"2025-03-06T03:56:03.6228304Z","updatedOn":"2025-03-06T03:56:03.6228304Z","createdBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","updatedBy":"794f8d45-6eb3-4e1e-bc62-c01317eaeac1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d43f516-15af-4822-a1a1-efd803d46bba","type":"Microsoft.Authorization/roleAssignments","name":"1d43f516-15af-4822-a1a1-efd803d46bba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18500a29-7fe2-46b2-a342-b16a415e101d","principalId":"4603767a-0e74-4b03-a80f-7bebfddc052f","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-03-07T04:50:24.9603373Z","updatedOn":"2025-03-07T04:50:24.9603373Z","createdBy":"4603767a-0e74-4b03-a80f-7bebfddc052f","updatedBy":"4603767a-0e74-4b03-a80f-7bebfddc052f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c4eb356-2ae5-47b9-90b1-5e5cd2208a4e","type":"Microsoft.Authorization/roleAssignments","name":"5c4eb356-2ae5-47b9-90b1-5e5cd2208a4e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0e5f05e5-9ab9-446b-b98d-1e2157c94125","principalId":"30716a40-adee-4985-86bd-37216988befe","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-03-11T06:00:05.4514643Z","updatedOn":"2025-03-11T06:00:05.4514643Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b76287e1-2027-4750-b818-aec4692ff0b0","type":"Microsoft.Authorization/roleAssignments","name":"b76287e1-2027-4750-b818-aec4692ff0b0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0e5f05e5-9ab9-446b-b98d-1e2157c94125","principalId":"69a25840-8928-4ea0-a8a5-e44d0fdaee5f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-03-11T06:00:08.1563237Z","updatedOn":"2025-03-11T06:00:08.1563237Z","createdBy":"30716a40-adee-4985-86bd-37216988befe","updatedBy":"30716a40-adee-4985-86bd-37216988befe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/446b4259-4e74-4cb2-be0f-4013b3f733e0","type":"Microsoft.Authorization/roleAssignments","name":"446b4259-4e74-4cb2-be0f-4013b3f733e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"487c6b3f-b3ae-4a77-b145-6790ccd0473d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-03-12T01:04:36.7387446Z","updatedOn":"2025-03-12T01:04:36.7387446Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f59a8c0-da83-4035-8731-c53d70cabfd6","type":"Microsoft.Authorization/roleAssignments","name":"2f59a8c0-da83-4035-8731-c53d70cabfd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"a990f2a7-8d68-454f-b228-1e9557bc233d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_role_assign000001","condition":null,"conditionVersion":null,"createdOn":"2025-03-27T05:45:42.7210631Z","updatedOn":"2025-03-27T05:45:42.7210631Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_role_assign000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"7fe989f6-5c63-416a-94ca-46e5fe1297c5","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/admintest","condition":null,"conditionVersion":null,"createdOn":"2025-02-18T08:44:40.9777560Z","updatedOn":"2025-02-18T08:44:40.9777560Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/admintest/providers/Microsoft.Authorization/roleAssignments/43f1843d-1137-4009-bdb6-f730e7d50e53","type":"Microsoft.Authorization/roleAssignments","name":"43f1843d-1137-4009-bdb6-f730e7d50e53"}]}' + headers: + cache-control: + - no-cache + content-length: + - '251711' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 27 Mar 2025 05:45:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=0d504196-1423-4569-9a6e-15149656f0ee/southeastasia/6e9811be-3450-4b8c-b2e4-7652083bfd21 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 15F3752377FD4339BEB385F013A0FFEA Ref B: MAA201060513047 Ref C: 2025-03-27T05:45:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - role assignment list + Connection: + - keep-alive + ParameterSetName: + - --scope --fill-principal-name + User-Agent: + - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.9 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_role_assign000001/providers/Microsoft.Authorization/roleDefinitions?api-version=2022-05-01-preview + response: + body: + string: "{\"value\":[{\"properties\":{\"roleName\":\"AcrPush\",\"type\":\"BuiltInRole\",\"description\":\"acr + push\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/pull/read\",\"Microsoft.ContainerRegistry/registries/push/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-10-29T17:52:32.5201177Z\",\"updatedOn\":\"2021-11-11T20:13:07.4993029Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8311e382-0749-4cb8-b61a-304f252e45ec\"},{\"properties\":{\"roleName\":\"API + Management Service Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can + manage service and the APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8650193Z\",\"updatedOn\":\"2021-11-11T20:13:08.3179618Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"312a565d-c81f-4fd8-895a-4e21e48d571c\"},{\"properties\":{\"roleName\":\"AcrPull\",\"type\":\"BuiltInRole\",\"description\":\"acr + pull\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/pull/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-10-22T19:01:56.8227182Z\",\"updatedOn\":\"2021-11-11T20:13:08.8779328Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f951dda-4ed3-4680-a7ca-43fe172d538d\"},{\"properties\":{\"roleName\":\"AcrImageSigner\",\"type\":\"BuiltInRole\",\"description\":\"acr + image signer\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/sign/write\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/trustedCollections/write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-03-15T23:23:08.4038322Z\",\"updatedOn\":\"2021-11-11T20:13:09.6070759Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6cef56e8-d556-48e5-a04f-b8e64114680f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6cef56e8-d556-48e5-a04f-b8e64114680f\"},{\"properties\":{\"roleName\":\"AcrDelete\",\"type\":\"BuiltInRole\",\"description\":\"acr + delete\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/artifacts/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-11T20:19:31.6682804Z\",\"updatedOn\":\"2021-11-11T20:13:09.9631744Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c2f4ef07-c644-48eb-af81-4b1b4947fb11\"},{\"properties\":{\"roleName\":\"AcrQuarantineReader\",\"type\":\"BuiltInRole\",\"description\":\"acr + quarantine data reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/quarantine/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/read\"],\"notDataActions\":[]}],\"createdOn\":\"2018-03-16T00:27:39.9596835Z\",\"updatedOn\":\"2021-11-11T20:13:10.3188052Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cdda3590-29a3-44f6-95f2-9f980659eb04\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cdda3590-29a3-44f6-95f2-9f980659eb04\"},{\"properties\":{\"roleName\":\"AcrQuarantineWriter\",\"type\":\"BuiltInRole\",\"description\":\"acr + quarantine data writer\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/quarantine/read\",\"Microsoft.ContainerRegistry/registries/quarantine/write\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/read\",\"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-03-16T00:26:37.5871820Z\",\"updatedOn\":\"2021-11-11T20:13:11.3488079Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c8d4ff99-41c3-41a8-9f60-21dfdad59608\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c8d4ff99-41c3-41a8-9f60-21dfdad59608\"},{\"properties\":{\"roleName\":\"API + Management Service Operator Role\",\"type\":\"BuiltInRole\",\"description\":\"Can + manage service but not the APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/*/read\",\"Microsoft.ApiManagement/service/backup/action\",\"Microsoft.ApiManagement/service/delete\",\"Microsoft.ApiManagement/service/managedeployments/action\",\"Microsoft.ApiManagement/service/read\",\"Microsoft.ApiManagement/service/restore/action\",\"Microsoft.ApiManagement/service/updatecertificate/action\",\"Microsoft.ApiManagement/service/updatehostname/action\",\"Microsoft.ApiManagement/service/write\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.ApiManagement/service/users/keys/read\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-11-09T00:03:42.1194019Z\",\"updatedOn\":\"2021-11-11T20:13:11.5244023Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"},{\"properties\":{\"roleName\":\"API + Management Service Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Read-only + access to service and APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/*/read\",\"Microsoft.ApiManagement/service/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.ApiManagement/service/users/keys/read\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-11-09T00:26:45.1540473Z\",\"updatedOn\":\"2021-11-11T20:13:11.8704466Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"71522526-b88f-4d52-b57f-d31fc3546d0d\"},{\"properties\":{\"roleName\":\"Application + Insights Component Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can + manage Application Insights components\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/generateLiveToken/read\",\"Microsoft.Insights/metricAlerts/*\",\"Microsoft.Insights/components/*\",\"Microsoft.Insights/scheduledqueryrules/*\",\"Microsoft.Insights/topology/read\",\"Microsoft.Insights/transactions/read\",\"Microsoft.Insights/webtests/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:12.6428401Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ae349356-3a1b-4a5e-921d-050484c6347e\"},{\"properties\":{\"roleName\":\"Application + Insights Snapshot Debugger\",\"type\":\"BuiltInRole\",\"description\":\"Gives + user permission to use Application Insights Snapshot Debugger features\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/components/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-19T21:25:12.3728747Z\",\"updatedOn\":\"2021-11-11T20:13:13.0034435Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"},{\"properties\":{\"roleName\":\"Attestation + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read the attestation + provider properties\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Attestation/attestationProviders/attestation/read\",\"Microsoft.Attestation/attestationProviders/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-25T19:42:59.1576710Z\",\"updatedOn\":\"2024-07-12T17:55:22.4994343Z\",\"createdBy\":null,\"updatedBy\":\"SYSTEM\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd1bd22b-8476-40bc-a0bc-69b95687b9f3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd1bd22b-8476-40bc-a0bc-69b95687b9f3\"},{\"properties\":{\"roleName\":\"Automation + Job Operator\",\"type\":\"BuiltInRole\",\"description\":\"Create and Manage + Jobs using Automation Runbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\"Microsoft.Automation/automationAccounts/jobs/read\",\"Microsoft.Automation/automationAccounts/jobs/resume/action\",\"Microsoft.Automation/automationAccounts/jobs/stop/action\",\"Microsoft.Automation/automationAccounts/jobs/streams/read\",\"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\"Microsoft.Automation/automationAccounts/jobs/write\",\"Microsoft.Automation/automationAccounts/jobs/output/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-19T20:52:41.0020018Z\",\"updatedOn\":\"2021-11-11T20:13:13.7065660Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4fe576fe-1146-4730-92eb-48519fa6bf9f\"},{\"properties\":{\"roleName\":\"Automation + Runbook Operator\",\"type\":\"BuiltInRole\",\"description\":\"Read Runbook + properties - to be able to create Jobs of the runbook.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Automation/automationAccounts/runbooks/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-19T20:47:49.5640674Z\",\"updatedOn\":\"2021-11-11T20:13:13.8815461Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"},{\"properties\":{\"roleName\":\"Automation + Operator\",\"type\":\"BuiltInRole\",\"description\":\"Automation Operators + are able to start, stop, suspend, and resume jobs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\"Microsoft.Automation/automationAccounts/jobs/read\",\"Microsoft.Automation/automationAccounts/jobs/resume/action\",\"Microsoft.Automation/automationAccounts/jobs/stop/action\",\"Microsoft.Automation/automationAccounts/jobs/streams/read\",\"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\"Microsoft.Automation/automationAccounts/jobs/write\",\"Microsoft.Automation/automationAccounts/jobSchedules/read\",\"Microsoft.Automation/automationAccounts/jobSchedules/write\",\"Microsoft.Automation/automationAccounts/linkedWorkspace/read\",\"Microsoft.Automation/automationAccounts/read\",\"Microsoft.Automation/automationAccounts/runbooks/read\",\"Microsoft.Automation/automationAccounts/schedules/read\",\"Microsoft.Automation/automationAccounts/schedules/write\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Automation/automationAccounts/jobs/output/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-08-18T01:05:03.3916130Z\",\"updatedOn\":\"2021-11-11T20:13:14.0515408Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d3881f73-407a-4167-8283-e981cbba0404\"},{\"properties\":{\"roleName\":\"Avere + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can create and manage + an Avere vFXT cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/*/read\",\"Microsoft.Compute/availabilitySets/*\",\"Microsoft.Compute/proximityPlacementGroups/*\",\"Microsoft.Compute/virtualMachines/*\",\"Microsoft.Compute/disks/*\",\"Microsoft.Network/*/read\",\"Microsoft.Network/networkInterfaces/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/*/read\",\"Microsoft.Storage/storageAccounts/*\",\"Microsoft.Support/*\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"],\"notDataActions\":[]}],\"createdOn\":\"2019-03-18T20:00:58.9207889Z\",\"updatedOn\":\"2021-11-11T20:13:14.2265665Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4f8fab4f-1852-4a58-a46a-8eaf358af14a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4f8fab4f-1852-4a58-a46a-8eaf358af14a\"},{\"properties\":{\"roleName\":\"Avere + Operator\",\"type\":\"BuiltInRole\",\"description\":\"Used by the Avere vFXT + cluster to manage the cluster\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"],\"notDataActions\":[]}],\"createdOn\":\"2019-03-18T20:02:38.3399857Z\",\"updatedOn\":\"2021-11-11T20:13:15.1065886Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service Cluster Admin Role\",\"type\":\"BuiltInRole\",\"description\":\"List + cluster admin credential action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/managedClusters/listClusterAdminCredential/action\",\"Microsoft.ContainerService/managedClusters/accessProfiles/listCredential/action\",\"Microsoft.ContainerService/managedClusters/read\",\"Microsoft.ContainerService/managedClusters/runcommand/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-08-15T21:38:18.5953853Z\",\"updatedOn\":\"2022-05-17T03:53:30.0905246Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service Cluster User Role\",\"type\":\"BuiltInRole\",\"description\":\"List + cluster user credential action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\",\"Microsoft.ContainerService/managedClusters/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-08-15T22:04:53.4037241Z\",\"updatedOn\":\"2021-11-11T20:13:20.4351976Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4abbcc35-e782-43d8-92c5-2d3f1bd2253f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4abbcc35-e782-43d8-92c5-2d3f1bd2253f\"},{\"properties\":{\"roleName\":\"Azure + Maps Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Grants access + to read map related data from an Azure maps account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Maps/accounts/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2018-10-05T19:47:03.4723070Z\",\"updatedOn\":\"2021-11-11T20:13:20.9582685Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\"},{\"properties\":{\"roleName\":\"Azure + Stack Registration Owner\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage Azure Stack registrations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureStack/edgeSubscriptions/read\",\"Microsoft.AzureStack/registrations/products/*/action\",\"Microsoft.AzureStack/registrations/products/read\",\"Microsoft.AzureStack/registrations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-11-13T23:42:06.2161827Z\",\"updatedOn\":\"2021-11-11T20:13:23.2957820Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"},{\"properties\":{\"roleName\":\"Backup + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage backups, + but can't delete vaults and give access to others\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/certificates/*\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\"Microsoft.RecoveryServices/Vaults/usages/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\"Microsoft.RecoveryServices/Vaults/write\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\"Microsoft.RecoveryServices/vaults/operationStatus/read\",\"Microsoft.RecoveryServices/vaults/operationResults/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.Support/*\",\"Microsoft.DataProtection/locations/getBackupStatus/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/write\",\"Microsoft.DataProtection/backupVaults/backupInstances/delete\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\",\"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\"Microsoft.DataProtection/backupVaults/deletedBackupInstances/undelete/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/crossRegionRestore/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/validateCrossRegionRestore/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJobs/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJob/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchSecondaryRecoveryPoints/action\",\"Microsoft.DataProtection/backupVaults/backupPolicies/write\",\"Microsoft.DataProtection/backupVaults/backupPolicies/delete\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/operationResults/read\",\"Microsoft.DataProtection/backupVaults/write\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/read\",\"Microsoft.DataProtection/backupVaults/operationStatus/read\",\"Microsoft.DataProtection/locations/checkNameAvailability/action\",\"Microsoft.DataProtection/locations/checkFeatureSupport/action\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/locations/operationStatus/read\",\"Microsoft.DataProtection/locations/operationResults/read\",\"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\"Microsoft.DataProtection/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/delete\",\"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/read\",\"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/unlockDelete/action\",\"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/write\",\"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/read\",\"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/write\",\"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete\",\"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/unlockDelete/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/validateForModifyBackup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/SuspendBackups/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:12:15.7321344Z\",\"updatedOn\":\"2025-01-28T16:08:58.1344364Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e467623-bb1f-42f4-a55d-6e525e11384b\"},{\"properties\":{\"roleName\":\"Billing + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows read access to + billing data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Billing/*/read\",\"Microsoft.Commerce/*/read\",\"Microsoft.Consumption/*/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.CostManagement/*/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-25T02:13:38.9054151Z\",\"updatedOn\":\"2021-11-11T20:13:24.5342563Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"},{\"properties\":{\"roleName\":\"Backup + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view backup services, + but can't make changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/read\",\"Microsoft.RecoveryServices/Vaults/backupconfig/read\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"Microsoft.RecoveryServices/locations/backupCrrJobs/action\",\"Microsoft.RecoveryServices/locations/backupCrrJob/action\",\"Microsoft.RecoveryServices/locations/backupCrrOperationResults/read\",\"Microsoft.RecoveryServices/locations/backupCrrOperationsStatus/read\",\"Microsoft.DataProtection/locations/getBackupStatus/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/write\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\",\"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/operationResults/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/read\",\"Microsoft.DataProtection/backupVaults/operationStatus/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/locations/operationStatus/read\",\"Microsoft.DataProtection/locations/operationResults/read\",\"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\"Microsoft.DataProtection/operations/read\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJobs/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJob/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchSecondaryRecoveryPoints/action\",\"Microsoft.DataProtection/locations/checkFeatureSupport/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:18:41.3893065Z\",\"updatedOn\":\"2024-05-02T15:31:35.9703937Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a795c7a0-d4a2-40c1-ae25-d81f01202912\"},{\"properties\":{\"roleName\":\"Blockchain + Member Node Access (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for access to Blockchain Member nodes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Blockchain/blockchainMembers/transactionNodes/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Blockchain/blockchainMembers/transactionNodes/connect/action\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T10:33:01.9604839Z\",\"updatedOn\":\"2021-11-11T20:13:25.0558920Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/31a002a1-acaf-453e-8a5b-297c9ca1ea24\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"31a002a1-acaf-453e-8a5b-297c9ca1ea24\"},{\"properties\":{\"roleName\":\"BizTalk + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage BizTalk + services, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.BizTalkServices/BizTalk/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:25.2359269Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e3c6656-6cfa-4708-81fe-0de47ac73342\"},{\"properties\":{\"roleName\":\"CDN + Endpoint Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage + CDN endpoints, but can't grant access to other users.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Cdn/edgenodes/read\",\"Microsoft.Cdn/operationresults/*\",\"Microsoft.Cdn/profiles/endpoints/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2023-12-08T08:08:47.9865402Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"},{\"properties\":{\"roleName\":\"CDN + Profile Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage + CDN and Azure Front Door standard and premium profiles and their endpoints, + but can't grant access to other users.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Cdn/edgenodes/read\",\"Microsoft.Cdn/operationresults/*\",\"Microsoft.Cdn/profiles/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2023-12-07T16:26:04.2259189Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ec156ff8-a8d1-4d15-830c-5b80698ca432\"},{\"properties\":{\"roleName\":\"CDN + Profile Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view CDN profiles + and their endpoints, but can't make changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Cdn/edgenodes/read\",\"Microsoft.Cdn/operationresults/*\",\"Microsoft.Cdn/profiles/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Cdn/profiles/afdendpoints/validateCustomDomain/action\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Cdn/profiles/CheckResourceUsage/action\",\"Microsoft.Cdn/profiles/endpoints/CheckResourceUsage/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2024-01-29T16:00:37.3526635Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8f96442b-4075-438f-813d-ad51ab4019af\"},{\"properties\":{\"roleName\":\"Classic + Network Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage classic networks, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicNetwork/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:26.4433301Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"},{\"properties\":{\"roleName\":\"Classic + Storage Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage classic storage accounts, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicStorage/storageAccounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:26.6183566Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"},{\"properties\":{\"roleName\":\"Classic + Storage Account Key Operator Service Role\",\"type\":\"BuiltInRole\",\"description\":\"Classic + Storage Account Key Operators are allowed to list and regenerate keys on Classic + Storage Accounts\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-13T18:22:52.1461100Z\",\"updatedOn\":\"2021-11-11T20:13:26.9796021Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"},{\"properties\":{\"roleName\":\"ClearDB + MySQL DB Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage ClearDB MySQL databases, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"successbricks.cleardb/databases/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:27.1646373Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9106cda0-8a86-4e81-b686-29a22c54effe\"},{\"properties\":{\"roleName\":\"Classic + Virtual Machine Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage classic virtual machines, but not access to them, and not the virtual + network or storage account they\u2019re connected to.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicCompute/domainNames/*\",\"Microsoft.ClassicCompute/virtualMachines/*\",\"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\"Microsoft.ClassicNetwork/reservedIps/link/action\",\"Microsoft.ClassicNetwork/reservedIps/read\",\"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\"Microsoft.ClassicNetwork/virtualNetworks/read\",\"Microsoft.ClassicStorage/storageAccounts/disks/read\",\"Microsoft.ClassicStorage/storageAccounts/images/read\",\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-04-25T00:37:56.5416086Z\",\"updatedOn\":\"2021-11-11T20:13:27.3446332Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"},{\"properties\":{\"roleName\":\"Cognitive + Services User\",\"type\":\"BuiltInRole\",\"description\":\"Lets you read and + list keys of Cognitive Services.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.CognitiveServices/accounts/listkeys/action\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.Insights/logDefinitions/read\",\"Microsoft.Insights/metricdefinitions/read\",\"Microsoft.Insights/metrics/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/*\"],\"notDataActions\":[]}],\"createdOn\":\"2018-08-08T23:23:43.7701274Z\",\"updatedOn\":\"2021-11-11T20:13:27.5316443Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a97b65f3-24c7-4388-baec-2e87135dc908\"},{\"properties\":{\"roleName\":\"Cognitive + Services Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + read Cognitive Services data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-02-13T20:02:12.6849986Z\",\"updatedOn\":\"2024-10-11T18:50:23.3642018Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b59867f0-fa02-499b-be73-45a86b5b3e1c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b59867f0-fa02-499b-be73-45a86b5b3e1c\"},{\"properties\":{\"roleName\":\"Cognitive + Services Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + create, read, update, delete and manage keys of Cognitive Services.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.CognitiveServices/*\",\"Microsoft.Features/features/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Features/providers/features/register/action\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.Insights/logDefinitions/read\",\"Microsoft.Insights/metricdefinitions/read\",\"Microsoft.Insights/metrics/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-08-08T23:18:39.2257848Z\",\"updatedOn\":\"2021-11-11T20:13:27.9116230Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\"},{\"properties\":{\"roleName\":\"CosmosBackupOperator\",\"type\":\"BuiltInRole\",\"description\":\"Can + submit restore request for a Cosmos DB database or a container for an account\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DocumentDB/databaseAccounts/backup/action\",\"Microsoft.DocumentDB/databaseAccounts/restore/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-12-07T19:47:14.9651560Z\",\"updatedOn\":\"2021-11-11T20:13:28.4333692Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/db7b14f2-5adf-42da-9f96-f2ee17bab5cb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"db7b14f2-5adf-42da-9f96-f2ee17bab5cb\"},{\"properties\":{\"roleName\":\"Contributor\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\",\"Microsoft.Authorization/elevateAccess/Action\",\"Microsoft.Blueprint/blueprintAssignments/write\",\"Microsoft.Blueprint/blueprintAssignments/delete\",\"Microsoft.Compute/galleries/share/action\",\"Microsoft.Purview/consents/write\",\"Microsoft.Purview/consents/delete\",\"Microsoft.Resources/deploymentStacks/manageDenySetting/action\",\"Microsoft.Subscription/cancel/action\",\"Microsoft.Subscription/enable/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2024-11-20T20:16:17.1646587Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b24988ac-6180-42a0-ab88-20f7382dd24c\"},{\"properties\":{\"roleName\":\"Cosmos + DB Account Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Can read + Azure Cosmos DB Accounts data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.DocumentDB/*/read\",\"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\"Microsoft.Insights/MetricDefinitions/read\",\"Microsoft.Insights/Metrics/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-10-30T17:53:54.6005577Z\",\"updatedOn\":\"2021-11-11T20:13:28.7911765Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"},{\"properties\":{\"roleName\":\"Cost + Management Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can view + costs and manage cost configuration (e.g. budgets, exports)\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Consumption/*\",\"Microsoft.CostManagement/*\",\"Microsoft.Billing/billingPeriods/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Advisor/configurations/read\",\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Billing/billingProperty/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-14T16:09:22.8834827Z\",\"updatedOn\":\"2021-11-11T20:13:29.4851851Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"434105ed-43f6-45c7-a02f-909b2ba83430\"},{\"properties\":{\"roleName\":\"Cost + Management Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view cost + data and configuration (e.g. budgets, exports)\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Consumption/*/read\",\"Microsoft.CostManagement/*/read\",\"Microsoft.Billing/billingPeriods/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Advisor/configurations/read\",\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Billing/billingProperty/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-14T16:09:22.8834827Z\",\"updatedOn\":\"2021-11-11T20:13:29.6601800Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/72fafb9e-0641-4937-9268-a91bfd8191a3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"72fafb9e-0641-4937-9268-a91bfd8191a3\"},{\"properties\":{\"roleName\":\"Data + Box Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage + everything under Data Box Service except giving access to others.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Databox/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-07-27T08:28:42.7140210Z\",\"updatedOn\":\"2021-11-11T20:13:30.3737856Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/add466c9-e687-43fc-8d98-dfcf8d720be5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"add466c9-e687-43fc-8d98-dfcf8d720be5\"},{\"properties\":{\"roleName\":\"Data + Box Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage Data + Box Service except creating order or editing order details and giving access + to others.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Databox/*/read\",\"Microsoft.Databox/jobs/listsecrets/action\",\"Microsoft.Databox/jobs/listcredentials/action\",\"Microsoft.Databox/locations/availableSkus/action\",\"Microsoft.Databox/locations/validateInputs/action\",\"Microsoft.Databox/locations/regionConfiguration/action\",\"Microsoft.Databox/locations/validateAddress/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-07-27T08:26:21.9284772Z\",\"updatedOn\":\"2021-11-11T20:13:30.5546117Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\"},{\"properties\":{\"roleName\":\"Data + Factory Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Create and + manage data factories, as well as child resources within them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.DataFactory/dataFactories/*\",\"Microsoft.DataFactory/factories/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.EventGrid/eventSubscriptions/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:30.7420174Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"673868aa-7521-48a0-acc6-0f60742d39f5\"},{\"properties\":{\"roleName\":\"Data + Purger\",\"type\":\"BuiltInRole\",\"description\":\"Can purge analytics data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/components/*/read\",\"Microsoft.Insights/components/purge/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/purge/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-04-30T22:39:49.6167700Z\",\"updatedOn\":\"2021-11-11T20:13:31.2788395Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/150f5e0c-0603-4f03-8c7f-cf70034c4e90\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"150f5e0c-0603-4f03-8c7f-cf70034c4e90\"},{\"properties\":{\"roleName\":\"Data + Lake Analytics Developer\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you submit, monitor, and manage your own jobs but not create or delete Data + Lake Analytics accounts.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.BigAnalytics/accounts/*\",\"Microsoft.DataLakeAnalytics/accounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.BigAnalytics/accounts/Delete\",\"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\"Microsoft.BigAnalytics/accounts/Write\",\"Microsoft.DataLakeAnalytics/accounts/Delete\",\"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\"Microsoft.DataLakeAnalytics/accounts/Write\",\"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-10-20T00:33:29.3115234Z\",\"updatedOn\":\"2021-11-11T20:13:31.4688491Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"47b7735b-770e-4598-a7da-8b91488b4c88\"},{\"properties\":{\"roleName\":\"DevTest + Labs User\",\"type\":\"BuiltInRole\",\"description\":\"Lets you connect, start, + restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/virtualMachines/*/read\",\"Microsoft.Compute/virtualMachines/deallocate/action\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/restart/action\",\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.DevTestLab/*/read\",\"Microsoft.DevTestLab/labs/claimAnyVm/action\",\"Microsoft.DevTestLab/labs/createEnvironment/action\",\"Microsoft.DevTestLab/labs/ensureCurrentUserProfile/action\",\"Microsoft.DevTestLab/labs/formulas/delete\",\"Microsoft.DevTestLab/labs/formulas/read\",\"Microsoft.DevTestLab/labs/formulas/write\",\"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\"Microsoft.DevTestLab/labs/virtualmachines/listApplicableSchedules/action\",\"Microsoft.DevTestLab/labs/virtualMachines/getRdpFileContents/action\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\"Microsoft.Network/networkInterfaces/*/read\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/publicIPAddresses/*/read\",\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/listKeys/action\"],\"notActions\":[\"Microsoft.Compute/virtualMachines/vmSizes/read\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-08T21:52:45.0657582Z\",\"updatedOn\":\"2021-11-11T20:13:32.1746507Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"76283e04-6283-4c54-8f91-bcf1374a3c64\"},{\"properties\":{\"roleName\":\"DocumentDB + Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage DocumentDB accounts, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.DocumentDb/databaseAccounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:32.3496502Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5bd9cd88-fe45-4216-938b-f97437e15450\"},{\"properties\":{\"roleName\":\"DNS + Zone Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage + DNS zones and record sets in Azure DNS, but does not let you control who has + access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/dnsZones/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-10-15T23:33:25.9730842Z\",\"updatedOn\":\"2021-11-11T20:13:32.5233957Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"befefa01-2a29-4197-83a8-272ff33ce314\"},{\"properties\":{\"roleName\":\"EventGrid + EventSubscription Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage EventGrid event subscription operations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/eventSubscriptions/*\",\"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-10-08T23:27:28.3130743Z\",\"updatedOn\":\"2021-11-11T20:13:33.4166738Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/428e0ff0-5e57-4d9c-a221-2c70d0e0a443\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"428e0ff0-5e57-4d9c-a221-2c70d0e0a443\"},{\"properties\":{\"roleName\":\"EventGrid + EventSubscription Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you read EventGrid event subscriptions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/eventSubscriptions/read\",\"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-10-09T17:29:28.1417894Z\",\"updatedOn\":\"2021-11-11T20:13:33.7846748Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2414bbcf-6497-4faf-8c65-045460748405\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2414bbcf-6497-4faf-8c65-045460748405\"},{\"properties\":{\"roleName\":\"Graph + Owner\",\"type\":\"BuiltInRole\",\"description\":\"Create and manage all aspects + of the Enterprise Graph - Ontology, Schema mapping, Conflation and Conversational + AI and Ingestions\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EnterpriseKnowledgeGraph/services/conflation/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/conflation/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/ontology/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/ontology/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/delete\",\"Microsoft.EnterpriseKnowledgeGraph/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-02-23T21:07:22.5844236Z\",\"updatedOn\":\"2021-11-11T20:13:34.6707886Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b60367af-1334-4454-b71e-769d9a4f83d9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b60367af-1334-4454-b71e-769d9a4f83d9\"},{\"properties\":{\"roleName\":\"HDInsight + Domain Services Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can + Read, Create, Modify and Delete Domain Services related operations needed + for HDInsight Enterprise Security Package\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AAD/*/read\",\"Microsoft.AAD/domainServices/*/read\",\"Microsoft.AAD/domainServices/oucontainer/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-09-12T22:42:51.7451109Z\",\"updatedOn\":\"2021-11-11T20:13:35.3921342Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8d8d5a11-05d3-4bda-a417-a08778121c7c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8d8d5a11-05d3-4bda-a417-a08778121c7c\"},{\"properties\":{\"roleName\":\"Intelligent + Systems Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage Intelligent Systems accounts, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.IntelligentSystems/accounts/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:35.9371582Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"03a6d094-3444-4b3d-88af-7477090a9e5e\"},{\"properties\":{\"roleName\":\"Key + Vault Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage + key vaults, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.KeyVault/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.KeyVault/locations/deletedVaults/purge/action\",\"Microsoft.KeyVault/hsmPools/*\",\"Microsoft.KeyVault/managedHsms/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-02-25T17:08:28.5184971Z\",\"updatedOn\":\"2021-11-11T20:13:36.1170988Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f25e0fa2-a7c8-4377-a976-54943a77a395\"},{\"properties\":{\"roleName\":\"Knowledge + Consumer\",\"type\":\"BuiltInRole\",\"description\":\"Knowledge Read permission + to consume Enterprise Graph Knowledge using entity search and graph query\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-02-23T21:23:31.4037552Z\",\"updatedOn\":\"2021-11-11T20:13:37.0021342Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ee361c5d-f7b5-4119-b4b6-892157c8f64c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ee361c5d-f7b5-4119-b4b6-892157c8f64c\"},{\"properties\":{\"roleName\":\"Lab + Creator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you create new labs + under your Azure Lab Accounts.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.LabServices/labAccounts/*/read\",\"Microsoft.LabServices/labAccounts/createLab/action\",\"Microsoft.LabServices/labAccounts/getPricingAndAvailability/action\",\"Microsoft.LabServices/labAccounts/getRestrictionsAndUsage/action\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.LabServices/labPlans/images/read\",\"Microsoft.LabServices/labPlans/read\",\"Microsoft.LabServices/labPlans/saveImage/action\",\"Microsoft.LabServices/labs/read\",\"Microsoft.LabServices/labs/schedules/read\",\"Microsoft.LabServices/labs/users/read\",\"Microsoft.LabServices/labs/virtualMachines/read\",\"Microsoft.LabServices/locations/usages/read\",\"Microsoft.LabServices/skus/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.LabServices/labPlans/createLab/action\"],\"notDataActions\":[]}],\"createdOn\":\"2018-01-18T23:38:58.1036141Z\",\"updatedOn\":\"2021-11-11T20:13:37.1821588Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\"},{\"properties\":{\"roleName\":\"Log + Analytics Reader\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/search/action\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-02T00:20:28.1449012Z\",\"updatedOn\":\"2021-11-11T20:13:37.7071371Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"73c42c96-874c-492b-b04d-ab87d138a893\"},{\"properties\":{\"roleName\":\"Log + Analytics Contributor\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.Compute/virtualMachines/extensions/*\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.OperationalInsights/*\",\"Microsoft.OperationsManagement/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-25T21:51:45.3174711Z\",\"updatedOn\":\"2021-11-11T20:13:37.8823618Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"},{\"properties\":{\"roleName\":\"Logic + App Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you read, enable + and disable logic app.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*/read\",\"Microsoft.Insights/metricAlerts/*/read\",\"Microsoft.Insights/diagnosticSettings/*/read\",\"Microsoft.Insights/metricDefinitions/*/read\",\"Microsoft.Logic/*/read\",\"Microsoft.Logic/workflows/disable/action\",\"Microsoft.Logic/workflows/enable/action\",\"Microsoft.Logic/workflows/validate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Web/connectionGateways/*/read\",\"Microsoft.Web/connections/*/read\",\"Microsoft.Web/customApis/*/read\",\"Microsoft.Web/serverFarms/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-04-28T21:33:30.4656007Z\",\"updatedOn\":\"2021-11-11T20:13:38.0573444Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"},{\"properties\":{\"roleName\":\"Logic + App Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage + logic app, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metricAlerts/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.Insights/logdefinitions/*\",\"Microsoft.Insights/metricDefinitions/*\",\"Microsoft.Logic/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Support/*\",\"Microsoft.Web/connectionGateways/*\",\"Microsoft.Web/connections/*\",\"Microsoft.Web/customApis/*\",\"Microsoft.Web/serverFarms/join/action\",\"Microsoft.Web/serverFarms/read\",\"Microsoft.Web/sites/functions/listSecrets/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-04-28T21:33:30.4656007Z\",\"updatedOn\":\"2021-11-11T20:13:38.2523833Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"87a39d53-fc1b-424a-814c-f7e04687dc9e\"},{\"properties\":{\"roleName\":\"Managed + Application Operator Role\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you read and perform actions on Managed Application resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Solutions/applications/read\",\"Microsoft.Solutions/*/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-07-27T00:59:33.7988813Z\",\"updatedOn\":\"2021-11-11T20:13:38.5973763Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c7393b34-138c-406f-901b-d8cf2b17e6ae\"},{\"properties\":{\"roleName\":\"Managed + Applications Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + read resources in a managed app and request JIT access.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Solutions/jitRequests/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-09-06T00:33:58.3651522Z\",\"updatedOn\":\"2021-11-11T20:13:38.7723523Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b9331d33-8a36-4f8c-b097-4f54124fdb44\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b9331d33-8a36-4f8c-b097-4f54124fdb44\"},{\"properties\":{\"roleName\":\"Managed + Identity Operator\",\"type\":\"BuiltInRole\",\"description\":\"Read and Assign + User Assigned Identity\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedIdentity/userAssignedIdentities/*/read\",\"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-12-14T19:52:04.3924594Z\",\"updatedOn\":\"2021-11-11T20:13:38.9523759Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f1a07417-d97a-45cb-824c-7a7467783830\"},{\"properties\":{\"roleName\":\"Managed + Identity Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Create, + Read, Update, and Delete User Assigned Identity\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/read\",\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/write\",\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/delete\",\"Microsoft.ManagedIdentity/userAssignedIdentities/revokeTokens/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-12-14T19:53:42.8804692Z\",\"updatedOn\":\"2024-04-01T15:29:15.7643919Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\"},{\"properties\":{\"roleName\":\"Management + Group Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Management + Group Contributor Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Management/managementGroups/delete\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Management/managementGroups/subscriptions/delete\",\"Microsoft.Management/managementGroups/subscriptions/write\",\"Microsoft.Management/managementGroups/write\",\"Microsoft.Management/managementGroups/subscriptions/read\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-06-22T00:28:29.0523964Z\",\"updatedOn\":\"2022-09-19T17:12:03.7729883Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\"},{\"properties\":{\"roleName\":\"Management + Group Reader\",\"type\":\"BuiltInRole\",\"description\":\"Management Group + Reader Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Management/managementGroups/read\",\"Microsoft.Management/managementGroups/subscriptions/read\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-06-22T00:31:03.4295347Z\",\"updatedOn\":\"2022-09-19T17:12:03.7729883Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ac63b705-f282-497d-ac71-919bf39d939d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ac63b705-f282-497d-ac71-919bf39d939d\"},{\"properties\":{\"roleName\":\"Monitoring + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read all monitoring + data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.OperationalInsights/workspaces/search/action\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-09-21T19:19:52.4939376Z\",\"updatedOn\":\"2022-09-06T19:22:59.9084089Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"},{\"properties\":{\"roleName\":\"Network + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage networks, + but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-02T00:18:27.3542698Z\",\"updatedOn\":\"2021-11-11T20:13:44.6328966Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4d97b98b-1d4f-4787-a291-c67834d212e7\"},{\"properties\":{\"roleName\":\"New + Relic APM Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage New Relic Application Performance Management accounts and applications, + but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"NewRelic.APM/accounts/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:45.7178576Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d28c62d-5b37-4476-8438-e587778df237\"},{\"properties\":{\"roleName\":\"Owner\",\"type\":\"BuiltInRole\",\"description\":\"Grants + full access to manage all resources, including the ability to assign roles + in Azure RBAC.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:45.8978856Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"},{\"properties\":{\"roleName\":\"Reader\",\"type\":\"BuiltInRole\",\"description\":\"View + all resources, but does not allow you to make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:47.8628684Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"acdd72a7-3385-48ef-bd42-f606fba81ae7\"},{\"properties\":{\"roleName\":\"Redis + Cache Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage + Redis caches, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Cache/register/action\",\"Microsoft.Cache/redis/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:48.0528671Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e0f68234-74aa-48ed-b826-c38b57376e17\"},{\"properties\":{\"roleName\":\"Reader + and Data Access\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Storage/storageAccounts/ListAccountSas/action\",\"Microsoft.Storage/storageAccounts/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-27T23:20:46.1498906Z\",\"updatedOn\":\"2021-11-11T20:13:48.2278951Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c12c1c16-33a1-487b-954d-41c89c60f349\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c12c1c16-33a1-487b-954d-41c89c60f349\"},{\"properties\":{\"roleName\":\"Resource + Policy Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Users with + rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Authorization/policyassignments/*\",\"Microsoft.Authorization/policydefinitions/*\",\"Microsoft.Authorization/policyexemptions/*\",\"Microsoft.Authorization/policyenrollments/*\",\"Microsoft.Authorization/policysetdefinitions/*\",\"Microsoft.PolicyInsights/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-08-25T19:08:01.3861639Z\",\"updatedOn\":\"2025-03-26T15:40:19.7041294Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"36243c78-bf99-498c-9df9-86d9f8d28608\"},{\"properties\":{\"roleName\":\"Scheduler + Job Collections Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage Scheduler job collections, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Scheduler/jobcollections/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:49.8429293Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"},{\"properties\":{\"roleName\":\"Search + Service Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage Search services, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Search/searchServices/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:50.0229309Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"},{\"properties\":{\"roleName\":\"Security + Manager (Legacy)\",\"type\":\"BuiltInRole\",\"description\":\"This is a legacy + role. Please use Security Administrator instead\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicCompute/*/read\",\"Microsoft.ClassicCompute/virtualMachines/*/write\",\"Microsoft.ClassicNetwork/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Security/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-22T17:45:15.8986455Z\",\"updatedOn\":\"2021-11-11T20:13:50.5729549Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"},{\"properties\":{\"roleName\":\"Security + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Security Reader Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.operationalInsights/workspaces/*/read\",\"Microsoft.Resources/deployments/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Security/*/read\",\"Microsoft.IoTSecurity/*/read\",\"Microsoft.Support/*/read\",\"Microsoft.Security/iotDefenderSettings/packageDownloads/action\",\"Microsoft.Security/iotDefenderSettings/downloadManagerActivation/action\",\"Microsoft.Security/iotSensors/downloadResetPassword/action\",\"Microsoft.IoTSecurity/defenderSettings/packageDownloads/action\",\"Microsoft.IoTSecurity/defenderSettings/downloadManagerActivation/action\",\"Microsoft.Management/managementGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-03T07:48:49.0516559Z\",\"updatedOn\":\"2021-11-11T20:13:50.7479015Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"},{\"properties\":{\"roleName\":\"Spatial + Anchors Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage spatial anchors in your account, but not delete them\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T17:57:41.1420864Z\",\"updatedOn\":\"2021-11-11T20:13:52.2829400Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\"},{\"properties\":{\"roleName\":\"Site + Recovery Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage Site Recovery service except vault creation and role assignment\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/locations/allocateStamp/action\",\"Microsoft.RecoveryServices/Vaults/certificates/write\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\"Microsoft.RecoveryServices/vaults/replicationVaultSettings/*\",\"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/vaults/replicationOperationStatus/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-19T13:46:17.4592776Z\",\"updatedOn\":\"2021-11-11T20:13:52.4579503Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"},{\"properties\":{\"roleName\":\"Site + Recovery Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you failover + and failback but not perform other Site Recovery management operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/locations/allocateStamp/action\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/switchprotection/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationVaultSettings/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-19T13:47:50.1341148Z\",\"updatedOn\":\"2021-11-11T20:13:52.6263418Z\",\"createdBy\":null,\"updatedBy\":\"\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"494ae006-db33-4328-bf46-533a6560a3ca\"},{\"properties\":{\"roleName\":\"Spatial + Anchors Account Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + locate and read properties of spatial anchors in your account\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T17:57:42.9271004Z\",\"updatedOn\":\"2021-11-11T20:13:52.8013467Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d51204f-eb77-4b1c-b86a-2ec626c49413\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d51204f-eb77-4b1c-b86a-2ec626c49413\"},{\"properties\":{\"roleName\":\"Site + Recovery Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you view + Site Recovery status but not perform other management operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\"Microsoft.RecoveryServices/vaults/replicationVaultSettings/read\",\"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-19T13:35:40.0093634Z\",\"updatedOn\":\"2021-11-11T20:13:52.9763366Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dbaa88c4-0c30-4179-9fb3-46319faa6149\"},{\"properties\":{\"roleName\":\"Spatial + Anchors Account Owner\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage spatial anchors in your account, including deleting them\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/delete\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T17:57:43.5489832Z\",\"updatedOn\":\"2021-11-11T20:13:53.1663250Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/70bbe301-9835-447d-afdd-19eb3167307c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"70bbe301-9835-447d-afdd-19eb3167307c\"},{\"properties\":{\"roleName\":\"SQL + Managed Instance Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage SQL Managed Instances and required network configuration, but can\u2019t + give access to others.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Network/networkSecurityGroups/*\",\"Microsoft.Network/routeTables/*\",\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/locations/instanceFailoverGroups/*\",\"Microsoft.Sql/managedInstances/*\",\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/subnets/*\",\"Microsoft.Network/virtualNetworks/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/delete\",\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/write\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-12-10T22:57:14.2937983Z\",\"updatedOn\":\"2021-11-11T20:13:53.3513507Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\"},{\"properties\":{\"roleName\":\"SQL + DB Contributor\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/servers/databases/*\",\"Microsoft.Sql/servers/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/servers/databases/ledgerDigestUploads/write\",\"Microsoft.Sql/servers/databases/ledgerDigestUploads/disable/action\",\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:53.5363219Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"},{\"properties\":{\"roleName\":\"SQL + Security Manager\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage + the security-related policies of SQL servers and databases, but not access + to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/administratorAzureAsyncOperation/read\",\"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/servers/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/transparentDataEncryption/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/serverConfigurationOptions/read\",\"Microsoft.Sql/managedInstances/serverConfigurationOptions/write\",\"Microsoft.Sql/locations/serverConfigurationOptionAzureAsyncOperation/read\",\"Microsoft.Sql/servers/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/servers/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/read\",\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/read\",\"Microsoft.Sql/servers/databases/read\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/read\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/read\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/transparentDataEncryption/*\",\"Microsoft.Sql/servers/databases/sqlvulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"Microsoft.Sql/servers/devOpsAuditingSettings/*\",\"Microsoft.Sql/servers/firewallRules/*\",\"Microsoft.Sql/servers/read\",\"Microsoft.Sql/servers/securityAlertPolicies/*\",\"Microsoft.Sql/servers/sqlvulnerabilityAssessments/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\"Microsoft.Support/*\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/*\",\"Microsoft.Sql/managedInstances/read\",\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/*\",\"Microsoft.Security/sqlVulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/administrators/read\",\"Microsoft.Sql/servers/administrators/read\",\"Microsoft.Sql/servers/databases/ledgerDigestUploads/*\",\"Microsoft.Sql/locations/ledgerDigestUploadsAzureAsyncOperation/read\",\"Microsoft.Sql/locations/ledgerDigestUploadsOperationResults/read\",\"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-16T18:44:40.4607572Z\",\"updatedOn\":\"2023-03-03T16:46:08.5009876Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"},{\"properties\":{\"roleName\":\"Storage + Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage storage accounts, including accessing storage account keys which provide + full access to storage account data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-02T00:18:27.3542698Z\",\"updatedOn\":\"2021-11-11T20:13:54.2363539Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"17d1049b-9a84-46fb-8f53-869881c3d3ab\"},{\"properties\":{\"roleName\":\"SQL + Server Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage + SQL servers and databases, but not access to them, and not their security + -related policies.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/servers/*\",\"Microsoft.Support/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"Microsoft.Sql/servers/devOpsAuditingSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/securityAlertPolicies/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/delete\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/write\",\"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/delete\",\"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/write\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2022-04-29T01:12:26.9132276Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"},{\"properties\":{\"roleName\":\"Storage + Account Key Operator Service Role\",\"type\":\"BuiltInRole\",\"description\":\"Storage + Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-13T18:26:11.5770570Z\",\"updatedOn\":\"2021-11-11T20:13:54.7697481Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"81a9662b-bebf-436f-a333-f67b29880f12\"},{\"properties\":{\"roleName\":\"Storage + Blob Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for read, write and delete access to Azure Storage blob containers and data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/move/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action\"],\"notDataActions\":[]}],\"createdOn\":\"2017-12-21T00:01:24.7972312Z\",\"updatedOn\":\"2021-11-11T20:13:54.9397456Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ba92f5b4-2d11-453d-a403-e96b0029c9fe\"},{\"properties\":{\"roleName\":\"Storage + Blob Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows for full + access to Azure Storage blob containers and data, including assigning POSIX + access control.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/*\",\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/*\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-04T07:02:58.2775257Z\",\"updatedOn\":\"2021-11-11T20:13:55.1225062Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b7e6dc6d-f1e8-4753-8033-0f276bb0955b\"},{\"properties\":{\"roleName\":\"Storage + Blob Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows for read + access to Azure Storage blob containers and data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"],\"notDataActions\":[]}],\"createdOn\":\"2017-12-21T00:01:24.7972312Z\",\"updatedOn\":\"2021-11-11T20:13:55.2975076Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\"},{\"properties\":{\"roleName\":\"Storage + Queue Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for read, write, and delete access to Azure Storage queues and queue messages\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/delete\",\"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\"Microsoft.Storage/storageAccounts/queueServices/queues/write\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/delete\",\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/write\",\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"],\"notDataActions\":[]}],\"createdOn\":\"2017-12-21T00:01:24.7972312Z\",\"updatedOn\":\"2021-11-11T20:13:55.4725469Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"974c5e8b-45b9-4653-ba55-5f855dd0fb88\"},{\"properties\":{\"roleName\":\"Storage + Queue Data Message Processor\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for peek, receive, and delete access to Azure Storage queue messages\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-01-28T22:27:04.8947111Z\",\"updatedOn\":\"2021-11-11T20:13:55.6575408Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8a0f0c08-91a1-4084-bc3d-661d67233fed\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8a0f0c08-91a1-4084-bc3d-661d67233fed\"},{\"properties\":{\"roleName\":\"Storage + Queue Data Message Sender\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for sending of Azure Storage queue messages\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/add/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-01-28T22:28:34.7459724Z\",\"updatedOn\":\"2021-11-11T20:13:55.8325508Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\"},{\"properties\":{\"roleName\":\"Storage + Queue Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows for + read access to Azure Storage queues and queue messages\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\"],\"notDataActions\":[]}],\"createdOn\":\"2017-12-21T00:01:24.7972312Z\",\"updatedOn\":\"2021-11-11T20:13:56.0178497Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/19e7f393-937e-4f77-808e-94535e297925\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"19e7f393-937e-4f77-808e-94535e297925\"},{\"properties\":{\"roleName\":\"Support + Request Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + create and manage Support requests\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-06-22T22:25:37.8053068Z\",\"updatedOn\":\"2021-11-11T20:13:56.7444481Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"},{\"properties\":{\"roleName\":\"Traffic + Manager Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage Traffic Manager profiles, but does not let you control who has access + to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/trafficManagerProfiles/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-10-15T23:33:25.9730842Z\",\"updatedOn\":\"2021-11-11T20:13:57.2744497Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"},{\"properties\":{\"roleName\":\"User + Access Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage user access to Azure resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Authorization/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:57.7932023Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"},{\"properties\":{\"roleName\":\"Virtual + Machine Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage virtual machines, but not access to them, and not the virtual network + or storage account they're connected to.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/availabilitySets/*\",\"Microsoft.Compute/locations/*\",\"Microsoft.Compute/virtualMachines/*\",\"Microsoft.Compute/virtualMachineScaleSets/*\",\"Microsoft.Compute/cloudServices/*\",\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/delete\",\"Microsoft.Compute/hostgroups/write\",\"Microsoft.Compute/hostgroups/hosts/write\",\"Microsoft.DevTestLab/schedules/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\"Microsoft.Network/loadBalancers/probes/join/action\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/locations/*\",\"Microsoft.Network/networkInterfaces/*\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.RecoveryServices/locations/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/write\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.SerialConsole/serialPorts/connect/action\",\"Microsoft.SqlVirtualMachine/*\",\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-02T00:18:27.3542698Z\",\"updatedOn\":\"2025-02-07T01:41:33.5037612Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"},{\"properties\":{\"roleName\":\"Web + Plan Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage + the web plans for websites, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Web/serverFarms/*\",\"Microsoft.Web/hostingEnvironments/Join/Action\",\"Microsoft.Insights/autoscalesettings/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2022-09-05T17:12:49.4643439Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"},{\"properties\":{\"roleName\":\"Website + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage websites + (not web plans), but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/components/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Web/certificates/*\",\"Microsoft.Web/listSitesAssignedToHostName/read\",\"Microsoft.Web/register/action\",\"Microsoft.Web/serverFarms/join/action\",\"Microsoft.Web/serverFarms/read\",\"Microsoft.Web/sites/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-05-12T23:10:23.6193952Z\",\"updatedOn\":\"2024-08-06T15:15:41.2486928Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"de139f84-1756-47ae-9be6-808fbbe84772\"},{\"properties\":{\"roleName\":\"Azure + Service Bus Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for full access to Azure Service Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceBus/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceBus/*\"],\"notDataActions\":[]}],\"createdOn\":\"2019-04-16T21:33:36.7445745Z\",\"updatedOn\":\"2021-11-11T20:13:59.2005807Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"090c5cfd-751d-490a-894a-3ce6f1109419\"},{\"properties\":{\"roleName\":\"Azure + Event Hubs Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for full access to Azure Event Hubs resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/*\"],\"notDataActions\":[]}],\"createdOn\":\"2019-04-16T21:34:29.8656362Z\",\"updatedOn\":\"2021-11-11T20:13:59.3721538Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f526a384-b230-433a-b45c-95f59c4a2dec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f526a384-b230-433a-b45c-95f59c4a2dec\"},{\"properties\":{\"roleName\":\"Attestation + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can read write or + delete the attestation provider instance\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Attestation/attestationProviders/attestation/read\",\"Microsoft.Attestation/attestationProviders/attestation/write\",\"Microsoft.Attestation/attestationProviders/attestation/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-19T00:24:09.3354177Z\",\"updatedOn\":\"2021-11-11T20:13:59.7271218Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\"},{\"properties\":{\"roleName\":\"HDInsight + Cluster Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you read + and modify HDInsight cluster configurations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HDInsight/*/read\",\"Microsoft.HDInsight/clusters/getGatewaySettings/action\",\"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\"Microsoft.HDInsight/clusters/configurations/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-20T00:03:01.7110732Z\",\"updatedOn\":\"2021-11-11T20:13:59.9052180Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/61ed4efc-fab3-44fd-b111-e24485cc132a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"61ed4efc-fab3-44fd-b111-e24485cc132a\"},{\"properties\":{\"roleName\":\"Cosmos + DB Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage Azure + Cosmos DB accounts, but not access data in them. Prevents access to account + keys and connection strings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DocumentDb/databaseAccounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"],\"notActions\":[\"Microsoft.DocumentDB/databaseAccounts/dataTransferJobs/*\",\"Microsoft.DocumentDB/databaseAccounts/readonlyKeys/*\",\"Microsoft.DocumentDB/databaseAccounts/regenerateKey/*\",\"Microsoft.DocumentDB/databaseAccounts/listKeys/*\",\"Microsoft.DocumentDB/databaseAccounts/listConnectionStrings/*\",\"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/write\",\"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/delete\",\"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments/write\",\"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments/delete\",\"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions/write\",\"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions/delete\",\"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions/write\",\"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions/delete\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-26T17:01:17.0169383Z\",\"updatedOn\":\"2024-01-11T16:37:07.4446986Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"230815da-be43-4aae-9cb4-875f7bd000aa\"},{\"properties\":{\"roleName\":\"Hybrid + Server Resource Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Can + read, write, delete, and re-onboard Hybrid servers to the Hybrid Resource + Provider.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/*\",\"Microsoft.HybridCompute/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-29T21:39:32.3132923Z\",\"updatedOn\":\"2021-11-11T20:14:00.2548257Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/48b40c6e-82e0-4eb3-90d5-19e40f49b624\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"48b40c6e-82e0-4eb3-90d5-19e40f49b624\"},{\"properties\":{\"roleName\":\"Hybrid + Server Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Can onboard + new Hybrid servers to the Hybrid Resource Provider.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-29T22:36:28.1873756Z\",\"updatedOn\":\"2021-11-11T20:14:00.4308999Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\"},{\"properties\":{\"roleName\":\"Azure + Event Hubs Data Receiver\",\"type\":\"BuiltInRole\",\"description\":\"Allows + receive access to Azure Event Hubs resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/*/eventhubs/consumergroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/*/receive/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-05-10T06:25:21.1056666Z\",\"updatedOn\":\"2021-11-11T20:14:01.3225169Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a638d3c7-ab3a-418d-83e6-5f17a39d4fde\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a638d3c7-ab3a-418d-83e6-5f17a39d4fde\"},{\"properties\":{\"roleName\":\"Azure + Event Hubs Data Sender\",\"type\":\"BuiltInRole\",\"description\":\"Allows + send access to Azure Event Hubs resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/*/eventhubs/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/*/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-05-10T06:26:12.4673714Z\",\"updatedOn\":\"2021-11-11T20:14:01.4925583Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2b629674-e913-4c01-ae53-ef4638d8f975\"},{\"properties\":{\"roleName\":\"Azure + Service Bus Data Receiver\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for receive access to Azure Service Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceBus/*/queues/read\",\"Microsoft.ServiceBus/*/topics/read\",\"Microsoft.ServiceBus/*/topics/subscriptions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceBus/*/receive/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-05-10T06:43:01.6343849Z\",\"updatedOn\":\"2021-11-11T20:14:01.6629685Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\"},{\"properties\":{\"roleName\":\"Azure + Service Bus Data Sender\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for send access to Azure Service Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceBus/*/queues/read\",\"Microsoft.ServiceBus/*/topics/read\",\"Microsoft.ServiceBus/*/topics/subscriptions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceBus/*/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-05-10T06:43:46.7046934Z\",\"updatedOn\":\"2021-11-11T20:14:01.8479199Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\"},{\"properties\":{\"roleName\":\"Storage + File Data SMB Share Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for read access to Azure File Share over SMB\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-07-01T20:19:31.8620471Z\",\"updatedOn\":\"2021-11-11T20:14:04.3642909Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/aba4ae5f-2193-4029-9191-0cb91df5e314\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"aba4ae5f-2193-4029-9191-0cb91df5e314\"},{\"properties\":{\"roleName\":\"Storage + File Data SMB Share Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for read, write, and delete access in Azure Storage file shares over SMB\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2019-07-01T20:54:35.4834310Z\",\"updatedOn\":\"2021-11-11T20:14:04.5443323Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\"},{\"properties\":{\"roleName\":\"Private + DNS Zone Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage private DNS zone resources, but not the virtual networks they are linked + to.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Network/privateDnsZones/*\",\"Microsoft.Network/privateDnsOperationResults/*\",\"Microsoft.Network/privateDnsOperationStatuses/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/join/action\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-07-10T19:31:15.5645518Z\",\"updatedOn\":\"2021-11-11T20:14:04.7342851Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b12aa53e-6015-4669-85d0-8515ebb3ae7f\"},{\"properties\":{\"roleName\":\"Storage + Blob Delegator\",\"type\":\"BuiltInRole\",\"description\":\"Allows for generation + of a user delegation key which can be used to sign SAS tokens\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-07-23T00:51:16.3376761Z\",\"updatedOn\":\"2021-11-11T20:14:05.4321714Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/db58b8e5-c6ad-4a2a-8342-4190687cbf4a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"db58b8e5-c6ad-4a2a-8342-4190687cbf4a\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization User\",\"type\":\"BuiltInRole\",\"description\":\"Allows user + to use the applications in an application group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DesktopVirtualization/applicationGroups/useApplications/action\",\"Microsoft.DesktopVirtualization/appAttachPackages/useApplications/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-08-07T00:29:03.8727621Z\",\"updatedOn\":\"2023-06-19T15:07:13.5369989Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\"},{\"properties\":{\"roleName\":\"Storage + File Data SMB Share Elevated Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for read, write, delete and modify NTFS permission access in Azure Storage + file shares over SMB\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-08-07T01:35:36.9935457Z\",\"updatedOn\":\"2021-11-11T20:14:06.1571744Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7264617-510b-434b-a828-9731dc254ea7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7264617-510b-434b-a828-9731dc254ea7\"},{\"properties\":{\"roleName\":\"Blueprint + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage blueprint + definitions, but not assign them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Blueprint/blueprints/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-14T21:55:16.9683949Z\",\"updatedOn\":\"2021-11-11T20:14:06.5171828Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/41077137-e803-4205-871c-5a86e6a753b4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"41077137-e803-4205-871c-5a86e6a753b4\"},{\"properties\":{\"roleName\":\"Blueprint + Operator\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Blueprint/blueprintAssignments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-14T21:56:48.7897875Z\",\"updatedOn\":\"2021-11-11T20:14:06.6971401Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/437d2ced-4a38-4302-8479-ed2bcb43d090\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"437d2ced-4a38-4302-8479-ed2bcb43d090\"},{\"properties\":{\"roleName\":\"Microsoft + Sentinel Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft + Sentinel Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.OperationalInsights/querypacks/*/read\",\"Microsoft.Insights/workbooks/*\",\"Microsoft.Insights/myworkbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:39:03.8725173Z\",\"updatedOn\":\"2022-08-02T00:12:09.1707121Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ab8e14d6-4a74-4a29-9ba8-549422addade\"},{\"properties\":{\"roleName\":\"Microsoft + Sentinel Responder\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft + Sentinel Responder\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\",\"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\"Microsoft.SecurityInsights/automationRules/*\",\"Microsoft.SecurityInsights/cases/*\",\"Microsoft.SecurityInsights/incidents/*\",\"Microsoft.SecurityInsights/entities/runPlaybook/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\"Microsoft.SecurityInsights/threatIntelligence/bulkTag/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/replaceTags/action\",\"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\"Microsoft.SecurityInsights/businessApplicationAgents/systems/undoAction/action\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.OperationalInsights/querypacks/*/read\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Insights/myworkbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.SecurityInsights/cases/*/Delete\",\"Microsoft.SecurityInsights/incidents/*/Delete\",\"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:54:07.6467264Z\",\"updatedOn\":\"2024-04-04T15:52:09.7970103Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"},{\"properties\":{\"roleName\":\"Microsoft + Sentinel Reader\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft Sentinel + Reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\",\"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/LinkedServices/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/querypacks/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Insights/myworkbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/templateSpecs/*/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:58:50.1132117Z\",\"updatedOn\":\"2022-08-02T00:12:09.1707121Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"},{\"properties\":{\"roleName\":\"Policy + Insights Data Writer (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Allows + read access to resource policies and write access to resource component policy + events.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/policyassignments/read\",\"Microsoft.Authorization/policydefinitions/read\",\"Microsoft.Authorization/policyexemptions/read\",\"Microsoft.Authorization/policysetdefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.PolicyInsights/checkDataPolicyCompliance/action\",\"Microsoft.PolicyInsights/policyEvents/logDataEvents/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-09-19T19:35:20.9504127Z\",\"updatedOn\":\"2021-11-11T20:14:09.4235132Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/66bb4e9e-b016-4a94-8249-4c0511c2be84\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"66bb4e9e-b016-4a94-8249-4c0511c2be84\"},{\"properties\":{\"roleName\":\"SignalR + AccessKey Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read SignalR + Service Access Keys\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SignalRService/*/read\",\"Microsoft.SignalRService/SignalR/listkeys/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-09-20T09:33:19.6236874Z\",\"updatedOn\":\"2021-11-11T20:14:09.6134860Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/04165923-9d83-45d5-8227-78b77b0a687e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"04165923-9d83-45d5-8227-78b77b0a687e\"},{\"properties\":{\"roleName\":\"SignalR/Web + PubSub Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Create, Read, + Update, and Delete SignalR service resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SignalRService/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-09-20T09:58:09.0009662Z\",\"updatedOn\":\"2021-11-11T20:14:09.7884765Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\"},{\"properties\":{\"roleName\":\"Azure + Connected Machine Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Can + onboard Azure Connected Machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/settings/read\",\"Microsoft.HybridCompute/settings/write\",\"Microsoft.HybridCompute/gateways/read\",\"Microsoft.HybridCompute/privateLinkScopes/read\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:15:07.1372870Z\",\"updatedOn\":\"2025-02-03T16:08:25.0326897Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\"},{\"properties\":{\"roleName\":\"Managed + Services Registration assignment Delete Role\",\"type\":\"BuiltInRole\",\"description\":\"Managed + Services Registration Assignment Delete Role allows the managing tenant users + to delete the registration assignment assigned to their tenant.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedServices/registrationAssignments/read\",\"Microsoft.ManagedServices/registrationAssignments/delete\",\"Microsoft.ManagedServices/operationStatuses/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T22:33:33.1183469Z\",\"updatedOn\":\"2021-11-11T20:14:11.2336400Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/91c1777a-f3dc-4fae-b103-61d183457e46\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"91c1777a-f3dc-4fae-b103-61d183457e46\"},{\"properties\":{\"roleName\":\"App + Configuration Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows + full access to App Configuration data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/*/read\",\"Microsoft.AppConfiguration/configurationStores/*/write\",\"Microsoft.AppConfiguration/configurationStores/*/delete\",\"Microsoft.AppConfiguration/configurationStores/*/action\"],\"notDataActions\":[\"Microsoft.AppConfiguration/configurationStores/useSasAuth/action\"]}],\"createdOn\":\"2019-10-25T18:41:40.1185063Z\",\"updatedOn\":\"2024-10-28T15:14:04.6443673Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\"},{\"properties\":{\"roleName\":\"App + Configuration Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows + read access to App Configuration data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:45:33.7975332Z\",\"updatedOn\":\"2021-11-11T20:14:11.5885341Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"516239f1-63e1-4d78-a4de-a74fb236a071\"},{\"properties\":{\"roleName\":\"Kubernetes + Cluster - Azure Arc Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Role + definition to authorize any user/service to create connectedClusters resource\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Kubernetes/connectedClusters/Write\",\"Microsoft.Kubernetes/connectedClusters/read\",\"Microsoft.KubernetesConfiguration/extensions/write\",\"Microsoft.KubernetesConfiguration/extensions/read\",\"Microsoft.KubernetesConfiguration/extensions/delete\",\"Microsoft.KubernetesConfiguration/extensions/operations/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-11-18T17:00:02.2087147Z\",\"updatedOn\":\"2024-11-01T01:37:05.9804902Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/34e09817-6cbe-4d01-b1a2-e0eac5743d41\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"34e09817-6cbe-4d01-b1a2-e0eac5743d41\"},{\"properties\":{\"roleName\":\"Experimentation + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/write\",\"Microsoft.Experimentation/experimentWorkspaces/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-13T00:08:08.6679591Z\",\"updatedOn\":\"2021-11-11T20:14:14.6454147Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a22b-edd6ce5c915c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"},{\"properties\":{\"roleName\":\"Cognitive + Services QnA Maker Reader\",\"type\":\"BuiltInRole\",\"description\":\"Let\u2019s + you read and test a KB only.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-17T18:26:12.3329439Z\",\"updatedOn\":\"2021-11-11T20:14:14.8254033Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/466ccd10-b268-4a11-b098-b4849f024126\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"466ccd10-b268-4a11-b098-b4849f024126\"},{\"properties\":{\"roleName\":\"Cognitive + Services QnA Maker Editor\",\"type\":\"BuiltInRole\",\"description\":\"Let\u2019s + you create, edit, import and export a KB. You cannot publish or delete a KB.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/create/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/train/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/refreshkeys/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/operations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/create/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/train/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/refreshkeys/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/operations/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/create/write\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/write\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/train/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/write\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/refreshkeys/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/write\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/operations/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-17T18:27:30.6434556Z\",\"updatedOn\":\"2021-11-11T20:14:14.9961559Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f4cc2bf9-21be-47a1-bdf1-5c5804381025\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f4cc2bf9-21be-47a1-bdf1-5c5804381025\"},{\"properties\":{\"roleName\":\"Experimentation + Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation + Administrator\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/admin/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experimentadmin/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/write\",\"Microsoft.Experimentation/experimentWorkspaces/delete\",\"Microsoft.Experimentation/experimentWorkspaces/admin/action\",\"Microsoft.Experimentation/experimentWorkspaces/metricwrite/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/metricwrite/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-18T22:46:33.1116612Z\",\"updatedOn\":\"2021-11-11T20:14:15.1811577Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a33b-edd6ce5c915c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"},{\"properties\":{\"roleName\":\"Remote + Rendering Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Provides + user with conversion, manage session, rendering and diagnostics capabilities + for Azure Remote Rendering\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/RemoteRenderingAccounts/convert/action\",\"Microsoft.MixedReality/RemoteRenderingAccounts/convert/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/convert/delete\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-01-23T18:15:31.3450348Z\",\"updatedOn\":\"2021-11-11T20:14:16.7621737Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3df8b902-2a6f-47c7-8cc5-360e9b272a7e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3df8b902-2a6f-47c7-8cc5-360e9b272a7e\"},{\"properties\":{\"roleName\":\"Remote + Rendering Client\",\"type\":\"BuiltInRole\",\"description\":\"Provides user + with manage session, rendering and diagnostics capabilities for Azure Remote + Rendering.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-01-23T18:32:52.7069824Z\",\"updatedOn\":\"2021-11-11T20:14:16.9421512Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d39065c4-c120-43c9-ab0a-63eed9795f0a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d39065c4-c120-43c9-ab0a-63eed9795f0a\"},{\"properties\":{\"roleName\":\"Managed + Application Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for creating managed application resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Solutions/applications/*\",\"Microsoft.Solutions/register/action\",\"Microsoft.Resources/subscriptions/resourceGroups/*\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-08T03:39:11.8933879Z\",\"updatedOn\":\"2021-11-11T20:14:19.1271536Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/641177b8-a67a-45b9-a033-47bc880bb21e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"641177b8-a67a-45b9-a033-47bc880bb21e\"},{\"properties\":{\"roleName\":\"Security + Assessment Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + push assessments to Security Center\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Security/assessments/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-13T08:23:47.7656161Z\",\"updatedOn\":\"2021-11-11T20:14:19.3021974Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/612c2aa1-cb24-443b-ac28-3ab7272de6f5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"612c2aa1-cb24-443b-ac28-3ab7272de6f5\"},{\"properties\":{\"roleName\":\"Tag + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage tags + on entities, without providing access to the entities themselves.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Resources/subscriptions/resources/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\",\"Microsoft.Resources/tags/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-18T23:19:19.2977644Z\",\"updatedOn\":\"2021-11-11T20:14:20.0172041Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4a9ae827-6dc8-4573-8ac7-8239d42aa03f\"},{\"properties\":{\"roleName\":\"Integration + Service Environment Developer\",\"type\":\"BuiltInRole\",\"description\":\"Allows + developers to create and update workflows, integration accounts and API connections + in integration service environments.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\",\"Microsoft.Logic/integrationServiceEnvironments/read\",\"Microsoft.Logic/integrationServiceEnvironments/*/join/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-20T21:09:00.5627875Z\",\"updatedOn\":\"2021-11-11T20:14:20.1871986Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\"},{\"properties\":{\"roleName\":\"Integration + Service Environment Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage integration service environments, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\",\"Microsoft.Logic/integrationServiceEnvironments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-20T21:10:44.4008319Z\",\"updatedOn\":\"2021-11-11T20:14:20.3622058Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a41e2c5b-bd99-4a07-88f4-9bf657a760b8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a41e2c5b-bd99-4a07-88f4-9bf657a760b8\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants + access to read and write Azure Kubernetes Service clusters\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ContainerService/locations/*\",\"Microsoft.ContainerService/managedClusters/*\",\"Microsoft.ContainerService/managedclustersnapshots/*\",\"Microsoft.ContainerService/snapshots/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-27T19:27:15.0739970Z\",\"updatedOn\":\"2024-06-26T15:35:04.3821443Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\"},{\"properties\":{\"roleName\":\"Azure + Digital Twins Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read-only + role for Digital Twins data-plane properties\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DigitalTwins/digitaltwins/read\",\"Microsoft.DigitalTwins/digitaltwins/relationships/read\",\"Microsoft.DigitalTwins/eventroutes/read\",\"Microsoft.DigitalTwins/jobs/import/read\",\"Microsoft.DigitalTwins/jobs/imports/read\",\"Microsoft.DigitalTwins/jobs/deletions/read\",\"Microsoft.DigitalTwins/models/read\",\"Microsoft.DigitalTwins/query/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:48:14.7057381Z\",\"updatedOn\":\"2024-01-11T19:37:51.2477819Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d57506d4-4c8d-48b1-8587-93c323f6a5a3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d57506d4-4c8d-48b1-8587-93c323f6a5a3\"},{\"properties\":{\"roleName\":\"Azure + Digital Twins Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Full + access role for Digital Twins data-plane\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DigitalTwins/digitaltwins/*\",\"Microsoft.DigitalTwins/digitaltwins/commands/*\",\"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\"Microsoft.DigitalTwins/eventroutes/*\",\"Microsoft.DigitalTwins/jobs/*\",\"Microsoft.DigitalTwins/models/*\",\"Microsoft.DigitalTwins/query/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:49:33.7821930Z\",\"updatedOn\":\"2022-09-08T01:58:14.2969628Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bcd981a7-7f74-457b-83e1-cceb9e632ffe\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bcd981a7-7f74-457b-83e1-cceb9e632ffe\"},{\"properties\":{\"roleName\":\"Hierarchy + Settings Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Allows + users to edit and delete Hierarchy Settings\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Management/managementGroups/settings/write\",\"Microsoft.Management/managementGroups/settings/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-03-13T23:55:11.0212387Z\",\"updatedOn\":\"2021-11-11T20:14:23.0882347Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/350f8d15-c687-4448-8ae1-157740a3936d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"350f8d15-c687-4448-8ae1-157740a3936d\"},{\"properties\":{\"roleName\":\"FHIR + Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Role allows + user or principal full access to FHIR Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/*\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/*\"],\"notDataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/smart/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/smart/action\"]}],\"createdOn\":\"2020-03-17T18:35:04.4949547Z\",\"updatedOn\":\"2023-08-21T15:00:43.2797853Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5a1fc7df-4bf1-4951-a576-89034ee01acd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5a1fc7df-4bf1-4951-a576-89034ee01acd\"},{\"properties\":{\"roleName\":\"FHIR + Data Exporter\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user + or principal to read and export FHIR Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/read\",\"Microsoft.HealthcareApis/services/fhir/resources/export/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/export/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-17T18:45:01.9764073Z\",\"updatedOn\":\"2021-11-11T20:14:23.7992557Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3db33094-8700-4567-8da5-1501d4e7e843\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3db33094-8700-4567-8da5-1501d4e7e843\"},{\"properties\":{\"roleName\":\"FHIR + Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user + or principal to read FHIR Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/read\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-17T18:49:04.8353499Z\",\"updatedOn\":\"2021-11-11T20:14:23.9692275Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4c8d0bbc-75d3-4935-991f-5f3c56d81508\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4c8d0bbc-75d3-4935-991f-5f3c56d81508\"},{\"properties\":{\"roleName\":\"FHIR + Data Writer\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user + or principal to read and write FHIR Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/read\",\"Microsoft.HealthcareApis/services/fhir/resources/write\",\"Microsoft.HealthcareApis/services/fhir/resources/delete\",\"Microsoft.HealthcareApis/services/fhir/resources/export/action\",\"Microsoft.HealthcareApis/services/fhir/resources/resourceValidate/action\",\"Microsoft.HealthcareApis/services/fhir/resources/reindex/action\",\"Microsoft.HealthcareApis/services/fhir/resources/convertData/action\",\"Microsoft.HealthcareApis/services/fhir/resources/editProfileDefinitions/action\",\"Microsoft.HealthcareApis/services/fhir/resources/import/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/write\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/delete\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/export/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/resourceValidate/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/reindex/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/convertData/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/editProfileDefinitions/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/import/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-17T18:55:35.2413335Z\",\"updatedOn\":\"2023-07-26T15:17:52.9401577Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3f88fce4-5892-4214-ae73-ba5294559913\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3f88fce4-5892-4214-ae73-ba5294559913\"},{\"properties\":{\"roleName\":\"Experimentation + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation Reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-25T18:05:14.8375678Z\",\"updatedOn\":\"2021-11-11T20:14:24.5042390Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\"},{\"properties\":{\"roleName\":\"Object + Understanding Account Owner\",\"type\":\"BuiltInRole\",\"description\":\"Provides + user with ingestion capabilities for Azure Object Understanding.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/action\",\"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-04-22T19:15:09.0697923Z\",\"updatedOn\":\"2021-11-11T20:14:26.8743132Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4dd61c23-6743-42fe-a388-d8bdd41cb745\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4dd61c23-6743-42fe-a388-d8bdd41cb745\"},{\"properties\":{\"roleName\":\"Azure + Maps Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants + access to read, write, and delete access to map related data from an Azure + maps account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Maps/accounts/*/read\",\"Microsoft.Maps/accounts/*/write\",\"Microsoft.Maps/accounts/*/delete\",\"Microsoft.Maps/accounts/*/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-07T20:55:05.0645410Z\",\"updatedOn\":\"2021-11-11T20:14:28.3092598Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\"},{\"properties\":{\"roleName\":\"Cognitive + Services Custom Vision Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Full + access to the project, including the ability to view, create, edit, or delete + projects.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-08T23:47:07.0779345Z\",\"updatedOn\":\"2021-11-11T20:14:28.8342655Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\"},{\"properties\":{\"roleName\":\"Cognitive + Services Custom Vision Deployment\",\"type\":\"BuiltInRole\",\"description\":\"Publish, + unpublish or export models. Deployment can view the project but can\u2019t + update.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/publish/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/export/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/quicktest/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/classify/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/detect/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"]}],\"createdOn\":\"2020-05-09T01:31:05.9528620Z\",\"updatedOn\":\"2021-11-11T20:14:29.0142669Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5c4089e1-6d96-4d2f-b296-c1bc7137275f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5c4089e1-6d96-4d2f-b296-c1bc7137275f\"},{\"properties\":{\"roleName\":\"Cognitive + Services Custom Vision Labeler\",\"type\":\"BuiltInRole\",\"description\":\"View, + edit training images and create, add, remove, or delete the image tags. Labelers + can view the project but can\u2019t update anything other than training images + and tags.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/tags/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/suggested/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/tagsandregions/suggestions/action\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"]}],\"createdOn\":\"2020-05-09T01:33:20.8278896Z\",\"updatedOn\":\"2021-11-11T20:14:29.1892871Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/88424f51-ebe7-446f-bc41-7fa16989e96c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"88424f51-ebe7-446f-bc41-7fa16989e96c\"},{\"properties\":{\"roleName\":\"Cognitive + Services Custom Vision Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read-only + actions in the project. Readers can\u2019t create or update the project.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"]}],\"createdOn\":\"2020-05-09T01:34:18.5328818Z\",\"updatedOn\":\"2021-11-11T20:14:29.3642707Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/93586559-c37d-4a6b-ba08-b9f0940c2d73\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"93586559-c37d-4a6b-ba08-b9f0940c2d73\"},{\"properties\":{\"roleName\":\"Cognitive + Services Custom Vision Trainer\",\"type\":\"BuiltInRole\",\"description\":\"View, + edit projects and train the models, including the ability to publish, unpublish, + export the models. Trainers can\u2019t create or delete the project.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/projects/action\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/delete\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/import/action\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"]}],\"createdOn\":\"2020-05-09T01:35:13.8147804Z\",\"updatedOn\":\"2021-11-11T20:14:29.5442713Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\"},{\"properties\":{\"roleName\":\"Key + Vault Administrator\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:46.2349235Z\",\"updatedOn\":\"2021-11-11T20:14:30.2542755Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00482a5a-887f-4fb3-b363-3b7fe8e74483\"},{\"properties\":{\"roleName\":\"Key + Vault Crypto User\",\"type\":\"BuiltInRole\",\"description\":\"Perform cryptographic + operations using keys. Only works for key vaults that use the 'Azure role-based + access control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/keys/read\",\"Microsoft.KeyVault/vaults/keys/update/action\",\"Microsoft.KeyVault/vaults/keys/backup/action\",\"Microsoft.KeyVault/vaults/keys/encrypt/action\",\"Microsoft.KeyVault/vaults/keys/decrypt/action\",\"Microsoft.KeyVault/vaults/keys/wrap/action\",\"Microsoft.KeyVault/vaults/keys/unwrap/action\",\"Microsoft.KeyVault/vaults/keys/sign/action\",\"Microsoft.KeyVault/vaults/keys/verify/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.0699268Z\",\"updatedOn\":\"2021-11-11T20:14:30.6042921Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/12338af0-0e69-4776-bea7-57ae8d297424\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"12338af0-0e69-4776-bea7-57ae8d297424\"},{\"properties\":{\"roleName\":\"Key + Vault Secrets Officer\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/secrets/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.1449242Z\",\"updatedOn\":\"2021-11-11T20:14:30.7793470Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b86a8fe4-44ce-4948-aee5-eccb2c155cd7\"},{\"properties\":{\"roleName\":\"Key + Vault Secrets User\",\"type\":\"BuiltInRole\",\"description\":\"Read secret + contents. Only works for key vaults that use the 'Azure role-based access + control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.2049241Z\",\"updatedOn\":\"2021-11-11T20:14:30.9542829Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4633458b-17de-408a-b874-0445c86b69e6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4633458b-17de-408a-b874-0445c86b69e6\"},{\"properties\":{\"roleName\":\"Key + Vault Certificates Officer\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/certificatecas/*\",\"Microsoft.KeyVault/vaults/certificates/*\",\"Microsoft.KeyVault/vaults/certificatecontacts/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.2499247Z\",\"updatedOn\":\"2023-06-12T15:03:21.0577597Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a4417e6f-fecd-4de8-b567-7b0420556985\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a4417e6f-fecd-4de8-b567-7b0420556985\"},{\"properties\":{\"roleName\":\"Key + Vault Reader\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.2949294Z\",\"updatedOn\":\"2021-11-11T20:14:31.3043292Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21090545-7ca7-4776-b22c-e363652d74d2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21090545-7ca7-4776-b22c-e363652d74d2\"},{\"properties\":{\"roleName\":\"Key + Vault Crypto Service Encryption User\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventGrid/eventSubscriptions/write\",\"Microsoft.EventGrid/eventSubscriptions/read\",\"Microsoft.EventGrid/eventSubscriptions/delete\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/keys/read\",\"Microsoft.KeyVault/vaults/keys/wrap/action\",\"Microsoft.KeyVault/vaults/keys/unwrap/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-20T20:55:19.2398470Z\",\"updatedOn\":\"2021-11-11T20:14:31.8443056Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e147488a-f6f5-4113-8e2d-b22465e65bf6\"},{\"properties\":{\"roleName\":\"Azure + Arc Kubernetes Viewer\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + view all resources in cluster/namespace, except secrets.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/read\",\"Microsoft.Kubernetes/connectedClusters/apps/deployments/read\",\"Microsoft.Kubernetes/connectedClusters/apps/replicasets/read\",\"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/read\",\"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/read\",\"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/read\",\"Microsoft.Kubernetes/connectedClusters/batch/jobs/read\",\"Microsoft.Kubernetes/connectedClusters/configmaps/read\",\"Microsoft.Kubernetes/connectedClusters/endpoints/read\",\"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\"Microsoft.Kubernetes/connectedClusters/events/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/deployments/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/read\",\"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/read\",\"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/read\",\"Microsoft.Kubernetes/connectedClusters/pods/read\",\"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/read\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/read\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/read\",\"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\"Microsoft.Kubernetes/connectedClusters/serviceaccounts/read\",\"Microsoft.Kubernetes/connectedClusters/services/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:51:12.8801199Z\",\"updatedOn\":\"2021-11-11T20:14:33.8193353Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/63f0a09d-1495-4db4-a681-037d84835eb4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"63f0a09d-1495-4db4-a681-037d84835eb4\"},{\"properties\":{\"roleName\":\"Azure + Arc Kubernetes Writer\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + update everything in cluster/namespace, except (cluster)roles and (cluster)role + bindings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/deployments/*\",\"Microsoft.Kubernetes/connectedClusters/apps/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/*\",\"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/*\",\"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/*\",\"Microsoft.Kubernetes/connectedClusters/batch/jobs/*\",\"Microsoft.Kubernetes/connectedClusters/configmaps/*\",\"Microsoft.Kubernetes/connectedClusters/endpoints/*\",\"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\"Microsoft.Kubernetes/connectedClusters/events/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/deployments/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/*\",\"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/*\",\"Microsoft.Kubernetes/connectedClusters/pods/*\",\"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\"Microsoft.Kubernetes/connectedClusters/secrets/*\",\"Microsoft.Kubernetes/connectedClusters/serviceaccounts/*\",\"Microsoft.Kubernetes/connectedClusters/services/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:53:50.6749823Z\",\"updatedOn\":\"2021-11-11T20:14:34.0043462Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5b999177-9696-4545-85c7-50de3797e5a1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5b999177-9696-4545-85c7-50de3797e5a1\"},{\"properties\":{\"roleName\":\"Azure + Arc Kubernetes Cluster Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage all resources in the cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:55:30.9910462Z\",\"updatedOn\":\"2021-11-11T20:14:34.1743694Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8393591c-06b9-48a2-a542-1bd6b377f6a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8393591c-06b9-48a2-a542-1bd6b377f6a2\"},{\"properties\":{\"roleName\":\"Azure + Arc Kubernetes Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage all resources under cluster/namespace, except update or delete resource + quotas and namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/deployments/*\",\"Microsoft.Kubernetes/connectedClusters/apps/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/*\",\"Microsoft.Kubernetes/connectedClusters/authorization.k8s.io/localsubjectaccessreviews/write\",\"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/*\",\"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/*\",\"Microsoft.Kubernetes/connectedClusters/batch/jobs/*\",\"Microsoft.Kubernetes/connectedClusters/configmaps/*\",\"Microsoft.Kubernetes/connectedClusters/endpoints/*\",\"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\"Microsoft.Kubernetes/connectedClusters/events/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/deployments/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/*\",\"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/*\",\"Microsoft.Kubernetes/connectedClusters/pods/*\",\"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/*\",\"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/rolebindings/*\",\"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/roles/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\"Microsoft.Kubernetes/connectedClusters/secrets/*\",\"Microsoft.Kubernetes/connectedClusters/serviceaccounts/*\",\"Microsoft.Kubernetes/connectedClusters/services/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:57:06.0391177Z\",\"updatedOn\":\"2021-11-11T20:14:34.3593384Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dffb1e0c-446f-4dde-a09f-99eb5cc68b96\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dffb1e0c-446f-4dde-a09f-99eb5cc68b96\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service RBAC Cluster Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage all resources in the cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:47:24.4071415Z\",\"updatedOn\":\"2022-10-13T03:34:52.0122969Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service RBAC Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you manage all resources under cluster/namespace, except update or delete + resource quotas and namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*\"],\"notDataActions\":[\"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\"Microsoft.ContainerService/managedClusters/resourcequotas/delete\",\"Microsoft.ContainerService/managedClusters/namespaces/write\",\"Microsoft.ContainerService/managedClusters/namespaces/delete\"]}],\"createdOn\":\"2020-07-02T17:50:30.4020311Z\",\"updatedOn\":\"2023-05-09T20:10:39.0962004Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3498e952-d568-435e-9b2c-8d77e338d7f7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3498e952-d568-435e-9b2c-8d77e338d7f7\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service RBAC Reader\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/apps/controllerrevisions/read\",\"Microsoft.ContainerService/managedClusters/apps/daemonsets/read\",\"Microsoft.ContainerService/managedClusters/apps/deployments/read\",\"Microsoft.ContainerService/managedClusters/apps/replicasets/read\",\"Microsoft.ContainerService/managedClusters/apps/statefulsets/read\",\"Microsoft.ContainerService/managedClusters/autoscaling/horizontalpodautoscalers/read\",\"Microsoft.ContainerService/managedClusters/batch/cronjobs/read\",\"Microsoft.ContainerService/managedClusters/batch/jobs/read\",\"Microsoft.ContainerService/managedClusters/configmaps/read\",\"Microsoft.ContainerService/managedClusters/discovery.k8s.io/endpointslices/read\",\"Microsoft.ContainerService/managedClusters/endpoints/read\",\"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\"Microsoft.ContainerService/managedClusters/events/read\",\"Microsoft.ContainerService/managedClusters/extensions/daemonsets/read\",\"Microsoft.ContainerService/managedClusters/extensions/deployments/read\",\"Microsoft.ContainerService/managedClusters/extensions/ingresses/read\",\"Microsoft.ContainerService/managedClusters/extensions/networkpolicies/read\",\"Microsoft.ContainerService/managedClusters/extensions/replicasets/read\",\"Microsoft.ContainerService/managedClusters/limitranges/read\",\"Microsoft.ContainerService/managedClusters/metrics.k8s.io/pods/read\",\"Microsoft.ContainerService/managedClusters/metrics.k8s.io/nodes/read\",\"Microsoft.ContainerService/managedClusters/namespaces/read\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/ingresses/read\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/networkpolicies/read\",\"Microsoft.ContainerService/managedClusters/persistentvolumeclaims/read\",\"Microsoft.ContainerService/managedClusters/pods/read\",\"Microsoft.ContainerService/managedClusters/policy/poddisruptionbudgets/read\",\"Microsoft.ContainerService/managedClusters/replicationcontrollers/read\",\"Microsoft.ContainerService/managedClusters/resourcequotas/read\",\"Microsoft.ContainerService/managedClusters/serviceaccounts/read\",\"Microsoft.ContainerService/managedClusters/services/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:53:05.5728294Z\",\"updatedOn\":\"2023-04-25T15:13:23.7348820Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f6c6a51-bcf8-42ba-9220-52d62157d7db\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service RBAC Writer\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/apps/controllerrevisions/read\",\"Microsoft.ContainerService/managedClusters/apps/daemonsets/*\",\"Microsoft.ContainerService/managedClusters/apps/deployments/*\",\"Microsoft.ContainerService/managedClusters/apps/replicasets/*\",\"Microsoft.ContainerService/managedClusters/apps/statefulsets/*\",\"Microsoft.ContainerService/managedClusters/autoscaling/horizontalpodautoscalers/*\",\"Microsoft.ContainerService/managedClusters/batch/cronjobs/*\",\"Microsoft.ContainerService/managedClusters/coordination.k8s.io/leases/read\",\"Microsoft.ContainerService/managedClusters/coordination.k8s.io/leases/write\",\"Microsoft.ContainerService/managedClusters/coordination.k8s.io/leases/delete\",\"Microsoft.ContainerService/managedClusters/discovery.k8s.io/endpointslices/read\",\"Microsoft.ContainerService/managedClusters/batch/jobs/*\",\"Microsoft.ContainerService/managedClusters/configmaps/*\",\"Microsoft.ContainerService/managedClusters/endpoints/*\",\"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\"Microsoft.ContainerService/managedClusters/events/*\",\"Microsoft.ContainerService/managedClusters/extensions/daemonsets/*\",\"Microsoft.ContainerService/managedClusters/extensions/deployments/*\",\"Microsoft.ContainerService/managedClusters/extensions/ingresses/*\",\"Microsoft.ContainerService/managedClusters/extensions/networkpolicies/*\",\"Microsoft.ContainerService/managedClusters/extensions/replicasets/*\",\"Microsoft.ContainerService/managedClusters/limitranges/read\",\"Microsoft.ContainerService/managedClusters/metrics.k8s.io/pods/read\",\"Microsoft.ContainerService/managedClusters/metrics.k8s.io/nodes/read\",\"Microsoft.ContainerService/managedClusters/namespaces/read\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/ingresses/*\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/networkpolicies/*\",\"Microsoft.ContainerService/managedClusters/persistentvolumeclaims/*\",\"Microsoft.ContainerService/managedClusters/pods/*\",\"Microsoft.ContainerService/managedClusters/policy/poddisruptionbudgets/*\",\"Microsoft.ContainerService/managedClusters/replicationcontrollers/*\",\"Microsoft.ContainerService/managedClusters/resourcequotas/read\",\"Microsoft.ContainerService/managedClusters/secrets/*\",\"Microsoft.ContainerService/managedClusters/serviceaccounts/*\",\"Microsoft.ContainerService/managedClusters/services/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:54:51.9644983Z\",\"updatedOn\":\"2023-04-25T15:13:23.7358840Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\"},{\"properties\":{\"roleName\":\"Services + Hub Operator\",\"type\":\"BuiltInRole\",\"description\":\"Services Hub Operator + allows you to perform all read, write, and deletion operations related to + Services Hub Connectors.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.ServicesHub/connectors/write\",\"Microsoft.ServicesHub/connectors/read\",\"Microsoft.ServicesHub/connectors/delete\",\"Microsoft.ServicesHub/connectors/checkAssessmentEntitlement/action\",\"Microsoft.ServicesHub/supportOfferingEntitlement/read\",\"Microsoft.ServicesHub/workspaces/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-07-20T17:57:22.0644902Z\",\"updatedOn\":\"2021-11-11T20:14:37.5544021Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/82200a5b-e217-47a5-b665-6d8765ee745b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"82200a5b-e217-47a5-b665-6d8765ee745b\"},{\"properties\":{\"roleName\":\"Object + Understanding Account Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you read ingestion jobs for an object understanding account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-23T19:16:31.9929119Z\",\"updatedOn\":\"2021-11-11T20:14:37.9070085Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d18777c0-1514-4662-8490-608db7d334b6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d18777c0-1514-4662-8490-608db7d334b6\"},{\"properties\":{\"roleName\":\"SignalR + REST API Owner\",\"type\":\"BuiltInRole\",\"description\":\"Full access to + Azure SignalR Service REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/auth/clientToken/action\",\"Microsoft.SignalRService/SignalR/hub/*\",\"Microsoft.SignalRService/SignalR/group/*\",\"Microsoft.SignalRService/SignalR/clientConnection/*\",\"Microsoft.SignalRService/SignalR/user/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-29T09:35:32.2764751Z\",\"updatedOn\":\"2023-08-24T15:22:24.7390261Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd53cd77-2268-407a-8f46-7e7863d0f521\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd53cd77-2268-407a-8f46-7e7863d0f521\"},{\"properties\":{\"roleName\":\"Collaborative + Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage data + packages of a collaborative.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/*/read\",\"Microsoft.IndustryDataLifecycle/memberCollaboratives/*/read\",\"Microsoft.IndustryDataLifecycle/locations/dataPackages/*\",\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/receivedDataPackages/*\",\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/rejectDataPackage/action\",\"Microsoft.IndustryDataLifecycle/memberCollaboratives/sharedDataPackages/*\",\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/dataModels/*\",\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/auditLogs/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-08-14T11:58:31.8973556Z\",\"updatedOn\":\"2021-11-11T20:14:40.2428145Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/daa9e50b-21df-454c-94a6-a8050adab352\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"daa9e50b-21df-454c-94a6-a8050adab352\"},{\"properties\":{\"roleName\":\"Device + Update Reader\",\"type\":\"BuiltInRole\",\"description\":\"Gives you read + access to management and content operations, but does not allow making changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/accounts/instances/updates/read\",\"Microsoft.DeviceUpdate/accounts/instances/management/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-08-21T23:40:19.2373610Z\",\"updatedOn\":\"2021-11-11T20:14:40.7922672Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e9dba6fb-3d52-4cf0-bce3-f06ce71b9e0f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e9dba6fb-3d52-4cf0-bce3-f06ce71b9e0f\"},{\"properties\":{\"roleName\":\"Device + Update Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Gives you + full access to management and content operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/accounts/instances/updates/read\",\"Microsoft.DeviceUpdate/accounts/instances/updates/write\",\"Microsoft.DeviceUpdate/accounts/instances/updates/delete\",\"Microsoft.DeviceUpdate/accounts/instances/management/read\",\"Microsoft.DeviceUpdate/accounts/instances/management/write\",\"Microsoft.DeviceUpdate/accounts/instances/management/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2020-08-21T23:56:22.3520510Z\",\"updatedOn\":\"2021-11-11T20:14:40.9672678Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/02ca0879-e8e4-47a5-a61e-5c618b76e64a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"02ca0879-e8e4-47a5-a61e-5c618b76e64a\"},{\"properties\":{\"roleName\":\"Device + Update Content Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Gives + you full access to content operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/accounts/instances/updates/read\",\"Microsoft.DeviceUpdate/accounts/instances/updates/write\",\"Microsoft.DeviceUpdate/accounts/instances/updates/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2020-08-21T23:58:18.4255500Z\",\"updatedOn\":\"2021-11-11T20:14:41.1433368Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0378884a-3af5-44ab-8323-f5b22f9f3c98\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0378884a-3af5-44ab-8323-f5b22f9f3c98\"},{\"properties\":{\"roleName\":\"Device + Update Content Reader\",\"type\":\"BuiltInRole\",\"description\":\"Gives you + read access to content operations, but does not allow making changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/accounts/instances/updates/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-08-22T00:02:43.3299181Z\",\"updatedOn\":\"2021-11-11T20:14:41.6754856Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d1ee9a80-8b14-47f0-bdc2-f4a351625a7b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d1ee9a80-8b14-47f0-bdc2-f4a351625a7b\"},{\"properties\":{\"roleName\":\"Cognitive + Services Metrics Advisor Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Full + access to the project, including the system level configuration.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/MetricsAdvisor/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-10T07:46:47.5804491Z\",\"updatedOn\":\"2021-11-11T20:14:43.6930781Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cb43c632-a144-4ec5-977c-e80c4affc34a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cb43c632-a144-4ec5-977c-e80c4affc34a\"},{\"properties\":{\"roleName\":\"Cognitive + Services Metrics Advisor User\",\"type\":\"BuiltInRole\",\"description\":\"Access + to the project.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/MetricsAdvisor/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/MetricsAdvisor/stats/*\"]}],\"createdOn\":\"2020-09-10T07:47:59.6195639Z\",\"updatedOn\":\"2021-11-11T20:14:43.8780761Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3b20f47b-3825-43cb-8114-4bd2201156a8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3b20f47b-3825-43cb-8114-4bd2201156a8\"},{\"properties\":{\"roleName\":\"Schema + Registry Reader (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Read + and list Schema Registry groups and schemas.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/namespaces/schemagroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/namespaces/schemas/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-13T06:31:38.0272740Z\",\"updatedOn\":\"2021-11-11T20:14:44.6350450Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2c56ea50-c6b3-40a6-83c0-9d98858bc7d2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2c56ea50-c6b3-40a6-83c0-9d98858bc7d2\"},{\"properties\":{\"roleName\":\"Schema + Registry Contributor (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Read, + write, and delete Schema Registry groups and schemas.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/namespaces/schemagroups/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/namespaces/schemas/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-13T06:48:26.6032931Z\",\"updatedOn\":\"2021-11-11T20:14:44.8200370Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5dffeca3-4936-4216-b2bc-10343a5abb25\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5dffeca3-4936-4216-b2bc-10343a5abb25\"},{\"properties\":{\"roleName\":\"AgFood + Platform Service Reader\",\"type\":\"BuiltInRole\",\"description\":\"Provides + read access to AgFood Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*/list/action\",\"Microsoft.AgFoodPlatform/*/read\",\"Microsoft.AgFoodPlatform/*/search/action\",\"Microsoft.AgFoodPlatform/*/download/action\",\"Microsoft.AgFoodPlatform/*/overlap/action\",\"Microsoft.AgFoodPlatform/*/checkConsent/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-14T10:21:08.9138820Z\",\"updatedOn\":\"2022-12-13T18:12:05.0978624Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7ec7ccdc-f61e-41fe-9aaf-980df0a44eba\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7ec7ccdc-f61e-41fe-9aaf-980df0a44eba\"},{\"properties\":{\"roleName\":\"AgFood + Platform Service Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides + contribute access to AgFood Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*/action\",\"Microsoft.AgFoodPlatform/*/read\",\"Microsoft.AgFoodPlatform/*/write\"],\"notDataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/farmers/write\",\"Microsoft.AgFoodPlatform/farmBeats/deletionJobs/*/write\",\"Microsoft.AgFoodPlatform/farmBeats/parties/write\",\"Microsoft.AgFoodPlatform/farmBeats/datasets/write\",\"Microsoft.AgFoodPlatform/farmBeats/datasetRecords/write\",\"Microsoft.AgFoodPlatform/farmBeats/datasets/access/*/action\"]}],\"createdOn\":\"2020-09-14T10:21:09.7239169Z\",\"updatedOn\":\"2023-12-04T16:03:50.5583760Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8508508a-4469-4e45-963b-2518ee0bb728\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8508508a-4469-4e45-963b-2518ee0bb728\"},{\"properties\":{\"roleName\":\"AgFood + Platform Service Admin\",\"type\":\"BuiltInRole\",\"description\":\"Provides + admin access to AgFood Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-14T10:21:09.8039209Z\",\"updatedOn\":\"2021-11-11T20:14:45.3613128Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f8da80de-1ff9-4747-ad80-a19b7f6079e3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f8da80de-1ff9-4747-ad80-a19b7f6079e3\"},{\"properties\":{\"roleName\":\"Managed + HSM contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage + managed HSM pools, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.KeyVault/managedHSMs/*\",\"Microsoft.KeyVault/deletedManagedHsms/read\",\"Microsoft.KeyVault/locations/deletedManagedHsms/read\",\"Microsoft.KeyVault/locations/deletedManagedHsms/purge/action\",\"Microsoft.KeyVault/locations/managedHsmOperationResults/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-09-16T21:47:01.1291104Z\",\"updatedOn\":\"2022-03-08T02:37:43.9379644Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18500a29-7fe2-46b2-a342-b16a415e101d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18500a29-7fe2-46b2-a342-b16a415e101d\"},{\"properties\":{\"roleName\":\"Security + Detonation Chamber Submitter\",\"type\":\"BuiltInRole\",\"description\":\"Allowed + to create submissions to Security Detonation Chamber\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/submissions/delete\",\"Microsoft.SecurityDetonation/chambers/submissions/write\",\"Microsoft.SecurityDetonation/chambers/submissions/read\",\"Microsoft.SecurityDetonation/chambers/submissions/files/read\",\"Microsoft.SecurityDetonation/chambers/submissions/accesskeyview/read\",\"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\",\"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-10-01T08:55:21.3980274Z\",\"updatedOn\":\"2021-11-11T20:14:47.5471350Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0b555d9b-b4a7-4f43-b330-627f0e5be8f0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0b555d9b-b4a7-4f43-b330-627f0e5be8f0\"},{\"properties\":{\"roleName\":\"SignalR + REST API Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read-only access + to Azure SignalR Service REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/user/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-10-13T09:19:05.6463616Z\",\"updatedOn\":\"2021-11-11T20:14:48.7902970Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ddde6b66-c0df-4114-a159-3618637b3035\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ddde6b66-c0df-4114-a159-3618637b3035\"},{\"properties\":{\"roleName\":\"SignalR + Service Owner\",\"type\":\"BuiltInRole\",\"description\":\"Full access to + Azure SignalR Service REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-10-13T09:20:32.1501410Z\",\"updatedOn\":\"2023-08-24T15:22:24.7390261Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7e4f1700-ea5a-4f59-8f37-079cfe29dce3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7e4f1700-ea5a-4f59-8f37-079cfe29dce3\"},{\"properties\":{\"roleName\":\"Reservation + Purchaser\",\"type\":\"BuiltInRole\",\"description\":\"Lets you purchase reservations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Capacity/catalogs/read\",\"Microsoft.Capacity/register/action\",\"Microsoft.Compute/register/action\",\"Microsoft.Consumption/register/action\",\"Microsoft.Consumption/reservationRecommendationDetails/read\",\"Microsoft.Consumption/reservationRecommendations/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.SQL/register/action\",\"Microsoft.Support/supporttickets/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-10-23T20:22:48.9217751Z\",\"updatedOn\":\"2022-04-14T04:21:57.2843545Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f7b75c60-3036-4b75-91c3-6b41c27c1689\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f7b75c60-3036-4b75-91c3-6b41c27c1689\"},{\"properties\":{\"roleName\":\"AzureML + Metrics Writer (preview)\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you write metrics to AzureML workspace\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/metrics/*/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-10-27T16:55:19.5664950Z\",\"updatedOn\":\"2021-11-11T20:14:49.8655015Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/635dd51f-9968-44d3-b7fb-6d9a6bd613ae\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"635dd51f-9968-44d3-b7fb-6d9a6bd613ae\"},{\"properties\":{\"roleName\":\"Storage + Account Backup Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you perform backup and restore operations using Azure Backup on the storage + account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Authorization/locks/read\",\"Microsoft.Authorization/locks/write\",\"Microsoft.Authorization/locks/delete\",\"Microsoft.Features/features/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/operations/read\",\"Microsoft.Storage/storageAccounts/objectReplicationPolicies/delete\",\"Microsoft.Storage/storageAccounts/objectReplicationPolicies/read\",\"Microsoft.Storage/storageAccounts/objectReplicationPolicies/write\",\"Microsoft.Storage/storageAccounts/objectReplicationPolicies/restorePointMarkers/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/write\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/restoreBlobRanges/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-11-02T23:32:50.4203469Z\",\"updatedOn\":\"2022-04-20T07:52:04.6883613Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1\"},{\"properties\":{\"roleName\":\"Experimentation + Metric Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows for + creation, writes and reads to the metric set via the metrics service APIs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/metricwrite/action\",\"Microsoft.Experimentation/experimentWorkspaces/metricwrite/action\",\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-10T20:07:53.7535885Z\",\"updatedOn\":\"2021-11-11T20:14:50.9524177Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6188b7c9-7d01-4f99-a59f-c88b630326c0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6188b7c9-7d01-4f99-a59f-c88b630326c0\"},{\"properties\":{\"roleName\":\"Project + Babylon Data Curator\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProjectBabylon/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ProjectBabylon/accounts/data/read\",\"Microsoft.ProjectBabylon/accounts/data/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:31:33.7988825Z\",\"updatedOn\":\"2021-11-11T20:14:51.4929515Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9ef4ef9c-a049-46b0-82ab-dd8ac094c889\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9ef4ef9c-a049-46b0-82ab-dd8ac094c889\"},{\"properties\":{\"roleName\":\"Project + Babylon Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"The Microsoft.ProjectBabylon + data reader can read catalog data objects. This role is in preview and subject + to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProjectBabylon/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ProjectBabylon/accounts/data/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:33:13.5342351Z\",\"updatedOn\":\"2021-11-11T20:14:51.6729667Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c8d896ba-346d-4f50-bc1d-7d1c84130446\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c8d896ba-346d-4f50-bc1d-7d1c84130446\"},{\"properties\":{\"roleName\":\"Project + Babylon Data Source Administrator\",\"type\":\"BuiltInRole\",\"description\":\"The + Microsoft.ProjectBabylon data source administrator can manage data sources + and data scans. This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProjectBabylon/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ProjectBabylon/accounts/scan/read\",\"Microsoft.ProjectBabylon/accounts/scan/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:34:01.8401954Z\",\"updatedOn\":\"2021-11-11T20:14:51.8529643Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/05b7651b-dc44-475e-b74d-df3db49fae0f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"05b7651b-dc44-475e-b74d-df3db49fae0f\"},{\"properties\":{\"roleName\":\"Application + Group Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor + of the Application Group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/applicationgroups/*\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.DesktopVirtualization/workspaces/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-03T23:26:00.2784962Z\",\"updatedOn\":\"2021-11-11T20:14:52.9432015Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ca6382a4-1721-4bcf-a114-ff0c70227b6b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ca6382a4-1721-4bcf-a114-ff0c70227b6b\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader + of Desktop Virtualization.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:36:19.0140629Z\",\"updatedOn\":\"2021-11-11T20:14:54.0407838Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49a72310-ab8d-41df-bbb0-79b649203868\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49a72310-ab8d-41df-bbb0-79b649203868\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor + of Desktop Virtualization.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:37:16.2910337Z\",\"updatedOn\":\"2021-11-11T20:14:54.2107872Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/082f0a83-3be5-4ba1-904c-961cca79b387\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"082f0a83-3be5-4ba1-904c-961cca79b387\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Workspace Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor + of the Desktop Virtualization Workspace.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/workspaces/*\",\"Microsoft.DesktopVirtualization/applicationgroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:38:29.6089216Z\",\"updatedOn\":\"2021-11-11T20:14:54.3907854Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21efdde3-836f-432b-bf3d-3e8e734d4b2b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21efdde3-836f-432b-bf3d-3e8e734d4b2b\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization User Session Operator\",\"type\":\"BuiltInRole\",\"description\":\"Operator + of the Desktop Virtualization User Session.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:39:16.9100273Z\",\"updatedOn\":\"2024-11-01T14:22:39.4622074Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Session Host Operator\",\"type\":\"BuiltInRole\",\"description\":\"Operator + of the Desktop Virtualization Session Host.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:39:53.2569741Z\",\"updatedOn\":\"2021-11-11T20:14:54.7508042Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2ad6aaab-ead9-4eaa-8ac5-da422f562408\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2ad6aaab-ead9-4eaa-8ac5-da422f562408\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Host Pool Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader + of the Desktop Virtualization Host Pool.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/*/read\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:40:33.1430834Z\",\"updatedOn\":\"2021-11-11T20:14:54.9257967Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ceadfde2-b300-400a-ab7b-6143895aa822\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ceadfde2-b300-400a-ab7b-6143895aa822\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Host Pool Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor + of the Desktop Virtualization Host Pool.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:40:57.2976187Z\",\"updatedOn\":\"2021-11-11T20:14:55.1057701Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e307426c-f9b6-4e81-87de-d99efb3c32bc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e307426c-f9b6-4e81-87de-d99efb3c32bc\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Application Group Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader + of the Desktop Virtualization Application Group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/applicationgroups/*/read\",\"Microsoft.DesktopVirtualization/applicationgroups/read\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:41:18.0287398Z\",\"updatedOn\":\"2021-11-11T20:14:55.2858006Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/aebf23d0-b568-4e86-b8f9-fe83a2c6ab55\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"aebf23d0-b568-4e86-b8f9-fe83a2c6ab55\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Application Group Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor + of the Desktop Virtualization Application Group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/applicationgroups/*\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:41:38.6205531Z\",\"updatedOn\":\"2021-11-11T20:14:55.4677136Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/86240b0e-9422-4c43-887b-b61143f32ba8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"86240b0e-9422-4c43-887b-b61143f32ba8\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Workspace Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader + of the Desktop Virtualization Workspace.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/workspaces/read\",\"Microsoft.DesktopVirtualization/applicationgroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:41:58.1892707Z\",\"updatedOn\":\"2021-11-11T20:14:55.6577168Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0fa44ee9-7a7d-466b-9bb2-2bf446b1204d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0fa44ee9-7a7d-466b-9bb2-2bf446b1204d\"},{\"properties\":{\"roleName\":\"Disk + Backup Reader\",\"type\":\"BuiltInRole\",\"description\":\"Provides permission + to backup vault to perform disk backup.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/beginGetAccess/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T07:39:03.8394514Z\",\"updatedOn\":\"2021-11-11T20:14:56.0178737Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e5e47e6-65f7-47ef-90b5-e5dd4d455f24\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3e5e47e6-65f7-47ef-90b5-e5dd4d455f24\"},{\"properties\":{\"roleName\":\"Disk + Restore Operator\",\"type\":\"BuiltInRole\",\"description\":\"Provides permission + to backup vault to perform disk restore.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:18:31.8481619Z\",\"updatedOn\":\"2021-11-11T20:14:56.7408912Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b50d9833-a0cb-478e-945f-707fcc997c13\"},{\"properties\":{\"roleName\":\"Disk + Snapshot Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides + permission to backup vault to manage disk snapshots.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Compute/snapshots/delete\",\"Microsoft.Compute/snapshots/write\",\"Microsoft.Compute/snapshots/read\",\"Microsoft.Compute/snapshots/beginGetAccess/action\",\"Microsoft.Compute/snapshots/endGetAccess/action\",\"Microsoft.Compute/disks/beginGetAccess/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/write\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:18:51.4471411Z\",\"updatedOn\":\"2021-11-11T20:14:56.9158814Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7efff54f-a5b4-42b5-a1c5-5411624893ce\"},{\"properties\":{\"roleName\":\"Microsoft.Kubernetes + connected cluster role\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft.Kubernetes + connected cluster role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Kubernetes/connectedClusters/read\",\"Microsoft.Kubernetes/connectedClusters/write\",\"Microsoft.Kubernetes/connectedClusters/delete\",\"Microsoft.Kubernetes/registeredSubscriptions/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-07T23:57:10.9923232Z\",\"updatedOn\":\"2021-11-11T20:14:58.2039838Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5548b2cf-c94c-4228-90ba-30851930a12f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5548b2cf-c94c-4228-90ba-30851930a12f\"},{\"properties\":{\"roleName\":\"Security + Detonation Chamber Submission Manager\",\"type\":\"BuiltInRole\",\"description\":\"Allowed + to create and manage submissions to Security Detonation Chamber\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/submissions/delete\",\"Microsoft.SecurityDetonation/chambers/submissions/write\",\"Microsoft.SecurityDetonation/chambers/submissions/read\",\"Microsoft.SecurityDetonation/chambers/submissions/files/read\",\"Microsoft.SecurityDetonation/chambers/submissions/accesskeyview/read\",\"Microsoft.SecurityDetonation/chambers/submissions/adminview/read\",\"Microsoft.SecurityDetonation/chambers/submissions/analystview/read\",\"Microsoft.SecurityDetonation/chambers/submissions/publicview/read\",\"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\",\"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-01-18T09:35:36.5739297Z\",\"updatedOn\":\"2021-11-11T20:14:58.3939604Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a37b566d-3efa-4beb-a2f2-698963fa42ce\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a37b566d-3efa-4beb-a2f2-698963fa42ce\"},{\"properties\":{\"roleName\":\"Security + Detonation Chamber Publisher\",\"type\":\"BuiltInRole\",\"description\":\"Allowed + to publish and modify platforms, workflows and toolsets to Security Detonation + Chamber\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/platforms/read\",\"Microsoft.SecurityDetonation/chambers/platforms/write\",\"Microsoft.SecurityDetonation/chambers/platforms/delete\",\"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\"Microsoft.SecurityDetonation/chambers/workflows/read\",\"Microsoft.SecurityDetonation/chambers/workflows/write\",\"Microsoft.SecurityDetonation/chambers/workflows/delete\",\"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\",\"Microsoft.SecurityDetonation/chambers/toolsets/read\",\"Microsoft.SecurityDetonation/chambers/toolsets/write\",\"Microsoft.SecurityDetonation/chambers/toolsets/delete\",\"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\",\"Microsoft.SecurityDetonation/chambers/publishRequests/read\",\"Microsoft.SecurityDetonation/chambers/publishRequests/cancel/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-01-18T11:43:14.0858184Z\",\"updatedOn\":\"2021-11-11T20:14:58.5639749Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/352470b3-6a9c-4686-b503-35deb827e500\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"352470b3-6a9c-4686-b503-35deb827e500\"},{\"properties\":{\"roleName\":\"Collaborative + Runtime Operator\",\"type\":\"BuiltInRole\",\"description\":\"Can manage resources + created by AICS at runtime\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.IndustryDataLifecycle/derivedModels/*\",\"Microsoft.IndustryDataLifecycle/pipelineSets/*\",\"Microsoft.IndustryDataLifecycle/modelMappings/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-19T10:00:27.3464971Z\",\"updatedOn\":\"2021-11-11T20:14:58.7442136Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7a6f0e70-c033-4fb1-828c-08514e5f4102\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7a6f0e70-c033-4fb1-828c-08514e5f4102\"},{\"properties\":{\"roleName\":\"CosmosRestoreOperator\",\"type\":\"BuiltInRole\",\"description\":\"Can + perform restore action for Cosmos DB database account with continuous backup + mode\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restore/action\",\"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/*/read\",\"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-21T19:51:35.3884884Z\",\"updatedOn\":\"2021-11-11T20:14:59.4892686Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5432c526-bc82-444a-b7ba-57c5b0b5b34f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5432c526-bc82-444a-b7ba-57c5b0b5b34f\"},{\"properties\":{\"roleName\":\"FHIR + Data Converter\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user + or principal to convert data from legacy format to FHIR\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/convertData/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/convertData/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-01-22T19:39:01.1601069Z\",\"updatedOn\":\"2021-11-11T20:14:59.8605937Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a1705bd2-3a8f-45a5-8683-466fcfd5cc24\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a1705bd2-3a8f-45a5-8683-466fcfd5cc24\"},{\"properties\":{\"roleName\":\"Quota + Request Operator\",\"type\":\"BuiltInRole\",\"description\":\"Read and create + quota requests, get quota request status, and create support tickets.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Capacity/resourceProviders/locations/serviceLimits/read\",\"Microsoft.Capacity/resourceProviders/locations/serviceLimits/write\",\"Microsoft.Capacity/resourceProviders/locations/serviceLimitsRequests/read\",\"Microsoft.Capacity/register/action\",\"Microsoft.Quota/usages/read\",\"Microsoft.Quota/quotas/read\",\"Microsoft.Quota/quotas/write\",\"Microsoft.Quota/quotaRequests/read\",\"Microsoft.Quota/register/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-02-03T00:06:35.8404575Z\",\"updatedOn\":\"2022-12-07T23:49:01.9455627Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0e5f05e5-9ab9-446b-b98d-1e2157c94125\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0e5f05e5-9ab9-446b-b98d-1e2157c94125\"},{\"properties\":{\"roleName\":\"EventGrid + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage EventGrid + operations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-02-08T18:46:18.8999557Z\",\"updatedOn\":\"2021-11-11T20:15:01.6867802Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1e241071-0855-49ea-94dc-649edcd759de\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1e241071-0855-49ea-94dc-649edcd759de\"},{\"properties\":{\"roleName\":\"Security + Detonation Chamber Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allowed + to query submission info and files from Security Detonation Chamber\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/submissions/read\",\"Microsoft.SecurityDetonation/chambers/submissions/files/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-01T14:06:46.2814905Z\",\"updatedOn\":\"2021-11-11T20:15:03.3274090Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/28241645-39f8-410b-ad48-87863e2951d5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"28241645-39f8-410b-ad48-87863e2951d5\"},{\"properties\":{\"roleName\":\"Object + Anchors Account Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + read ingestion jobs for an object anchors account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-02T01:20:47.0279813Z\",\"updatedOn\":\"2021-11-11T20:15:03.5006082Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a167cdf-cb95-4554-9203-2347fe489bd9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4a167cdf-cb95-4554-9203-2347fe489bd9\"},{\"properties\":{\"roleName\":\"Object + Anchors Account Owner\",\"type\":\"BuiltInRole\",\"description\":\"Provides + user with ingestion capabilities for an object anchors account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/action\",\"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-02T01:42:02.0014737Z\",\"updatedOn\":\"2021-11-11T20:15:03.6855873Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ca0835dd-bacc-42dd-8ed2-ed5e7230d15b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ca0835dd-bacc-42dd-8ed2-ed5e7230d15b\"},{\"properties\":{\"roleName\":\"WorkloadBuilder + Migration Agent Role\",\"type\":\"BuiltInRole\",\"description\":\"WorkloadBuilder + Migration Agent Role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.WorkloadBuilder/migrationAgents/Read\",\"Microsoft.WorkloadBuilder/migrationAgents/Write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-03-11T17:07:20.0828003Z\",\"updatedOn\":\"2021-11-11T20:15:04.2456706Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d17ce0a2-0697-43bc-aac5-9113337ab61c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d17ce0a2-0697-43bc-aac5-9113337ab61c\"},{\"properties\":{\"roleName\":\"Azure + Spring Cloud Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allow + read access to Azure Spring Cloud Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-25T11:12:12.6786010Z\",\"updatedOn\":\"2021-11-11T20:15:05.3368606Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b5537268-8956-4941-a8f0-646150406f0c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b5537268-8956-4941-a8f0-646150406f0c\"},{\"properties\":{\"roleName\":\"Cognitive + Services Speech Contributor\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/SpeechServices/*\",\"Microsoft.CognitiveServices/accounts/CustomVoice/*\",\"Microsoft.CognitiveServices/accounts/AudioContentCreation/*\",\"Microsoft.CognitiveServices/accounts/VideoTranslation/*\",\"Microsoft.CognitiveServices/accounts/CustomAvatar/*\",\"Microsoft.CognitiveServices/accounts/BatchAvatar/*\",\"Microsoft.CognitiveServices/accounts/BatchTextToSpeech/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-30T11:28:49.7826633Z\",\"updatedOn\":\"2024-04-15T15:14:13.2916962Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0e75ca1e-0464-4b4d-8b93-68208a576181\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0e75ca1e-0464-4b4d-8b93-68208a576181\"},{\"properties\":{\"roleName\":\"Cognitive + Services Face Recognizer\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/Face/detect/action\",\"Microsoft.CognitiveServices/accounts/Face/verify/action\",\"Microsoft.CognitiveServices/accounts/Face/identify/action\",\"Microsoft.CognitiveServices/accounts/Face/group/action\",\"Microsoft.CognitiveServices/accounts/Face/findsimilars/action\",\"Microsoft.CognitiveServices/accounts/Face/detectliveness/multimodal/action\",\"Microsoft.CognitiveServices/accounts/Face/detectliveness/singlemodal/action\",\"Microsoft.CognitiveServices/accounts/Face/detectlivenesswithverify/singlemodal/action\",\"Microsoft.CognitiveServices/accounts/Face/*/sessions/action\",\"Microsoft.CognitiveServices/accounts/Face/*/sessions/delete\",\"Microsoft.CognitiveServices/accounts/Face/*/sessions/read\",\"Microsoft.CognitiveServices/accounts/Face/*/sessions/audit/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-31T01:51:41.3557295Z\",\"updatedOn\":\"2023-11-13T16:11:26.3607611Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9894cab4-e18a-44aa-828b-cb588cd6f2d7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9894cab4-e18a-44aa-828b-cb588cd6f2d7\"},{\"properties\":{\"roleName\":\"Media + Services Account Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Create, + read, modify, and delete Media Services accounts; read-only access to other + Media Services resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\",\"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\"Microsoft.Media/mediaservices/write\",\"Microsoft.Media/mediaservices/delete\",\"Microsoft.Media/mediaservices/privateEndpointConnectionsApproval/action\",\"Microsoft.Media/mediaservices/privateEndpointConnections/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:20:32.2956636Z\",\"updatedOn\":\"2021-11-11T20:15:07.1518844Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/054126f8-9a2b-4f1c-a9ad-eca461f08466\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"054126f8-9a2b-4f1c-a9ad-eca461f08466\"},{\"properties\":{\"roleName\":\"Media + Services Live Events Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Create, + read, modify, and delete Live Events, Assets, Asset Filters, and Streaming + Locators; read-only access to other Media Services resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\",\"Microsoft.Media/mediaservices/assets/*\",\"Microsoft.Media/mediaservices/assets/assetfilters/*\",\"Microsoft.Media/mediaservices/streamingLocators/*\",\"Microsoft.Media/mediaservices/liveEvents/*\"],\"notActions\":[\"Microsoft.Media/mediaservices/assets/getEncryptionKey/action\",\"Microsoft.Media/mediaservices/streamingLocators/listContentKeys/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:21:00.6119555Z\",\"updatedOn\":\"2021-11-11T20:15:07.3318873Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/532bc159-b25e-42c0-969e-a1d439f60d77\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"532bc159-b25e-42c0-969e-a1d439f60d77\"},{\"properties\":{\"roleName\":\"Media + Services Media Operator\",\"type\":\"BuiltInRole\",\"description\":\"Create, + read, modify, and delete Assets, Asset Filters, Streaming Locators, and Jobs; + read-only access to other Media Services resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\",\"Microsoft.Media/mediaservices/assets/*\",\"Microsoft.Media/mediaservices/assets/assetfilters/*\",\"Microsoft.Media/mediaservices/streamingLocators/*\",\"Microsoft.Media/mediaservices/transforms/jobs/*\"],\"notActions\":[\"Microsoft.Media/mediaservices/assets/getEncryptionKey/action\",\"Microsoft.Media/mediaservices/streamingLocators/listContentKeys/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:21:23.2236495Z\",\"updatedOn\":\"2021-11-11T20:15:07.5068487Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e4395492-1534-4db2-bedf-88c14621589c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e4395492-1534-4db2-bedf-88c14621589c\"},{\"properties\":{\"roleName\":\"Media + Services Policy Administrator\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\",\"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\"Microsoft.Media/mediaservices/accountFilters/*\",\"Microsoft.Media/mediaservices/streamingPolicies/*\",\"Microsoft.Media/mediaservices/contentKeyPolicies/*\",\"Microsoft.Media/mediaservices/transforms/*\"],\"notActions\":[\"Microsoft.Media/mediaservices/contentKeyPolicies/getPolicyPropertiesWithSecrets/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:21:46.9534330Z\",\"updatedOn\":\"2021-11-11T20:15:07.6968496Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c4bba371-dacd-4a26-b320-7250bca963ae\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c4bba371-dacd-4a26-b320-7250bca963ae\"},{\"properties\":{\"roleName\":\"Media + Services Streaming Endpoints Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Create, + read, modify, and delete Streaming Endpoints; read-only access to other Media + Services resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\",\"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\"Microsoft.Media/mediaservices/streamingEndpoints/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:22:04.4594851Z\",\"updatedOn\":\"2021-11-11T20:15:07.8718907Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/99dba123-b5fe-44d5-874c-ced7199a5804\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"99dba123-b5fe-44d5-874c-ced7199a5804\"},{\"properties\":{\"roleName\":\"Stream + Analytics Query Tester\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + perform query testing without creating a stream analytics job first\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.StreamAnalytics/locations/TestQuery/action\",\"Microsoft.StreamAnalytics/locations/OperationResults/read\",\"Microsoft.StreamAnalytics/locations/SampleInput/action\",\"Microsoft.StreamAnalytics/locations/CompileQuery/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-20T17:33:24.5727870Z\",\"updatedOn\":\"2021-11-11T20:15:08.0481551Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1ec5b3c1-b17e-4e25-8312-2acb3c3c5abf\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1ec5b3c1-b17e-4e25-8312-2acb3c3c5abf\"},{\"properties\":{\"roleName\":\"AnyBuild + Builder\",\"type\":\"BuiltInRole\",\"description\":\"Basic user role for AnyBuild. + This role allows listing of agent information and execution of remote build + capabilities.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AnyBuild/clusters/build/write\",\"Microsoft.AnyBuild/clusters/build/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-04-20T22:07:00.4963853Z\",\"updatedOn\":\"2021-11-11T20:15:08.4254134Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a2138dac-4907-4679-a376-736901ed8ad8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a2138dac-4907-4679-a376-736901ed8ad8\"},{\"properties\":{\"roleName\":\"IoT + Hub Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows for full + read access to IoT Hub data-plane properties\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/IotHubs/*/read\",\"Microsoft.Devices/IotHubs/fileUpload/notifications/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-04-22T18:03:29.8843192Z\",\"updatedOn\":\"2021-11-11T20:15:08.6054154Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b447c946-2db7-41ec-983d-d8bf3b1c77e3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b447c946-2db7-41ec-983d-d8bf3b1c77e3\"},{\"properties\":{\"roleName\":\"IoT + Hub Twin Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows for + read and write access to all IoT Hub device and module twins.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/IotHubs/twins/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-04-22T20:36:10.1136903Z\",\"updatedOn\":\"2021-11-11T20:15:08.7855063Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/494bdba2-168f-4f31-a0a1-191d2f7c028c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"494bdba2-168f-4f31-a0a1-191d2f7c028c\"},{\"properties\":{\"roleName\":\"IoT + Hub Registry Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for full access to IoT Hub device registry.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/IotHubs/devices/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-04-22T20:36:47.5532704Z\",\"updatedOn\":\"2021-11-11T20:15:08.9804295Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4ea46cd5-c1b2-4a8e-910b-273211f9ce47\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4ea46cd5-c1b2-4a8e-910b-273211f9ce47\"},{\"properties\":{\"roleName\":\"IoT + Hub Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows for + full access to IoT Hub data plane operations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/IotHubs/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-04-22T20:37:16.9927761Z\",\"updatedOn\":\"2021-11-11T20:15:09.1754206Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4fc6c259-987e-4a07-842e-c321cc9d413f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4fc6c259-987e-4a07-842e-c321cc9d413f\"},{\"properties\":{\"roleName\":\"Test + Base Reader\",\"type\":\"BuiltInRole\",\"description\":\"Let you view and + download packages and test results.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.TestBase/testBaseAccounts/packages/testResults/getDownloadUrl/action\",\"Microsoft.TestBase/testBaseAccounts/packages/testResults/getVideoDownloadUrl/action\",\"Microsoft.TestBase/testBaseAccounts/packages/getDownloadUrl/action\",\"Microsoft.TestBase/*/read\",\"Microsoft.TestBase/testBaseAccounts/customerEvents/write\",\"Microsoft.TestBase/testBaseAccounts/customerEvents/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-05-11T23:41:33.1038367Z\",\"updatedOn\":\"2021-11-11T20:15:10.8004347Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/15e0f5a1-3450-4248-8e25-e2afe88a9e85\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"15e0f5a1-3450-4248-8e25-e2afe88a9e85\"},{\"properties\":{\"roleName\":\"Search + Index Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Grants read + access to Azure Cognitive Search index data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Search/searchServices/indexes/documents/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-06-01T20:26:13.4850461Z\",\"updatedOn\":\"2021-11-11T20:15:11.3604371Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1407120a-92aa-4202-b7e9-c0e197c71c8f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1407120a-92aa-4202-b7e9-c0e197c71c8f\"},{\"properties\":{\"roleName\":\"Search + Index Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants + full access to Azure Cognitive Search index data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Search/searchServices/indexes/documents/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-06-01T22:15:16.5388472Z\",\"updatedOn\":\"2021-11-11T20:15:11.5504385Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8ebe5a00-799e-43f5-93ac-243d3dce84a7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8ebe5a00-799e-43f5-93ac-243d3dce84a7\"},{\"properties\":{\"roleName\":\"Storage + Table Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows for + read access to Azure Storage tables and entities\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/tableServices/tables/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-06-15T06:40:54.9150717Z\",\"updatedOn\":\"2021-11-11T20:15:12.1005298Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/76199698-9eea-4c19-bc75-cec21354c6b6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"76199698-9eea-4c19-bc75-cec21354c6b6\"},{\"properties\":{\"roleName\":\"Storage + Table Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for read, write and delete access to Azure Storage tables and entities\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/tableServices/tables/read\",\"Microsoft.Storage/storageAccounts/tableServices/tables/write\",\"Microsoft.Storage/storageAccounts/tableServices/tables/delete\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/read\",\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/write\",\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/delete\",\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/add/action\",\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/update/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-06-15T06:51:59.8207610Z\",\"updatedOn\":\"2021-11-11T20:15:12.2854966Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3\"},{\"properties\":{\"roleName\":\"DICOM + Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read and search DICOM + data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/workspaces/dicomservices/resources/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-06-17T20:58:30.1630494Z\",\"updatedOn\":\"2021-11-11T20:15:13.0154948Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e89c7a3c-2f64-4fa1-a847-3e4c9ba4283a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e89c7a3c-2f64-4fa1-a847-3e4c9ba4283a\"},{\"properties\":{\"roleName\":\"DICOM + Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Full access to DICOM + data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/workspaces/dicomservices/resources/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-06-17T20:59:30.8659515Z\",\"updatedOn\":\"2021-11-11T20:15:13.1904985Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/58a3b984-7adf-4c20-983a-32417c86fbc8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"58a3b984-7adf-4c20-983a-32417c86fbc8\"},{\"properties\":{\"roleName\":\"EventGrid + Data Sender\",\"type\":\"BuiltInRole\",\"description\":\"Allows send access + to event grid events.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/topics/read\",\"Microsoft.EventGrid/domains/read\",\"Microsoft.EventGrid/partnerNamespaces/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.EventGrid/namespaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventGrid/events/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-02T21:55:40.4847495Z\",\"updatedOn\":\"2023-10-30T15:07:29.5831630Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a91429-5739-47e2-a06b-3470a27159e7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d5a91429-5739-47e2-a06b-3470a27159e7\"},{\"properties\":{\"roleName\":\"Disk + Pool Operator\",\"type\":\"BuiltInRole\",\"description\":\"Used by the StoragePool + Resource Provider to manage Disks added to a Disk Pool.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-07-08T17:26:05.1079972Z\",\"updatedOn\":\"2021-11-11T20:15:13.9154612Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/60fc6e62-5479-42d4-8bf4-67625fcc2840\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"60fc6e62-5479-42d4-8bf4-67625fcc2840\"},{\"properties\":{\"roleName\":\"AzureML + Data Scientist\",\"type\":\"BuiltInRole\",\"description\":\"Can perform all + actions within an Azure Machine Learning workspace, except for creating or + deleting compute resources and modifying the workspace itself.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/*/read\",\"Microsoft.MachineLearningServices/workspaces/*/action\",\"Microsoft.MachineLearningServices/workspaces/*/delete\",\"Microsoft.MachineLearningServices/workspaces/*/write\"],\"notActions\":[\"Microsoft.MachineLearningServices/workspaces/delete\",\"Microsoft.MachineLearningServices/workspaces/write\",\"Microsoft.MachineLearningServices/workspaces/computes/*/write\",\"Microsoft.MachineLearningServices/workspaces/computes/*/delete\",\"Microsoft.MachineLearningServices/workspaces/computes/listKeys/action\",\"Microsoft.MachineLearningServices/workspaces/listKeys/action\",\"Microsoft.MachineLearningServices/workspaces/hubs/write\",\"Microsoft.MachineLearningServices/workspaces/hubs/delete\",\"Microsoft.MachineLearningServices/workspaces/featurestores/write\",\"Microsoft.MachineLearningServices/workspaces/featurestores/delete\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-07-14T21:51:06.0361218Z\",\"updatedOn\":\"2023-05-31T15:20:44.7862907Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f6c7c914-8db3-469d-8ca1-694a8f32e121\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f6c7c914-8db3-469d-8ca1-694a8f32e121\"},{\"properties\":{\"roleName\":\"Grafana + Admin\",\"type\":\"BuiltInRole\",\"description\":\"Manage server-wide settings + and manage access to resources such as organizations, users, and licenses.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaAdmin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-15T21:32:35.3802340Z\",\"updatedOn\":\"2024-07-19T04:57:48.3613041Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"22926164-76b3-42b3-bc55-97df8dab3e41\"},{\"properties\":{\"roleName\":\"Azure + Connected SQL Server Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft.AzureArcData\_service\_role\_to\_access\_the\_resources\_of\_Microsoft.AzureArcData\_stored\_with\_RPSAAS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureArcData/sqlServerInstances/read\",\"Microsoft.AzureArcData/sqlServerInstances/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-07-19T23:52:15.8885739Z\",\"updatedOn\":\"2021-11-11T20:15:15.1754742Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e8113dce-c529-4d33-91fa-e9b972617508\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e8113dce-c529-4d33-91fa-e9b972617508\"},{\"properties\":{\"roleName\":\"Azure + Relay Sender\",\"type\":\"BuiltInRole\",\"description\":\"Allows for send + access to Azure Relay resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Relay/*/wcfRelays/read\",\"Microsoft.Relay/*/hybridConnections/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Relay/*/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-20T15:37:20.7558643Z\",\"updatedOn\":\"2021-11-11T20:15:15.5454755Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/26baccc8-eea7-41f1-98f4-1762cc7f685d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"26baccc8-eea7-41f1-98f4-1762cc7f685d\"},{\"properties\":{\"roleName\":\"Azure + Relay Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows for full access + to Azure Relay resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Relay/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Relay/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-20T15:44:26.3023126Z\",\"updatedOn\":\"2021-11-11T20:15:15.7154782Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2787bf04-f1f5-4bfe-8383-c8a24483ee38\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2787bf04-f1f5-4bfe-8383-c8a24483ee38\"},{\"properties\":{\"roleName\":\"Azure + Relay Listener\",\"type\":\"BuiltInRole\",\"description\":\"Allows for listen + access to Azure Relay resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Relay/*/wcfRelays/read\",\"Microsoft.Relay/*/hybridConnections/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Relay/*/listen/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-20T18:38:03.1437496Z\",\"updatedOn\":\"2021-11-11T20:15:15.9005232Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/26e0b698-aa6d-4085-9386-aadae190014d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"26e0b698-aa6d-4085-9386-aadae190014d\"},{\"properties\":{\"roleName\":\"Grafana + Viewer\",\"type\":\"BuiltInRole\",\"description\":\"View dashboards, playlists, + and query data sources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaViewer/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-05T16:36:18.7737511Z\",\"updatedOn\":\"2024-07-19T05:11:50.7830427Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/60921a7e-fef1-4a43-9b16-a26c52ad4769\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"60921a7e-fef1-4a43-9b16-a26c52ad4769\"},{\"properties\":{\"roleName\":\"Grafana + Editor\",\"type\":\"BuiltInRole\",\"description\":\"Create, edit, delete, + or view dashboards; create, edit, or delete folders; and edit or view playlists.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaEditor/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-05T16:37:32.5299593Z\",\"updatedOn\":\"2024-07-19T04:57:48.3613041Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a79a5197-3a5c-4973-a920-486035ffd60f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a79a5197-3a5c-4973-a920-486035ffd60f\"},{\"properties\":{\"roleName\":\"Automation + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Manage azure automation + resources and other resources using azure automation.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Automation/automationAccounts/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/ActionGroups/*\",\"Microsoft.Insights/ActivityLogAlerts/*\",\"Microsoft.Insights/MetricAlerts/*\",\"Microsoft.Insights/ScheduledQueryRules/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-08-09T10:18:19.1054699Z\",\"updatedOn\":\"2021-11-11T20:15:17.7304954Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f353d9bd-d4a6-484e-a77a-8050b599b867\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f353d9bd-d4a6-484e-a77a-8050b599b867\"},{\"properties\":{\"roleName\":\"Kubernetes + Extension Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can create, + update, get, list and delete Kubernetes Extensions, and get extension async + operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.KubernetesConfiguration/extensions/write\",\"Microsoft.KubernetesConfiguration/extensions/read\",\"Microsoft.KubernetesConfiguration/extensions/delete\",\"Microsoft.KubernetesConfiguration/extensions/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-08-09T19:47:50.6828896Z\",\"updatedOn\":\"2021-11-11T20:15:17.9155393Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"85cb6faf-e071-4c9b-8136-154b5a04f717\"},{\"properties\":{\"roleName\":\"Device + Provisioning Service Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for full read access to Device Provisioning Service data-plane properties.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/provisioningServices/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-09T19:53:12.1374732Z\",\"updatedOn\":\"2021-11-11T20:15:18.0905503Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/10745317-c249-44a1-a5ce-3a4353c0bbd8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"10745317-c249-44a1-a5ce-3a4353c0bbd8\"},{\"properties\":{\"roleName\":\"Device + Provisioning Service Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for full access to Device Provisioning Service data-plane operations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/provisioningServices/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-09T19:54:03.2783227Z\",\"updatedOn\":\"2021-11-11T20:15:18.2605302Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dfce44e4-17b7-4bd1-a6d1-04996ec95633\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dfce44e4-17b7-4bd1-a6d1-04996ec95633\"},{\"properties\":{\"roleName\":\"Trusted + Signing Certificate Profile Signer\",\"type\":\"BuiltInRole\",\"description\":\"Sign + files with a certificate profile. This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CodeSigning/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CodeSigning/certificateProfiles/Sign/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-16T23:17:53.0002693Z\",\"updatedOn\":\"2024-04-08T15:07:46.2519733Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2837e146-70d7-4cfd-ad55-7efa6464f958\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2837e146-70d7-4cfd-ad55-7efa6464f958\"},{\"properties\":{\"roleName\":\"Azure + Spring Cloud Service Registry Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allow + read access to Azure Spring Cloud Service Registry\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/eurekaService/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-20T04:40:17.9785063Z\",\"updatedOn\":\"2021-11-11T20:15:18.9655101Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cff1b556-2399-4e7e-856d-a8f754be7b65\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cff1b556-2399-4e7e-856d-a8f754be7b65\"},{\"properties\":{\"roleName\":\"Azure + Spring Cloud Service Registry Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allow + read, write and delete access to Azure Spring Cloud Service Registry\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/eurekaService/read\",\"Microsoft.AppPlatform/Spring/eurekaService/write\",\"Microsoft.AppPlatform/Spring/eurekaService/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-20T04:42:38.9153779Z\",\"updatedOn\":\"2021-11-11T20:15:19.1405497Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f5880b48-c26d-48be-b172-7927bfa1c8f1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f5880b48-c26d-48be-b172-7927bfa1c8f1\"},{\"properties\":{\"roleName\":\"Azure + Spring Cloud Config Server Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allow + read access to Azure Spring Cloud Config Server\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/configService/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-26T01:50:51.5123701Z\",\"updatedOn\":\"2021-11-11T20:15:19.3155517Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d04c6db6-4947-4782-9e91-30a88feb7be7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d04c6db6-4947-4782-9e91-30a88feb7be7\"},{\"properties\":{\"roleName\":\"Azure + Spring Cloud Config Server Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allow + read, write and delete access to Azure Spring Cloud Config Server\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/configService/read\",\"Microsoft.AppPlatform/Spring/configService/write\",\"Microsoft.AppPlatform/Spring/configService/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2021-09-06T02:30:47.8611580Z\",\"updatedOn\":\"2021-11-11T20:15:20.0405208Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a06f5c24-21a7-4e1a-aa2b-f19eb6684f5b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a06f5c24-21a7-4e1a-aa2b-f19eb6684f5b\"},{\"properties\":{\"roleName\":\"Azure + VM Managed identities restore Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Azure + VM Managed identities restore Contributors are allowed to perform Azure VM + Restores with managed identities both user and system\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-09-13T05:27:59.2180214Z\",\"updatedOn\":\"2021-11-11T20:15:20.5805266Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6ae96244-5829-4925-a7d3-5975537d91dd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6ae96244-5829-4925-a7d3-5975537d91dd\"},{\"properties\":{\"roleName\":\"Azure + Maps Search and Render Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Grants + access to very limited set of data APIs for common visual web SDK scenarios. + Specifically, render and search data APIs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Maps/accounts/services/render/read\",\"Microsoft.Maps/accounts/services/search/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-10-01T22:17:50.5178931Z\",\"updatedOn\":\"2021-11-11T20:15:22.0455410Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6be48352-4f82-47c9-ad5e-0acacefdb005\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6be48352-4f82-47c9-ad5e-0acacefdb005\"},{\"properties\":{\"roleName\":\"Azure + Maps Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants access + all Azure Maps resource management.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Maps/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-01T22:19:13.1357904Z\",\"updatedOn\":\"2021-11-11T20:15:22.2455414Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dba33070-676a-4fb0-87fa-064dc56ff7fb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dba33070-676a-4fb0-87fa-064dc56ff7fb\"},{\"properties\":{\"roleName\":\"Azure + Arc VMware VM Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Arc + VMware VM Contributor has permissions to perform all VM actions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ConnectedVMwarevSphere/virtualmachines/*\",\"Microsoft.ConnectedVMwarevSphere/virtualmachineinstances/*\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\"Microsoft.HybridCompute/machines/assessPatches/action\",\"Microsoft.HybridCompute/machines/installPatches/action\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/operations/read\",\"Microsoft.HybridCompute/locations/operationresults/read\",\"Microsoft.HybridCompute/locations/operationstatus/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\"Microsoft.HybridCompute/osType/agentVersions/read\",\"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\"Microsoft.HybridCompute/machines/runcommands/read\",\"Microsoft.HybridCompute/machines/runcommands/write\",\"Microsoft.HybridCompute/machines/runcommands/delete\",\"Microsoft.HybridCompute/machines/licenseProfiles/read\",\"Microsoft.HybridCompute/machines/licenseProfiles/write\",\"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\"Microsoft.HybridCompute/licenses/read\",\"Microsoft.HybridCompute/licenses/write\",\"Microsoft.HybridCompute/licenses/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-18T20:19:53.0087024Z\",\"updatedOn\":\"2023-09-01T13:25:44.9439989Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b748a06d-6150-4f8a-aaa9-ce3940cd96cb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b748a06d-6150-4f8a-aaa9-ce3940cd96cb\"},{\"properties\":{\"roleName\":\"Azure + Arc VMware Private Cloud User\",\"type\":\"BuiltInRole\",\"description\":\"Azure + Arc VMware Private Cloud User has permissions to use the VMware cloud resources + to deploy VMs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ConnectedVMwarevSphere/virtualnetworks/join/action\",\"Microsoft.ConnectedVMwarevSphere/virtualnetworks/Read\",\"Microsoft.ConnectedVMwarevSphere/virtualmachinetemplates/clone/action\",\"Microsoft.ConnectedVMwarevSphere/virtualmachinetemplates/Read\",\"Microsoft.ConnectedVMwarevSphere/resourcepools/deploy/action\",\"Microsoft.ConnectedVMwarevSphere/resourcepools/Read\",\"Microsoft.ConnectedVMwarevSphere/hosts/deploy/action\",\"Microsoft.ConnectedVMwarevSphere/hosts/Read\",\"Microsoft.ConnectedVMwarevSphere/clusters/deploy/action\",\"Microsoft.ConnectedVMwarevSphere/clusters/Read\",\"Microsoft.ConnectedVMwarevSphere/datastores/allocateSpace/action\",\"Microsoft.ConnectedVMwarevSphere/datastores/Read\",\"Microsoft.ExtendedLocation/customLocations/Read\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.KubernetesConfiguration/extensions/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-18T20:20:46.5105444Z\",\"updatedOn\":\"2023-11-01T15:17:03.5350730Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ce551c02-7c42-47e0-9deb-e3b6fc3a9a83\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ce551c02-7c42-47e0-9deb-e3b6fc3a9a83\"},{\"properties\":{\"roleName\":\"Azure + Arc VMware Administrator role \",\"type\":\"BuiltInRole\",\"description\":\"Arc + VMware VM Contributor has permissions to perform all connected VMwarevSphere + actions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ConnectedVMwarevSphere/*\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\"Microsoft.HybridCompute/machines/assessPatches/action\",\"Microsoft.HybridCompute/machines/installPatches/action\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/operations/read\",\"Microsoft.HybridCompute/locations/operationresults/read\",\"Microsoft.HybridCompute/locations/operationstatus/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\"Microsoft.HybridCompute/osType/agentVersions/read\",\"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\"Microsoft.HybridCompute/machines/runcommands/read\",\"Microsoft.HybridCompute/machines/runcommands/write\",\"Microsoft.HybridCompute/machines/runcommands/delete\",\"Microsoft.HybridCompute/machines/licenseProfiles/read\",\"Microsoft.HybridCompute/machines/licenseProfiles/write\",\"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\"Microsoft.HybridCompute/licenses/read\",\"Microsoft.HybridCompute/licenses/write\",\"Microsoft.HybridCompute/licenses/delete\",\"Microsoft.ExtendedLocation/customLocations/read\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.KubernetesConfiguration/extensions/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-01T17:12:42.6172725Z\",\"updatedOn\":\"2024-05-22T15:18:10.5637137Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ddc140ed-e463-4246-9145-7c664192013f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ddc140ed-e463-4246-9145-7c664192013f\"},{\"properties\":{\"roleName\":\"Cognitive + Services LUIS Owner\",\"type\":\"BuiltInRole\",\"description\":\" Has access + to all Read, Test, Write, Deploy and Delete functions under LUIS\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.CognitiveServices/accounts/listkeys/action\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LUIS/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-04T03:28:02.9611800Z\",\"updatedOn\":\"2021-11-11T20:15:25.4884913Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f72c8140-2111-481c-87ff-72b910f6e3f8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f72c8140-2111-481c-87ff-72b910f6e3f8\"},{\"properties\":{\"roleName\":\"Cognitive + Services Language Reader\",\"type\":\"BuiltInRole\",\"description\":\"Has + access to Read and Test functions under Language portal\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*/read\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*/read\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/projects/export/action\",\"Microsoft.CognitiveServices/accounts/Language/*/read\",\"Microsoft.CognitiveServices/accounts/Language/*/projects/export/action\",\"Microsoft.CognitiveServices/accounts/Language/query-text/action\",\"Microsoft.CognitiveServices/accounts/Language/query-dataverse/action\",\"Microsoft.CognitiveServices/accounts/Language/analyze-text/jobs/action\",\"Microsoft.CognitiveServices/accounts/Language/analyze-text/action\",\"Microsoft.CognitiveServices/accounts/Language/analyze-text/jobscancel/action\",\"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/action\",\"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/jobscancel/action\",\"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/jobs/action\",\"Microsoft.CognitiveServices/accounts/Language/query-knowledgebases/action\",\"Microsoft.CognitiveServices/accounts/Language/generate/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"]}],\"createdOn\":\"2021-11-04T03:29:14.7643336Z\",\"updatedOn\":\"2023-03-01T16:11:03.4080312Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7628b7b8-a8b2-4cdc-b46f-e9b35248918e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7628b7b8-a8b2-4cdc-b46f-e9b35248918e\"},{\"properties\":{\"roleName\":\"Cognitive + Services Language Writer\",\"type\":\"BuiltInRole\",\"description\":\" Has + access to all Read, Test, and Write functions under Language Portal\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*\",\"Microsoft.CognitiveServices/accounts/Language/*\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/LanguageAuthoring/projects/publish/action\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/projects/deployments/write\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\",\"Microsoft.CognitiveServices/accounts/Language/*/projects/delete\",\"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/write\",\"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/delete\",\"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/swap/action\"]}],\"createdOn\":\"2021-11-04T03:29:39.5761019Z\",\"updatedOn\":\"2022-03-30T00:16:38.3744561Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f2310ca1-dc64-4889-bb49-c8e0fa3d47a8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f2310ca1-dc64-4889-bb49-c8e0fa3d47a8\"},{\"properties\":{\"roleName\":\"Cognitive + Services Language Owner\",\"type\":\"BuiltInRole\",\"description\":\"Has access + to all Read, Test, Write, Deploy and Delete functions under Language portal\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.CognitiveServices/accounts/listkeys/action\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*\",\"Microsoft.CognitiveServices/accounts/Language/*\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"]}],\"createdOn\":\"2021-11-04T03:30:07.6173528Z\",\"updatedOn\":\"2022-03-30T00:16:39.0775846Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f07febfe-79bc-46b1-8b37-790e26e6e498\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f07febfe-79bc-46b1-8b37-790e26e6e498\"},{\"properties\":{\"roleName\":\"Cognitive + Services LUIS Reader\",\"type\":\"BuiltInRole\",\"description\":\"Has access + to Read and Test functions under LUIS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LUIS/*/read\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/testdatasets/write\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-04T03:30:31.2704834Z\",\"updatedOn\":\"2021-11-11T20:15:26.2134821Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18e81cdc-4e98-4e29-a639-e7d10c5a6226\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18e81cdc-4e98-4e29-a639-e7d10c5a6226\"},{\"properties\":{\"roleName\":\"Cognitive + Services LUIS Writer\",\"type\":\"BuiltInRole\",\"description\":\"Has access + to all Read, Test, and Write functions under LUIS\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LUIS/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/LUIS/apps/delete\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/move/action\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/publish/action\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/settings/write\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/azureaccounts/action\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/azureaccounts/delete\"]}],\"createdOn\":\"2021-11-04T03:31:12.1580052Z\",\"updatedOn\":\"2021-11-11T20:15:26.3934523Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6322a993-d5c9-4bed-b113-e49bbea25b27\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6322a993-d5c9-4bed-b113-e49bbea25b27\"},{\"properties\":{\"roleName\":\"PlayFab + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Provides read access to + PlayFab resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.PlayFab/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-04T23:26:57.2248605Z\",\"updatedOn\":\"2021-11-11T20:15:26.5784834Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a9a19cc5-31f4-447c-901f-56c0bb18fcaf\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a9a19cc5-31f4-447c-901f-56c0bb18fcaf\"},{\"properties\":{\"roleName\":\"Load + Test Contributor\",\"type\":\"BuiltInRole\",\"description\":\"View, create, + update, delete and execute load tests. View and list load test resources but + can not make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LoadTestService/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.LoadTestService/loadtests/*\",\"Microsoft.LoadTestService/testProfiles/*\",\"Microsoft.LoadTestService/testProfileRuns/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-09T08:11:21.0936461Z\",\"updatedOn\":\"2024-05-16T15:24:47.2532254Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/749a398d-560b-491b-bb21-08924219302e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"749a398d-560b-491b-bb21-08924219302e\"},{\"properties\":{\"roleName\":\"Load + Test Owner\",\"type\":\"BuiltInRole\",\"description\":\"Execute all operations + on load test resources and load tests\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LoadTestService/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.LoadTestService/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-09T08:12:24.5500195Z\",\"updatedOn\":\"2021-11-11T20:15:27.2897153Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/45bb0b16-2f0c-4e78-afaa-a07599b003f6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"45bb0b16-2f0c-4e78-afaa-a07599b003f6\"},{\"properties\":{\"roleName\":\"PlayFab + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides contributor + access to PlayFab resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.PlayFab/*/read\",\"Microsoft.PlayFab/*/write\",\"Microsoft.PlayFab/*/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-10T00:55:37.3326276Z\",\"updatedOn\":\"2021-11-11T20:15:28.0547167Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0c8b84dc-067c-4039-9615-fa1a4b77c726\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0c8b84dc-067c-4039-9615-fa1a4b77c726\"},{\"properties\":{\"roleName\":\"Load + Test Reader\",\"type\":\"BuiltInRole\",\"description\":\"View and list all + load tests and load test resources but can not make any changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LoadTestService/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.LoadTestService/loadtests/readTest/action\",\"Microsoft.LoadTestService/testProfiles/read\",\"Microsoft.LoadTestService/testProfileRuns/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-10T06:14:08.3903105Z\",\"updatedOn\":\"2024-05-16T15:24:47.2532254Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3ae3fb29-0000-4ccd-bf80-542e7b26e081\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3ae3fb29-0000-4ccd-bf80-542e7b26e081\"},{\"properties\":{\"roleName\":\"Cognitive + Services Immersive Reader User\",\"type\":\"BuiltInRole\",\"description\":\"Provides + access to create Immersive Reader sessions and call APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/ImmersiveReader/getcontentmodelforreader/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-10T19:52:14.4487503Z\",\"updatedOn\":\"2021-11-11T20:15:28.4146975Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b2de6794-95db-4659-8781-7e080d3f2b9d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b2de6794-95db-4659-8781-7e080d3f2b9d\"},{\"properties\":{\"roleName\":\"Lab + Services Contributor\",\"type\":\"BuiltInRole\",\"description\":\"The lab + services contributor role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LabServices/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.LabServices/labPlans/createLab/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:51:03.3308981Z\",\"updatedOn\":\"2021-11-11T20:15:28.7792013Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f69b8690-cc87-41d6-b77a-a4bc3c0a966f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f69b8690-cc87-41d6-b77a-a4bc3c0a966f\"},{\"properties\":{\"roleName\":\"Lab + Services Reader\",\"type\":\"BuiltInRole\",\"description\":\"The lab services + reader role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LabServices/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:55:30.4208618Z\",\"updatedOn\":\"2021-11-11T20:15:28.9592032Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a5c394f-5eb7-4d4f-9c8e-e8eae39faebc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2a5c394f-5eb7-4d4f-9c8e-e8eae39faebc\"},{\"properties\":{\"roleName\":\"Lab + Assistant\",\"type\":\"BuiltInRole\",\"description\":\"The lab assistant role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.LabServices/labPlans/images/read\",\"Microsoft.LabServices/labPlans/read\",\"Microsoft.LabServices/labs/read\",\"Microsoft.LabServices/labs/schedules/read\",\"Microsoft.LabServices/labs/users/read\",\"Microsoft.LabServices/labs/users/invite/action\",\"Microsoft.LabServices/labs/virtualMachines/read\",\"Microsoft.LabServices/labs/virtualMachines/start/action\",\"Microsoft.LabServices/labs/virtualMachines/stop/action\",\"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\"Microsoft.LabServices/locations/usages/read\",\"Microsoft.LabServices/skus/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:56:10.4295443Z\",\"updatedOn\":\"2021-11-11T20:15:29.1442530Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ce40b423-cede-4313-a93f-9b28290b72e1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ce40b423-cede-4313-a93f-9b28290b72e1\"},{\"properties\":{\"roleName\":\"Lab + Operator\",\"type\":\"BuiltInRole\",\"description\":\"The lab operator role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.LabServices/labPlans/images/read\",\"Microsoft.LabServices/labPlans/read\",\"Microsoft.LabServices/labPlans/saveImage/action\",\"Microsoft.LabServices/labs/publish/action\",\"Microsoft.LabServices/labs/read\",\"Microsoft.LabServices/labs/schedules/read\",\"Microsoft.LabServices/labs/schedules/write\",\"Microsoft.LabServices/labs/schedules/delete\",\"Microsoft.LabServices/labs/users/read\",\"Microsoft.LabServices/labs/users/write\",\"Microsoft.LabServices/labs/users/delete\",\"Microsoft.LabServices/labs/users/invite/action\",\"Microsoft.LabServices/labs/virtualMachines/read\",\"Microsoft.LabServices/labs/virtualMachines/start/action\",\"Microsoft.LabServices/labs/virtualMachines/stop/action\",\"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\"Microsoft.LabServices/labs/virtualMachines/resetPassword/action\",\"Microsoft.LabServices/locations/usages/read\",\"Microsoft.LabServices/skus/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:56:41.9942935Z\",\"updatedOn\":\"2021-11-11T20:15:29.3242664Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a36e6959-b6be-4b12-8e9f-ef4b474d304d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a36e6959-b6be-4b12-8e9f-ef4b474d304d\"},{\"properties\":{\"roleName\":\"Lab + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"The lab contributor + role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.LabServices/labPlans/images/read\",\"Microsoft.LabServices/labPlans/read\",\"Microsoft.LabServices/labPlans/saveImage/action\",\"Microsoft.LabServices/labs/read\",\"Microsoft.LabServices/labs/write\",\"Microsoft.LabServices/labs/delete\",\"Microsoft.LabServices/labs/publish/action\",\"Microsoft.LabServices/labs/syncGroup/action\",\"Microsoft.LabServices/labs/schedules/read\",\"Microsoft.LabServices/labs/schedules/write\",\"Microsoft.LabServices/labs/schedules/delete\",\"Microsoft.LabServices/labs/users/read\",\"Microsoft.LabServices/labs/users/write\",\"Microsoft.LabServices/labs/users/delete\",\"Microsoft.LabServices/labs/users/invite/action\",\"Microsoft.LabServices/labs/virtualMachines/read\",\"Microsoft.LabServices/labs/virtualMachines/start/action\",\"Microsoft.LabServices/labs/virtualMachines/stop/action\",\"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\"Microsoft.LabServices/labs/virtualMachines/resetPassword/action\",\"Microsoft.LabServices/locations/usages/read\",\"Microsoft.LabServices/skus/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.LabServices/labPlans/createLab/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:57:05.9018065Z\",\"updatedOn\":\"2021-11-11T20:15:29.4992096Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5daaa2af-1fe8-407c-9122-bba179798270\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5daaa2af-1fe8-407c-9122-bba179798270\"},{\"properties\":{\"roleName\":\"Security + Admin\",\"type\":\"BuiltInRole\",\"description\":\"Security Admin Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Authorization/policyAssignments/*\",\"Microsoft.Authorization/policyDefinitions/*\",\"Microsoft.Authorization/policyExemptions/*\",\"Microsoft.Authorization/policySetDefinitions/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.operationalInsights/workspaces/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Security/*\",\"Microsoft.IoTSecurity/*\",\"Microsoft.IoTFirmwareDefense/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-03T07:51:23.0917487Z\",\"updatedOn\":\"2023-06-28T15:25:35.2618493Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fb1c8493-542b-48eb-b624-b4c8fea62acd\"},{\"properties\":{\"roleName\":\"Web + PubSub Service Owner\",\"type\":\"BuiltInRole\",\"description\":\"Full access + to Azure Web PubSub Service REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/WebPubSub/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-24T09:10:11.8335180Z\",\"updatedOn\":\"2023-04-06T15:21:51.7148896Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/12cf5a90-567b-43ae-8102-96cf46c7d9b4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"12cf5a90-567b-43ae-8102-96cf46c7d9b4\"},{\"properties\":{\"roleName\":\"Web + PubSub Service Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read-only + access to Azure Web PubSub Service REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/WebPubSub/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-24T09:11:12.6235436Z\",\"updatedOn\":\"2023-04-06T15:21:51.6558878Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bfb1c7d2-fb1a-466b-b2ba-aee63b92deaf\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bfb1c7d2-fb1a-466b-b2ba-aee63b92deaf\"},{\"properties\":{\"roleName\":\"SignalR + App Server\",\"type\":\"BuiltInRole\",\"description\":\"Lets your app server + access SignalR Service with AAD auth options.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/auth/accessKey/action\",\"Microsoft.SignalRService/SignalR/serverConnection/write\",\"Microsoft.SignalRService/SignalR/clientConnection/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-29T06:54:40.1201435Z\",\"updatedOn\":\"2021-11-16T05:19:04.8579948Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/420fcaa2-552c-430f-98ca-3264be4806c7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"420fcaa2-552c-430f-98ca-3264be4806c7\"},{\"properties\":{\"roleName\":\"Virtual + Machine User Login\",\"type\":\"BuiltInRole\",\"description\":\"View Virtual + Machines in the portal and login as a regular user.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Compute/virtualMachines/*/read\",\"Microsoft.HybridCompute/machines/*/read\",\"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Compute/virtualMachines/login/action\",\"Microsoft.HybridCompute/machines/login/action\"],\"notDataActions\":[]}],\"createdOn\":\"2018-02-09T18:36:13.3315744Z\",\"updatedOn\":\"2021-11-18T00:55:50.6185845Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb879df8-f326-4884-b1cf-06f3ad86be52\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fb879df8-f326-4884-b1cf-06f3ad86be52\"},{\"properties\":{\"roleName\":\"Virtual + Machine Administrator Login\",\"type\":\"BuiltInRole\",\"description\":\"View + Virtual Machines in the portal and login as administrator\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Compute/virtualMachines/*/read\",\"Microsoft.HybridCompute/machines/*/read\",\"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Compute/virtualMachines/login/action\",\"Microsoft.Compute/virtualMachines/loginAsAdmin/action\",\"Microsoft.HybridCompute/machines/login/action\",\"Microsoft.HybridCompute/machines/loginAsAdmin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2018-02-09T18:36:13.3315744Z\",\"updatedOn\":\"2021-11-18T00:56:53.8134295Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1c0163c0-47e6-4577-8991-ea5c82e286e4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1c0163c0-47e6-4577-8991-ea5c82e286e4\"},{\"properties\":{\"roleName\":\"Azure + Connected Machine Resource Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Can + read, write, delete and re-onboard Azure Connected Machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/*\",\"Microsoft.HybridCompute/machines/extensions/*\",\"Microsoft.HybridCompute/machines/licenseProfiles/*\",\"Microsoft.HybridCompute/machines/runCommands/*\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\"Microsoft.HybridCompute/settings/*\",\"Microsoft.HybridCompute/gateways/*\",\"Microsoft.HybridCompute/privateLinkScopes/*\",\"Microsoft.HybridCompute/licenses/*\",\"Microsoft.HybridCompute/locations/*\",\"Microsoft.HybridCompute/*/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:24:59.1474607Z\",\"updatedOn\":\"2025-02-03T16:08:25.0326897Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cd570a14-e51a-42ad-bac8-bafd67325302\"},{\"properties\":{\"roleName\":\"Backup + Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage backup + services, except removal of backup, vault creation and giving access to others\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/accessToken/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/certificates/write\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\"Microsoft.RecoveryServices/Vaults/backupTriggerValidateOperation/action\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperationsStatuses/read\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"Microsoft.RecoveryServices/locations/backupAadProperties/read\",\"Microsoft.RecoveryServices/locations/backupCrrJobs/action\",\"Microsoft.RecoveryServices/locations/backupCrrJob/action\",\"Microsoft.RecoveryServices/locations/backupCrossRegionRestore/action\",\"Microsoft.RecoveryServices/locations/backupCrrOperationResults/read\",\"Microsoft.RecoveryServices/locations/backupCrrOperationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.Support/*\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/operationResults/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/write\",\"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/read\",\"Microsoft.DataProtection/backupVaults/operationStatus/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/locations/operationStatus/read\",\"Microsoft.DataProtection/locations/operationResults/read\",\"Microsoft.DataProtection/operations/read\",\"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/crossRegionRestore/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/validateCrossRegionRestore/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJobs/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJob/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchSecondaryRecoveryPoints/action\",\"Microsoft.DataProtection/locations/checkFeatureSupport/action\",\"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/delete\",\"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/read\",\"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/unlockDelete/action\",\"Microsoft.RecoveryServices/Vaults/backupResourceGuardProxies/write\",\"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/read\",\"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/write\",\"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete\",\"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/unlockDelete/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/validateForModifyBackup/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:21:11.8947640Z\",\"updatedOn\":\"2025-01-28T16:08:58.1354386Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00c29273-979b-4161-815c-10b084fb9324\"},{\"properties\":{\"roleName\":\"Workbook + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can save shared workbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/workbooks/write\",\"Microsoft.Insights/workbooks/delete\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Insights/workbooks/revisions/read\",\"Microsoft.Insights/workbooktemplates/write\",\"Microsoft.Insights/workbooktemplates/delete\",\"Microsoft.Insights/workbooktemplates/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:59:42.4820277Z\",\"updatedOn\":\"2022-12-12T18:07:19.5792794Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e8ddcd69-c73f-4f9f-9844-4100522f16ad\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e8ddcd69-c73f-4f9f-9844-4100522f16ad\"},{\"properties\":{\"roleName\":\"Workbook + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read workbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.insights/workbooks/read\",\"microsoft.insights/workbooks/revisions/read\",\"microsoft.insights/workbooktemplates/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:56:17.6808140Z\",\"updatedOn\":\"2022-12-12T18:07:19.5792794Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b279062a-9be3-42a0-92ae-8b3cf002ec4d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b279062a-9be3-42a0-92ae-8b3cf002ec4d\"},{\"properties\":{\"roleName\":\"Monitoring + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can read all monitoring + data and update monitoring settings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.AlertsManagement/alerts/*\",\"Microsoft.AlertsManagement/alertsSummary/*\",\"Microsoft.Insights/actiongroups/*\",\"Microsoft.Insights/activityLogAlerts/*\",\"Microsoft.Insights/AlertRules/*\",\"Microsoft.Insights/components/*\",\"Microsoft.Insights/createNotifications/*\",\"Microsoft.Insights/dataCollectionEndpoints/*\",\"Microsoft.Insights/dataCollectionRules/*\",\"Microsoft.Insights/dataCollectionRuleAssociations/*\",\"Microsoft.Insights/DiagnosticSettings/*\",\"Microsoft.Insights/eventtypes/*\",\"Microsoft.Insights/LogDefinitions/*\",\"Microsoft.Insights/metricalerts/*\",\"Microsoft.Insights/MetricDefinitions/*\",\"Microsoft.Insights/Metrics/*\",\"Microsoft.Insights/notificationStatus/*\",\"Microsoft.Insights/Register/Action\",\"Microsoft.Insights/scheduledqueryrules/*\",\"Microsoft.Insights/webtests/*\",\"Microsoft.Insights/workbooks/*\",\"Microsoft.Insights/workbooktemplates/*\",\"Microsoft.Insights/privateLinkScopes/*\",\"Microsoft.Insights/privateLinkScopeOperationStatuses/*\",\"Microsoft.Monitor/accounts/*\",\"Microsoft.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationalInsights/workspaces/search/action\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/read\",\"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\"Microsoft.OperationalInsights/locations/workspaces/failover/action\",\"Microsoft.OperationalInsights/workspaces/failback/action\",\"Microsoft.Support/*\",\"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\"Microsoft.AlertsManagement/actionRules/*\",\"Microsoft.AlertsManagement/smartGroups/*\",\"Microsoft.AlertsManagement/migrateFromSmartDetection/*\",\"Microsoft.AlertsManagement/investigations/*\",\"Microsoft.AlertsManagement/prometheusRuleGroups/*\",\"Microsoft.Monitor/investigations/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-09-21T19:21:08.4345976Z\",\"updatedOn\":\"2024-09-26T15:23:00.7494092Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"},{\"properties\":{\"roleName\":\"Monitoring + Metrics Publisher\",\"type\":\"BuiltInRole\",\"description\":\"Enables publishing + metrics against Azure resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/Register/Action\",\"Microsoft.Support/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Insights/Metrics/Write\",\"Microsoft.Insights/Telemetry/Write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-08-14T00:36:16.5610279Z\",\"updatedOn\":\"2022-01-04T00:38:04.0289073Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3913510d-42f4-4e42-8a64-420c390055eb\"},{\"properties\":{\"roleName\":\"Purview + role 1 (Deprecated)\",\"type\":\"BuiltInRole\",\"description\":\"Deprecated + role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Purview/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Purview/accounts/data/read\",\"Microsoft.Purview/accounts/data/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:37:15.0123345Z\",\"updatedOn\":\"2022-01-04T00:43:15.6924286Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8a3c2885-9b38-4fd2-9d99-91af537c1347\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8a3c2885-9b38-4fd2-9d99-91af537c1347\"},{\"properties\":{\"roleName\":\"Purview + role 2 (Deprecated)\",\"type\":\"BuiltInRole\",\"description\":\"Deprecated + role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Purview/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Purview/accounts/scan/read\",\"Microsoft.Purview/accounts/scan/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:40:05.0975648Z\",\"updatedOn\":\"2022-01-04T00:47:22.9678219Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/200bba9e-f0c8-430f-892b-6f0794863803\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"200bba9e-f0c8-430f-892b-6f0794863803\"},{\"properties\":{\"roleName\":\"Purview + role 3 (Deprecated)\",\"type\":\"BuiltInRole\",\"description\":\"Deprecated + role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Purview/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Purview/accounts/data/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:39:22.2344740Z\",\"updatedOn\":\"2022-01-04T00:48:08.2844802Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ff100721-1b9d-43d8-af52-42b69c1272db\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ff100721-1b9d-43d8-af52-42b69c1272db\"},{\"properties\":{\"roleName\":\"Autonomous + Development Platform Data Contributor (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Grants + permissions to upload and manage new Autonomous Development Platform measurements.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AutonomousDevelopmentPlatform/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/discoveries/*\",\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/uploads/*\",\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurements/states/new/*\",\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurementCollections/*\",\"Microsoft.AutonomousDevelopmentPlatform/accounts/measurementCollections/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/read\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/discoveries/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/uploads/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/classifications/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/dataStreams/classifications/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurementCollections/*\"],\"notDataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurements/states/new/changeState/action\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/changeState/action\"]}],\"createdOn\":\"2020-12-15T11:30:01.7459379Z\",\"updatedOn\":\"2022-09-15T19:15:50.9036822Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b8b15564-4fa6-4a59-ab12-03e1d9594795\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b8b15564-4fa6-4a59-ab12-03e1d9594795\"},{\"properties\":{\"roleName\":\"Autonomous + Development Platform Data Owner (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Grants + full access to Autonomous Development Platform data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AutonomousDevelopmentPlatform/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:13:59.9702378Z\",\"updatedOn\":\"2022-01-04T13:20:26.2040404Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/27f8b550-c507-4db9-86f2-f4b8e816d59d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"27f8b550-c507-4db9-86f2-f4b8e816d59d\"},{\"properties\":{\"roleName\":\"Autonomous + Development Platform Data Reader (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Grants + read access to Autonomous Development Platform data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AutonomousDevelopmentPlatform/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:11:31.9843256Z\",\"updatedOn\":\"2022-01-04T13:21:04.3207709Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d63b75f7-47ea-4f27-92ac-e0d173aaf093\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d63b75f7-47ea-4f27-92ac-e0d173aaf093\"},{\"properties\":{\"roleName\":\"Key + Vault Crypto Officer\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/keys/*\",\"Microsoft.KeyVault/vaults/keyrotationpolicies/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.0099249Z\",\"updatedOn\":\"2022-01-06T23:21:17.9760884Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/14b46e9e-c2b7-41b4-b07b-48a6ebf60603\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"14b46e9e-c2b7-41b4-b07b-48a6ebf60603\"},{\"properties\":{\"roleName\":\"Device + Update Deployments Reader\",\"type\":\"BuiltInRole\",\"description\":\"Gives + you read access to management operations, but does not allow making changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/accounts/instances/management/read\",\"Microsoft.DeviceUpdate/accounts/instances/updates/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-08-22T00:01:34.7053630Z\",\"updatedOn\":\"2022-01-13T01:35:51.6463216Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49e2f5d2-7741-4835-8efa-19e1fe35e47f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49e2f5d2-7741-4835-8efa-19e1fe35e47f\"},{\"properties\":{\"roleName\":\"Device + Update Deployments Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Gives + you full access to management operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/accounts/instances/management/read\",\"Microsoft.DeviceUpdate/accounts/instances/management/write\",\"Microsoft.DeviceUpdate/accounts/instances/management/delete\",\"Microsoft.DeviceUpdate/accounts/instances/updates/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-08-21T23:59:52.1001666Z\",\"updatedOn\":\"2022-01-13T01:59:19.4616366Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e4237640-0e3d-4a46-8fda-70bc94856432\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e4237640-0e3d-4a46-8fda-70bc94856432\"},{\"properties\":{\"roleName\":\"Azure + Arc VMware Private Clouds Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Azure + Arc VMware Private Clouds Onboarding role has permissions to provision all + the required resources for onboard and deboard vCenter instances to Azure.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ConnectedVMwarevSphere/vcenters/Write\",\"Microsoft.ConnectedVMwarevSphere/vcenters/Read\",\"Microsoft.ConnectedVMwarevSphere/vcenters/Delete\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.KubernetesConfiguration/extensions/Write\",\"Microsoft.KubernetesConfiguration/extensions/Read\",\"Microsoft.KubernetesConfiguration/extensions/Delete\",\"Microsoft.KubernetesConfiguration/operations/read\",\"Microsoft.KubernetesConfiguration/extensions/operations/read\",\"Microsoft.ExtendedLocation/customLocations/Read\",\"Microsoft.ExtendedLocation/customLocations/Write\",\"Microsoft.ExtendedLocation/customLocations/Delete\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.ResourceConnector/appliances/Read\",\"Microsoft.ResourceConnector/appliances/Write\",\"Microsoft.ResourceConnector/appliances/Delete\",\"Microsoft.ResourceConnector/appliances/listClusterUserCredential/action\",\"Microsoft.BackupSolutions/vmwareapplications/write\",\"Microsoft.BackupSolutions/vmwareapplications/delete\",\"Microsoft.BackupSolutions/vmwareapplications/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-01T22:18:08.4480747Z\",\"updatedOn\":\"2023-08-21T15:00:43.2807863Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/67d33e57-3129-45e6-bb0b-7cc522f762fa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"67d33e57-3129-45e6-bb0b-7cc522f762fa\"},{\"properties\":{\"roleName\":\"Microsoft + Sentinel Automation Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft + Sentinel Automation Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Logic/workflows/triggers/read\",\"Microsoft.Logic/workflows/triggers/listCallbackUrl/action\",\"Microsoft.Logic/workflows/runs/read\",\"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/read\",\"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/listCallbackUrl/action\",\"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/runs/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-24T08:50:52.0382991Z\",\"updatedOn\":\"2022-01-26T09:25:00.4699337Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f4c81013-99ee-4d62-a7ee-b3f1f648599a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f4c81013-99ee-4d62-a7ee-b3f1f648599a\"},{\"properties\":{\"roleName\":\"CDN + Endpoint Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view CDN + endpoints, but can't make changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Cdn/edgenodes/read\",\"Microsoft.Cdn/operationresults/*\",\"Microsoft.Cdn/profiles/endpoints/*/read\",\"Microsoft.Cdn/profiles/afdendpoints/validateCustomDomain/action\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2023-12-08T09:25:10.8320712Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"},{\"properties\":{\"roleName\":\"Cognitive + Services Speech User\",\"type\":\"BuiltInRole\",\"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\u2019t create, delete or modify the data/test/model/endpoint + for custom models.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/SpeechServices/*/read\",\"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/read\",\"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/write\",\"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/delete\",\"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/action\",\"Microsoft.CognitiveServices/accounts/SpeechServices/*/frontend/action\",\"Microsoft.CognitiveServices/accounts/SpeechServices/text-dependent/*/action\",\"Microsoft.CognitiveServices/accounts/SpeechServices/text-independent/*/action\",\"Microsoft.CognitiveServices/accounts/CustomVoice/*/read\",\"Microsoft.CognitiveServices/accounts/CustomVoice/evaluations/*\",\"Microsoft.CognitiveServices/accounts/CustomVoice/longaudiosynthesis/*\",\"Microsoft.CognitiveServices/accounts/AudioContentCreation/*\",\"Microsoft.CognitiveServices/accounts/VideoTranslation/*\",\"Microsoft.CognitiveServices/accounts/CustomAvatar/*/read\",\"Microsoft.CognitiveServices/accounts/BatchAvatar/*\",\"Microsoft.CognitiveServices/accounts/BatchTextToSpeech/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/files/read\",\"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/utterances/read\"]}],\"createdOn\":\"2021-03-30T11:28:27.4339032Z\",\"updatedOn\":\"2024-10-21T15:04:46.4452794Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f2dc8367-1007-4938-bd23-fe263f013447\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f2dc8367-1007-4938-bd23-fe263f013447\"},{\"properties\":{\"roleName\":\"Windows + Admin Center Administrator Login\",\"type\":\"BuiltInRole\",\"description\":\"Let's + you manage the OS of your resource via Windows Admin Center as an administrator.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/*/read\",\"Microsoft.HybridCompute/machines/extensions/*\",\"Microsoft.HybridCompute/machines/upgradeExtensions/action\",\"Microsoft.HybridCompute/operations/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\"Microsoft.Network/networkWatchers/securityGroupView/action\",\"Microsoft.Network/networkSecurityGroups/securityRules/read\",\"Microsoft.Network/networkSecurityGroups/securityRules/write\",\"Microsoft.HybridConnectivity/endpoints/write\",\"Microsoft.HybridConnectivity/endpoints/read\",\"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/write\",\"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/read\",\"Microsoft.HybridConnectivity/endpoints/listManagedProxyDetails/action\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/patchAssessmentResults/latest/read\",\"Microsoft.Compute/virtualMachines/patchAssessmentResults/latest/softwarePatches/read\",\"Microsoft.Compute/virtualMachines/patchInstallationResults/read\",\"Microsoft.Compute/virtualMachines/patchInstallationResults/softwarePatches/read\",\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Compute/virtualMachines/runCommands/read\",\"Microsoft.Compute/virtualMachines/vmSizes/read\",\"Microsoft.Compute/locations/publishers/artifacttypes/types/read\",\"Microsoft.Compute/locations/publishers/artifacttypes/types/versions/read\",\"Microsoft.Compute/diskAccesses/read\",\"Microsoft.Compute/galleries/images/read\",\"Microsoft.Compute/images/read\",\"Microsoft.AzureStackHCI/Clusters/Read\",\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Read\",\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Read\",\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Write\",\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Delete\",\"Microsoft.AzureStackHCI/Operations/Read\",\"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Read\",\"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Extensions/Write\",\"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Extensions/Read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.HybridCompute/machines/WACLoginAsAdmin/action\",\"Microsoft.Compute/virtualMachines/WACloginAsAdmin/action\",\"Microsoft.AzureStackHCI/Clusters/WACloginAsAdmin/Action\",\"Microsoft.ConnectedVMwarevSphere/virtualmachines/WACloginAsAdmin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-01-12T00:51:19.5581155Z\",\"updatedOn\":\"2024-01-25T16:40:52.3962677Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a6333a3e-0164-44c3-b281-7a577aff287f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a6333a3e-0164-44c3-b281-7a577aff287f\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service Policy Add-on Deployment\",\"type\":\"BuiltInRole\",\"description\":\"Deploy + the Azure Policy add-on on Azure Kubernetes Service clusters\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/deployments/*\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/publicIPPrefixes/join/action\",\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Compute/diskEncryptionSets/read\",\"Microsoft.Compute/proximityPlacementGroups/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-02-07T20:51:48.5662807Z\",\"updatedOn\":\"2022-03-16T01:35:31.5373337Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18ed5180-3e48-46fd-8541-4ea054d57064\"},{\"properties\":{\"roleName\":\"Guest + Configuration Resource Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you read, write Guest Configuration Resource.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.GuestConfiguration/guestConfigurationAssignments/write\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/*/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-01-13T21:31:41.9626667Z\",\"updatedOn\":\"2022-02-10T19:22:44.9057916Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/088ab73d-1256-47ae-bea9-9de8e7131f31\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"088ab73d-1256-47ae-bea9-9de8e7131f31\"},{\"properties\":{\"roleName\":\"Domain + Services Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view Azure + AD Domain Services and related network configurations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Insights/Logs/Read\",\"Microsoft.Insights/Metrics/read\",\"Microsoft.Insights/DiagnosticSettings/read\",\"Microsoft.Insights/DiagnosticSettingsCategories/Read\",\"Microsoft.AAD/domainServices/*/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/azureFirewalls/read\",\"Microsoft.Network/ddosProtectionPlans/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/*/read\",\"Microsoft.Network/natGateways/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/securityRules/read\",\"Microsoft.Network/routeTables/read\",\"Microsoft.Network/routeTables/routes/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-02-15T19:38:46.9043170Z\",\"updatedOn\":\"2022-06-27T19:30:44.3629686Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/361898ef-9ed1-48c2-849c-a832951106bb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"361898ef-9ed1-48c2-849c-a832951106bb\"},{\"properties\":{\"roleName\":\"Domain + Services Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage + Azure AD Domain Services and related network configurations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Insights/Logs/Read\",\"Microsoft.Insights/Metrics/Read\",\"Microsoft.Insights/DiagnosticSettings/*\",\"Microsoft.Insights/DiagnosticSettingsCategories/Read\",\"Microsoft.AAD/register/action\",\"Microsoft.AAD/unregister/action\",\"Microsoft.AAD/domainServices/*\",\"Microsoft.Network/register/action\",\"Microsoft.Network/unregister/action\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/write\",\"Microsoft.Network/virtualNetworks/delete\",\"Microsoft.Network/virtualNetworks/peer/action\",\"Microsoft.Network/virtualNetworks/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/virtualNetworks/subnets/delete\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/azureFirewalls/read\",\"Microsoft.Network/ddosProtectionPlans/read\",\"Microsoft.Network/ddosProtectionPlans/join/action\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/delete\",\"Microsoft.Network/loadBalancers/*/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\"Microsoft.Network/natGateways/join/action\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkInterfaces/delete\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/write\",\"Microsoft.Network/networkSecurityGroups/delete\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/networkSecurityGroups/securityRules/read\",\"Microsoft.Network/networkSecurityGroups/securityRules/write\",\"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\"Microsoft.Network/routeTables/read\",\"Microsoft.Network/routeTables/write\",\"Microsoft.Network/routeTables/delete\",\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Network/routeTables/routes/read\",\"Microsoft.Network/routeTables/routes/write\",\"Microsoft.Network/routeTables/routes/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-02-15T19:40:22.3943189Z\",\"updatedOn\":\"2022-06-27T19:30:44.3629686Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/eeaeda52-9324-47f6-8069-5d5bade478b2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"eeaeda52-9324-47f6-8069-5d5bade478b2\"},{\"properties\":{\"roleName\":\"DNS + Resolver Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + manage DNS resolver resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/dnsResolvers/read\",\"Microsoft.Network/dnsResolvers/write\",\"Microsoft.Network/dnsResolvers/delete\",\"Microsoft.Network/dnsResolvers/join/action\",\"Microsoft.Network/dnsResolvers/inboundEndpoints/read\",\"Microsoft.Network/dnsResolvers/inboundEndpoints/write\",\"Microsoft.Network/dnsResolvers/inboundEndpoints/delete\",\"Microsoft.Network/dnsResolvers/inboundEndpoints/join/action\",\"Microsoft.Network/dnsResolvers/outboundEndpoints/read\",\"Microsoft.Network/dnsResolvers/outboundEndpoints/write\",\"Microsoft.Network/dnsResolvers/outboundEndpoints/delete\",\"Microsoft.Network/dnsResolvers/outboundEndpoints/join/action\",\"Microsoft.Network/dnsForwardingRulesets/read\",\"Microsoft.Network/dnsForwardingRulesets/write\",\"Microsoft.Network/dnsForwardingRulesets/delete\",\"Microsoft.Network/dnsForwardingRulesets/join/action\",\"Microsoft.Network/dnsForwardingRulesets/forwardingRules/read\",\"Microsoft.Network/dnsForwardingRulesets/forwardingRules/write\",\"Microsoft.Network/dnsForwardingRulesets/forwardingRules/delete\",\"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/read\",\"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/write\",\"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/delete\",\"Microsoft.Network/locations/dnsResolverOperationResults/read\",\"Microsoft.Network/locations/dnsResolverOperationStatuses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/join/action\",\"Microsoft.Network/virtualNetworks/joinLoadBalancer/action\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/joinLoadBalancer/action\",\"Microsoft.Network/natGateways/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Network/serviceEndpointPolicies/join/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-02-16T23:25:04.4308795Z\",\"updatedOn\":\"2022-03-12T03:10:56.0891783Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0f2ebee7-ffd4-4fc0-b3b7-664099fdad5d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0f2ebee7-ffd4-4fc0-b3b7-664099fdad5d\"},{\"properties\":{\"roleName\":\"Azure + Arc Enabled Kubernetes Cluster User Role\",\"type\":\"BuiltInRole\",\"description\":\"List + cluster user credentials action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Kubernetes/connectedClusters/listClusterUserCredentials/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\",\"Microsoft.Kubernetes/connectedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-07-28T17:37:00.7637445Z\",\"updatedOn\":\"2022-02-17T02:29:05.1000798Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00493d72-78f6-4148-b6c5-d3ce8e4799dd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00493d72-78f6-4148-b6c5-d3ce8e4799dd\"},{\"properties\":{\"roleName\":\"Data + Operator for Managed Disks\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Compute/disks/download/action\",\"Microsoft.Compute/disks/upload/action\",\"Microsoft.Compute/snapshots/download/action\",\"Microsoft.Compute/snapshots/upload/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-03-01T07:44:08.5420759Z\",\"updatedOn\":\"2022-03-01T07:44:08.5420759Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/959f8984-c045-4866-89c7-12bf9737be2e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"959f8984-c045-4866-89c7-12bf9737be2e\"},{\"properties\":{\"roleName\":\"AgFood + Platform Sensor Partner Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides + contribute access to manage sensor related entities in AgFood Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/sensorPartnerScope/*\"],\"notDataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/sensorPartnerScope/sensors/delete\"]}],\"createdOn\":\"2022-03-09T11:06:02.2546966Z\",\"updatedOn\":\"2022-10-27T09:36:05.2105861Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6b77f0a0-0d89-41cc-acd1-579c22c17a67\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6b77f0a0-0d89-41cc-acd1-579c22c17a67\"},{\"properties\":{\"roleName\":\"Compute + Gallery Sharing Admin\",\"type\":\"BuiltInRole\",\"description\":\"This role + allows user to share gallery to another subscription/tenant or share it to + the public.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/galleries/share/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-03-10T06:37:39.5861946Z\",\"updatedOn\":\"2022-03-26T02:42:25.9674154Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1ef6a3be-d0ac-425d-8c01-acb62866290b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1ef6a3be-d0ac-425d-8c01-acb62866290b\"},{\"properties\":{\"roleName\":\"Scheduled + Patching Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides + access to manage maintenance configurations with maintenance scope InGuestPatch + and corresponding configuration assignments\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Maintenance/maintenanceConfigurations/read\",\"Microsoft.Maintenance/maintenanceConfigurations/write\",\"Microsoft.Maintenance/maintenanceConfigurations/delete\",\"Microsoft.Maintenance/configurationAssignments/read\",\"Microsoft.Maintenance/configurationAssignments/write\",\"Microsoft.Maintenance/configurationAssignments/delete\",\"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/read\",\"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/write\",\"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/delete\",\"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/read\",\"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/write\",\"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/delete\",\"Microsoft.Maintenance/applyUpdates/read\",\"Microsoft.Maintenance/updates/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-03-21T16:36:03.6770776Z\",\"updatedOn\":\"2025-02-28T13:47:39.5292557Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd08ab90-6b14-449c-ad9a-8f8e549482c6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cd08ab90-6b14-449c-ad9a-8f8e549482c6\"},{\"properties\":{\"roleName\":\"DevCenter + Dev Box User\",\"type\":\"BuiltInRole\",\"description\":\"Provides access + to create and manage dev boxes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DevCenter/projects/read\",\"Microsoft.DevCenter/projects/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DevCenter/projects/users/devboxes/userStop/action\",\"Microsoft.DevCenter/projects/users/devboxes/userStart/action\",\"Microsoft.DevCenter/projects/users/devboxes/userGetRemoteConnection/action\",\"Microsoft.DevCenter/projects/users/devboxes/userRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/userWrite/action\",\"Microsoft.DevCenter/projects/users/devboxes/userDelete/action\",\"Microsoft.DevCenter/projects/users/devboxes/userUpcomingActionRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/userUpcomingActionManage/action\",\"Microsoft.DevCenter/projects/users/devboxes/userActionRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/userActionManage/action\",\"Microsoft.DevCenter/projects/users/devboxes/userCustomize/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-04-01T00:43:09.4468117Z\",\"updatedOn\":\"2023-10-19T19:09:51.4370070Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/45d50f46-0b78-4001-a660-4198cbe8cd05\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"45d50f46-0b78-4001-a660-4198cbe8cd05\"},{\"properties\":{\"roleName\":\"DevCenter + Project Admin\",\"type\":\"BuiltInRole\",\"description\":\"Provides access + to manage project resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DevCenter/projects/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[\"Microsoft.DevCenter/projects/write\",\"Microsoft.DevCenter/projects/delete\"],\"dataActions\":[\"Microsoft.DevCenter/projects/users/devboxes/adminStart/action\",\"Microsoft.DevCenter/projects/users/devboxes/adminStop/action\",\"Microsoft.DevCenter/projects/users/devboxes/adminRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/adminWrite/action\",\"Microsoft.DevCenter/projects/users/devboxes/adminDelete/action\",\"Microsoft.DevCenter/projects/users/devboxes/userStop/action\",\"Microsoft.DevCenter/projects/users/devboxes/userStart/action\",\"Microsoft.DevCenter/projects/users/devboxes/userGetRemoteConnection/action\",\"Microsoft.DevCenter/projects/users/devboxes/userRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/userWrite/action\",\"Microsoft.DevCenter/projects/users/devboxes/userDelete/action\",\"Microsoft.DevCenter/projects/users/devboxes/userActionRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/userActionManage/action\",\"Microsoft.DevCenter/projects/users/devboxes/userCustomize/action\",\"Microsoft.DevCenter/projects/users/environments/adminRead/action\",\"Microsoft.DevCenter/projects/users/environments/userWrite/action\",\"Microsoft.DevCenter/projects/users/environments/adminWrite/action\",\"Microsoft.DevCenter/projects/users/environments/userDelete/action\",\"Microsoft.DevCenter/projects/users/environments/adminDelete/action\",\"Microsoft.DevCenter/projects/users/environments/adminAction/action\",\"Microsoft.DevCenter/projects/users/environments/adminActionRead/action\",\"Microsoft.DevCenter/projects/users/environments/adminActionManage/action\",\"Microsoft.DevCenter/projects/users/environments/adminOutputsRead/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-04-01T01:58:38.0472365Z\",\"updatedOn\":\"2024-08-12T16:09:21.8719358Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/331c37c6-af14-46d9-b9f4-e1909e1b95a0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"331c37c6-af14-46d9-b9f4-e1909e1b95a0\"},{\"properties\":{\"roleName\":\"Virtual + Machine Local User Login\",\"type\":\"BuiltInRole\",\"description\":\"View + Virtual Machines in the portal and login as a local user configured on the + arc server\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/*/read\",\"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-07T06:13:18.8975022Z\",\"updatedOn\":\"2022-04-17T01:05:14.2345428Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/602da2ba-a5c2-41da-b01d-5360126ab525\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"602da2ba-a5c2-41da-b01d-5360126ab525\"},{\"properties\":{\"roleName\":\"Azure + Arc ScVmm Private Cloud User\",\"type\":\"BuiltInRole\",\"description\":\"Azure + Arc ScVmm Private Cloud User has permissions to use the ScVmm resources to + deploy VMs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"microsoft.scvmm/virtualnetworks/join/action\",\"microsoft.scvmm/virtualnetworks/Read\",\"microsoft.scvmm/virtualmachinetemplates/clone/action\",\"microsoft.scvmm/virtualmachinetemplates/Read\",\"microsoft.scvmm/clouds/deploy/action\",\"microsoft.scvmm/clouds/Read\",\"Microsoft.ExtendedLocation/customLocations/Read\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.ExtendedLocation/customLocations/enabledresourcetypes/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T23:34:21.1716375Z\",\"updatedOn\":\"2023-10-09T15:06:52.9183534Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c0781e91-8102-4553-8951-97c6d4243cda\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c0781e91-8102-4553-8951-97c6d4243cda\"},{\"properties\":{\"roleName\":\"Azure + Arc ScVmm VM Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Arc + ScVmm VM Contributor has permissions to perform all VM actions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.scvmm/virtualmachines/*\",\"microsoft.scvmm/virtualMachineInstances/*\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ExtendedLocation/customLocations/Read\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\"Microsoft.HybridCompute/machines/assessPatches/action\",\"Microsoft.HybridCompute/machines/installPatches/action\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/operations/read\",\"Microsoft.HybridCompute/locations/operationresults/read\",\"Microsoft.HybridCompute/locations/operationstatus/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\"Microsoft.HybridCompute/osType/agentVersions/read\",\"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\"Microsoft.HybridCompute/machines/runcommands/read\",\"Microsoft.HybridCompute/machines/runcommands/write\",\"Microsoft.HybridCompute/machines/runcommands/delete\",\"Microsoft.HybridCompute/machines/licenseProfiles/read\",\"Microsoft.HybridCompute/machines/licenseProfiles/write\",\"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\"Microsoft.HybridCompute/licenses/read\",\"Microsoft.HybridCompute/licenses/write\",\"Microsoft.HybridCompute/licenses/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T23:34:21.1716375Z\",\"updatedOn\":\"2023-10-09T15:06:52.9193525Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e582369a-e17b-42a5-b10c-874c387c530b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e582369a-e17b-42a5-b10c-874c387c530b\"},{\"properties\":{\"roleName\":\"Azure + Arc ScVmm Private Clouds Onboarding\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.scvmm/vmmservers/Read\",\"microsoft.scvmm/vmmservers/Write\",\"microsoft.scvmm/vmmservers/Delete\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ExtendedLocation/customLocations/Read\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T23:34:21.1716375Z\",\"updatedOn\":\"2023-05-22T15:13:04.9029830Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6aac74c4-6311-40d2-bbdd-7d01e7c6e3a9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6aac74c4-6311-40d2-bbdd-7d01e7c6e3a9\"},{\"properties\":{\"roleName\":\"Azure + Arc ScVmm Administrator role\",\"type\":\"BuiltInRole\",\"description\":\"Arc + ScVmm VM Administrator has permissions to perform all ScVmm actions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ScVmm/*\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ExtendedLocation/customLocations/Read\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\"Microsoft.HybridCompute/machines/assessPatches/action\",\"Microsoft.HybridCompute/machines/installPatches/action\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/operations/read\",\"Microsoft.HybridCompute/locations/operationresults/read\",\"Microsoft.HybridCompute/locations/operationstatus/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\"Microsoft.HybridCompute/osType/agentVersions/read\",\"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\"Microsoft.HybridCompute/machines/runcommands/read\",\"Microsoft.HybridCompute/machines/runcommands/write\",\"Microsoft.HybridCompute/machines/runcommands/delete\",\"Microsoft.HybridCompute/machines/licenseProfiles/read\",\"Microsoft.HybridCompute/machines/licenseProfiles/write\",\"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\"Microsoft.HybridCompute/licenses/read\",\"Microsoft.HybridCompute/licenses/write\",\"Microsoft.HybridCompute/licenses/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T23:34:24.1295963Z\",\"updatedOn\":\"2023-10-09T15:06:52.9193525Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a92dfd61-77f9-4aec-a531-19858b406c87\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a92dfd61-77f9-4aec-a531-19858b406c87\"},{\"properties\":{\"roleName\":\"HDInsight + on AKS Cluster Admin\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.HDInsight/clusterPools/clusters/read\",\"Microsoft.HDInsight/clusterPools/clusters/write\",\"Microsoft.HDInsight/clusterPools/clusters/delete\",\"Microsoft.HDInsight/clusterPools/clusters/resize/action\",\"Microsoft.HDInsight/clusterpools/clusters/instanceviews/read\",\"Microsoft.HDInsight/clusterPools/clusters/jobs/read\",\"Microsoft.HDInsight/clusterPools/clusters/runjob/action\",\"Microsoft.HDInsight/clusterpools/clusters/serviceconfigs/read\",\"Microsoft.HDInsight/clusterPools/clusters/availableupgrades/read\",\"Microsoft.HDInsight/clusterPools/clusters/upgrade/action\",\"Microsoft.HDInsight/clusterPools/clusters/rollback/action\",\"Microsoft.HDInsight/clusterPools/clusters/upgradehistories/read\",\"Microsoft.HDInsight/clusterPools/clusters/libraries/read\",\"Microsoft.HDInsight/clusterPools/clusters/managelibraries/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/*/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/logs/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-14T07:38:22.8690141Z\",\"updatedOn\":\"2024-07-02T15:07:53.5776614Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd036e6b-1266-47a0-b0bb-a05d04831731\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd036e6b-1266-47a0-b0bb-a05d04831731\"},{\"properties\":{\"roleName\":\"HDInsight + on AKS Cluster Pool Admin\",\"type\":\"BuiltInRole\",\"description\":\"Can + read, create, modify and delete HDInsight on AKS cluster pools and create + clusters\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.HDInsight/clusterPools/clusters/read\",\"Microsoft.HDInsight/clusterPools/clusters/write\",\"Microsoft.HDInsight/clusterPools/delete\",\"Microsoft.HDInsight/clusterPools/read\",\"Microsoft.HDInsight/clusterPools/write\",\"Microsoft.HDInsight/clusterpools/availableupgrades/read\",\"Microsoft.HDInsight/clusterpools/upgrade/action\",\"Microsoft.HDInsight/clusterPools/upgradehistories/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/*/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/logs/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-14T07:38:22.8690141Z\",\"updatedOn\":\"2024-07-02T15:07:54.2284774Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7656b436-37d4-490a-a4ab-d39f838f0042\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7656b436-37d4-490a-a4ab-d39f838f0042\"},{\"properties\":{\"roleName\":\"FHIR + Data Importer\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user + or principal to read and import FHIR Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/import/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-04-19T14:05:02.2341374Z\",\"updatedOn\":\"2022-04-21T15:21:45.3114429Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4465e953-8ced-4406-a58e-0f6e3f3b530b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4465e953-8ced-4406-a58e-0f6e3f3b530b\"},{\"properties\":{\"roleName\":\"HDInsight + on AKS Cluster Operator\",\"type\":\"BuiltInRole\",\"description\":\"Grants + a user/group the ability to read cluster configurations, resize clusters and + run jobs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HDInsight/clusterPools/read\",\"Microsoft.Hdinsight/clusterpools/clusters/read\",\"Microsoft.HDInsight/clusterPools/clusters/resize/action\",\"Microsoft.HDInsight/clusterpools/clusters/instanceviews/read\",\"Microsoft.HDInsight/clusterPools/clusters/jobs/read\",\"Microsoft.HDInsight/clusterPools/clusters/runjob/action\",\"Microsoft.HDInsight/clusterpools/clusters/serviceconfigs/read\",\"Microsoft.HDInsight/clusterPools/clusters/availableupgrades/read\",\"Microsoft.HDInsight/clusterPools/clusters/upgradehistories/read\",\"Microsoft.HDInsight/clusterPools/clusters/libraries/read\",\"Microsoft.HDInsight/clusterPools/clusters/managelibraries/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/logs/read\",\"Microsoft.Insights/diagnosticSettings/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-26T16:16:21.6081890Z\",\"updatedOn\":\"2024-07-02T15:07:53.5776614Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bcf28286-af25-4c81-bb6f-351fcab5dbe9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bcf28286-af25-4c81-bb6f-351fcab5dbe9\"},{\"properties\":{\"roleName\":\"API + Management Developer Portal Content Editor\",\"type\":\"BuiltInRole\",\"description\":\"Can + customize the developer portal, edit its content, and publish it.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/portalRevisions/read\",\"Microsoft.ApiManagement/service/portalRevisions/write\",\"Microsoft.ApiManagement/service/contentTypes/read\",\"Microsoft.ApiManagement/service/contentTypes/delete\",\"Microsoft.ApiManagement/service/contentTypes/write\",\"Microsoft.ApiManagement/service/contentTypes/contentItems/read\",\"Microsoft.ApiManagement/service/contentTypes/contentItems/write\",\"Microsoft.ApiManagement/service/contentTypes/contentItems/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-05-06T23:48:52.0904132Z\",\"updatedOn\":\"2022-05-11T03:49:58.0615604Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c031e6a8-4391-4de0-8d69-4706a7ed3729\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c031e6a8-4391-4de0-8d69-4706a7ed3729\"},{\"properties\":{\"roleName\":\"VM + Scanner Operator\",\"type\":\"BuiltInRole\",\"description\":\"Role that provides + access to disk snapshot for security analysis.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/beginGetAccess/action\",\"Microsoft.Compute/diskEncryptionSets/read\",\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachineScaleSets/instanceView/read\",\"Microsoft.Compute/virtualMachineScaleSets/read\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-05-15T22:07:11.4824101Z\",\"updatedOn\":\"2024-09-10T15:22:50.4935371Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d24ecba3-c1f4-40fa-a7bb-4588a071e8fd\"},{\"properties\":{\"roleName\":\"Elastic + SAN Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows for full access + to all resources under Azure Elastic SAN including changing network security + policies to unblock data path access\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ElasticSan/elasticSans/*\",\"Microsoft.ElasticSan/locations/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-05-26T14:43:05.0517355Z\",\"updatedOn\":\"2022-08-23T19:38:11.0709750Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/80dcbedb-47ef-405d-95bd-188a1b4ac406\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"80dcbedb-47ef-405d-95bd-188a1b4ac406\"},{\"properties\":{\"roleName\":\"Elastic + SAN Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows for control + path read access to Azure Elastic SAN\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ElasticSan/elasticSans/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-06-01T09:07:18.1020550Z\",\"updatedOn\":\"2022-08-23T19:38:11.0709750Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/af6a70f8-3c9f-4105-acf1-d719e9fca4ca\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"af6a70f8-3c9f-4105-acf1-d719e9fca4ca\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Power On Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provide + permission to the Azure Virtual Desktop Resource Provider to start virtual + machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/operations/read\",\"Microsoft.HybridCompute/locations/operationresults/read\",\"Microsoft.HybridCompute/locations/operationstatus/read\",\"Microsoft.AzureStackHCI/virtualMachineInstances/read\",\"Microsoft.AzureStackHCI/virtualMachineInstances/start/action\",\"Microsoft.AzureStackHCI/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-06-29T03:46:13.8314771Z\",\"updatedOn\":\"2024-02-13T16:21:42.6510575Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/489581de-a3bd-480d-9518-53dea7416b33\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"489581de-a3bd-480d-9518-53dea7416b33\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Virtual Machine Contributor\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/write\",\"Microsoft.DesktopVirtualization/hostpools/retrieveRegistrationToken/action\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/write\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/delete\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/disconnect/action\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/sendMessage/action\",\"Microsoft.DesktopVirtualization/hostpools/sessionHostConfigurations/read\",\"Microsoft.DesktopVirtualization/hostpools/doNotUseInternalAPI/action\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/retryprovisioning/action\",\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/availabilitySets/write\",\"Microsoft.Compute/availabilitySets/vmSizes/read\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/delete\",\"Microsoft.Compute/galleries/read\",\"Microsoft.Compute/galleries/images/read\",\"Microsoft.Compute/galleries/images/versions/read\",\"Microsoft.Compute/images/read\",\"Microsoft.Compute/locations/usages/read\",\"Microsoft.Compute/locations/vmSizes/read\",\"Microsoft.Compute/operations/read\",\"Microsoft.Compute/skus/read\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/virtualMachines/delete\",\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.Compute/virtualMachines/powerOff/action\",\"Microsoft.Compute/virtualMachines/restart/action\",\"Microsoft.Compute/virtualMachines/deallocate/action\",\"Microsoft.Compute/virtualMachines/runCommand/action\",\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/virtualMachines/extensions/write\",\"Microsoft.Compute/virtualMachines/extensions/delete\",\"Microsoft.Compute/virtualMachines/runCommands/read\",\"Microsoft.Compute/virtualMachines/runCommands/write\",\"Microsoft.Compute/virtualMachines/vmSizes/read\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/networkInterfaces/delete\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/usages/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Marketplace/offerTypes/publishers/offers/plans/agreements/read\",\"Microsoft.KeyVault/vaults/deploy/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.DesktopVirtualization/scalingPlans/read\",\"Microsoft.DesktopVirtualization/scalingPlans/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-06-29T03:46:13.8314771Z\",\"updatedOn\":\"2024-09-11T15:31:21.7277586Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a959dbd1-f747-45e3-8ba6-dd80f235f97c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a959dbd1-f747-45e3-8ba6-dd80f235f97c\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization Power On Off Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provide + permission to the Azure Virtual Desktop Resource Provider to start and stop + virtual machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.AzureStackHCI/operations/read\",\"Microsoft.AzureStackHCI/virtualMachineInstances/read\",\"Microsoft.AzureStackHCI/virtualMachineInstances/restart/action\",\"Microsoft.AzureStackHCI/virtualMachineInstances/start/action\",\"Microsoft.AzureStackHCI/virtualMachineInstances/stop/action\",\"Microsoft.Compute/virtualMachines/deallocate/action\",\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Compute/virtualMachines/powerOff/action\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/restart/action\",\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.ComputeSchedule/locations/virtualMachinesCancelOperations/action\",\"Microsoft.ComputeSchedule/locations/virtualMachinesExecuteDeallocate/action\",\"Microsoft.ComputeSchedule/locations/virtualMachinesExecuteHibernate/action\",\"Microsoft.ComputeSchedule/locations/virtualMachinesExecuteStart/action\",\"Microsoft.ComputeSchedule/locations/virtualMachinesGetOperationErrors/action\",\"Microsoft.ComputeSchedule/locations/virtualMachinesGetOperationStatus/action\",\"Microsoft.ComputeSchedule/locations/virtualMachinesSubmitDeallocate/action\",\"Microsoft.ComputeSchedule/locations/virtualMachinesSubmitHibernate/action\",\"Microsoft.ComputeSchedule/locations/virtualMachinesSubmitStart/action\",\"Microsoft.ComputeSchedule/register/action\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/delete\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/sendMessage/action\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/write\",\"Microsoft.DesktopVirtualization/hostpools/write\",\"Microsoft.HybridCompute/locations/operationresults/read\",\"Microsoft.HybridCompute/locations/operationstatus/read\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/operations/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/eventtypes/values/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-06-29T03:46:13.8314771Z\",\"updatedOn\":\"2024-08-16T18:32:41.4531347Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/40c5ff49-9181-41f8-ae61-143b0e78555e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"40c5ff49-9181-41f8-ae61-143b0e78555e\"},{\"properties\":{\"roleName\":\"Access + Review Operator Service Role\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you grant Access Review System app permissions to discover and revoke access + as needed by the access review process.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleAssignments/delete\",\"Microsoft.Management/getEntities/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-07-04T19:06:39.6698534Z\",\"updatedOn\":\"2022-07-04T19:06:39.6698534Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/76cc9ee4-d5d3-4a45-a930-26add3d73475\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"76cc9ee4-d5d3-4a45-a930-26add3d73475\"},{\"properties\":{\"roleName\":\"Elastic + SAN Volume Group Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for full access to a volume group in Azure Elastic SAN including changing + network security policies to unblock data path access\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\",\"Microsoft.ElasticSan/elasticSans/volumeGroups/*\",\"Microsoft.ElasticSan/locations/asyncoperations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-07-04T19:06:39.6698534Z\",\"updatedOn\":\"2022-08-23T19:38:11.0709750Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a8281131-f312-4f34-8d98-ae12be9f0d23\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a8281131-f312-4f34-8d98-ae12be9f0d23\"},{\"properties\":{\"roleName\":\"Trusted + Signing Identity Verifier\",\"type\":\"BuiltInRole\",\"description\":\"Manage + identity or business verification requests. This role is in preview and subject + to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CodeSigning/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CodeSigning/IdentityVerification/Read\",\"Microsoft.CodeSigning/IdentityVerification/Write\",\"Microsoft.CodeSigning/IdentityVerification/Delete\"],\"notDataActions\":[]}],\"createdOn\":\"2022-07-29T09:38:19.4833637Z\",\"updatedOn\":\"2024-10-25T14:18:04.3435129Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4339b7cf-9826-4e41-b4ed-c7f4505dac08\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4339b7cf-9826-4e41-b4ed-c7f4505dac08\"},{\"properties\":{\"roleName\":\"Video + Indexer Restricted Viewer\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.VideoIndexer/*/read\",\"Microsoft.VideoIndexer/accounts/*/action\"],\"notActions\":[\"Microsoft.VideoIndexer/*/write\",\"Microsoft.VideoIndexer/*/delete\",\"Microsoft.VideoIndexer/accounts/generateAccessToken/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-08-09T22:16:43.1549850Z\",\"updatedOn\":\"2022-08-09T22:16:43.1549850Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a2c4a527-7dc0-4ee3-897b-403ade70fafb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a2c4a527-7dc0-4ee3-897b-403ade70fafb\"},{\"properties\":{\"roleName\":\"Monitoring + Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can access the data + in an Azure Monitor Workspace.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Monitor/accounts/data/metrics/read\"],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T17:29:10.2888534Z\",\"updatedOn\":\"2022-10-07T22:54:50.7208650Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b0d8363b-8ddd-447d-831f-62ca05bff136\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b0d8363b-8ddd-447d-831f-62ca05bff136\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Fleet Manager RBAC Reader\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\"Microsoft.ContainerService/fleets/apps/deployments/read\",\"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\"Microsoft.ContainerService/fleets/batch/jobs/read\",\"Microsoft.ContainerService/fleets/configmaps/read\",\"Microsoft.ContainerService/fleets/endpoints/read\",\"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\"Microsoft.ContainerService/fleets/events/read\",\"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\"Microsoft.ContainerService/fleets/extensions/deployments/read\",\"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\"Microsoft.ContainerService/fleets/limitranges/read\",\"Microsoft.ContainerService/fleets/namespaces/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\"Microsoft.ContainerService/fleets/resourcequotas/read\",\"Microsoft.ContainerService/fleets/serviceaccounts/read\",\"Microsoft.ContainerService/fleets/services/read\",\"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/internalmemberclusters/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverrides/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverridesnapshots/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/works/read\"],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T19:30:13.8996497Z\",\"updatedOn\":\"2024-10-24T18:43:37.0074966Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/30b27cfc-9c84-438e-b0ce-70e35255df80\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"30b27cfc-9c84-438e-b0ce-70e35255df80\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Fleet Manager RBAC Cluster Admin\",\"type\":\"BuiltInRole\",\"description\":\"Grants + read/write access to all Kubernetes resources in the fleet-managed hub cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/*\"],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T19:30:13.8996497Z\",\"updatedOn\":\"2024-03-28T21:19:22.9674826Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18ab4d3d-a1bf-4477-8ad9-8359bc988f69\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Fleet Manager RBAC Admin\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\"Microsoft.ContainerService/fleets/apps/daemonsets/*\",\"Microsoft.ContainerService/fleets/apps/deployments/*\",\"Microsoft.ContainerService/fleets/apps/statefulsets/*\",\"Microsoft.ContainerService/fleets/authorization.k8s.io/localsubjectaccessreviews/write\",\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/*\",\"Microsoft.ContainerService/fleets/batch/cronjobs/*\",\"Microsoft.ContainerService/fleets/batch/jobs/*\",\"Microsoft.ContainerService/fleets/configmaps/*\",\"Microsoft.ContainerService/fleets/endpoints/*\",\"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\"Microsoft.ContainerService/fleets/events/read\",\"Microsoft.ContainerService/fleets/extensions/daemonsets/*\",\"Microsoft.ContainerService/fleets/extensions/deployments/*\",\"Microsoft.ContainerService/fleets/extensions/ingresses/*\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/*\",\"Microsoft.ContainerService/fleets/limitranges/read\",\"Microsoft.ContainerService/fleets/namespaces/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/*\",\"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/*\",\"Microsoft.ContainerService/fleets/persistentvolumeclaims/*\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/*\",\"Microsoft.ContainerService/fleets/rbac.authorization.k8s.io/rolebindings/*\",\"Microsoft.ContainerService/fleets/rbac.authorization.k8s.io/roles/*\",\"Microsoft.ContainerService/fleets/replicationcontrollers/*\",\"Microsoft.ContainerService/fleets/replicationcontrollers/*\",\"Microsoft.ContainerService/fleets/resourcequotas/read\",\"Microsoft.ContainerService/fleets/secrets/*\",\"Microsoft.ContainerService/fleets/serviceaccounts/*\",\"Microsoft.ContainerService/fleets/services/*\",\"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/internalmemberclusters/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverrides/*\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverridesnapshots/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/works/read\"],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T19:30:13.8996497Z\",\"updatedOn\":\"2024-10-22T15:14:07.0554269Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434fb43a-c01c-447e-9f67-c3ad923cfaba\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"434fb43a-c01c-447e-9f67-c3ad923cfaba\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Fleet Manager RBAC Writer\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\"Microsoft.ContainerService/fleets/apps/daemonsets/write\",\"Microsoft.ContainerService/fleets/apps/deployments/read\",\"Microsoft.ContainerService/fleets/apps/deployments/write\",\"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\"Microsoft.ContainerService/fleets/apps/statefulsets/write\",\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/write\",\"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\"Microsoft.ContainerService/fleets/batch/cronjobs/write\",\"Microsoft.ContainerService/fleets/batch/jobs/read\",\"Microsoft.ContainerService/fleets/batch/jobs/write\",\"Microsoft.ContainerService/fleets/configmaps/read\",\"Microsoft.ContainerService/fleets/configmaps/write\",\"Microsoft.ContainerService/fleets/endpoints/read\",\"Microsoft.ContainerService/fleets/endpoints/write\",\"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\"Microsoft.ContainerService/fleets/events/read\",\"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\"Microsoft.ContainerService/fleets/extensions/daemonsets/write\",\"Microsoft.ContainerService/fleets/extensions/deployments/read\",\"Microsoft.ContainerService/fleets/extensions/deployments/write\",\"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\"Microsoft.ContainerService/fleets/extensions/ingresses/write\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/write\",\"Microsoft.ContainerService/fleets/limitranges/read\",\"Microsoft.ContainerService/fleets/namespaces/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/write\",\"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/write\",\"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\"Microsoft.ContainerService/fleets/persistentvolumeclaims/write\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/write\",\"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\"Microsoft.ContainerService/fleets/replicationcontrollers/write\",\"Microsoft.ContainerService/fleets/resourcequotas/read\",\"Microsoft.ContainerService/fleets/secrets/read\",\"Microsoft.ContainerService/fleets/secrets/write\",\"Microsoft.ContainerService/fleets/serviceaccounts/read\",\"Microsoft.ContainerService/fleets/serviceaccounts/write\",\"Microsoft.ContainerService/fleets/services/read\",\"Microsoft.ContainerService/fleets/services/write\",\"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/internalmemberclusters/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverrides/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverrides/write\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/resourceoverridesnapshots/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/works/read\"],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T19:30:13.8996497Z\",\"updatedOn\":\"2024-10-22T15:14:09.1397927Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5af6afb3-c06c-4fa4-8848-71a8aee05683\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5af6afb3-c06c-4fa4-8848-71a8aee05683\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Fleet Manager Contributor Role\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/fleets/*\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T19:30:13.8996497Z\",\"updatedOn\":\"2024-03-28T21:19:22.9654862Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/63bb64ad-9799-4770-b5c3-24ed299a07bf\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"63bb64ad-9799-4770-b5c3-24ed299a07bf\"},{\"properties\":{\"roleName\":\"Kubernetes + Namespace User\",\"type\":\"BuiltInRole\",\"description\":\"Allows a user + to read namespace resources and retrieve kubeconfig for the cluster\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.KubernetesConfiguration/namespaces/read\",\"Microsoft.KubernetesConfiguration/namespaces/listUserCredential/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-08-24T10:06:57.4909513Z\",\"updatedOn\":\"2022-08-24T10:06:57.4909513Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba79058c-0414-4a34-9e42-c3399d80cd5a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ba79058c-0414-4a34-9e42-c3399d80cd5a\"},{\"properties\":{\"roleName\":\"Data + Labeling - Labeler\",\"type\":\"BuiltInRole\",\"description\":\"Can label + data in Labeling.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/read\",\"Microsoft.MachineLearningServices/workspaces/experiments/runs/read\",\"Microsoft.MachineLearningServices/workspaces/labeling/projects/read\",\"Microsoft.MachineLearningServices/workspaces/labeling/projects/summary/read\",\"Microsoft.MachineLearningServices/workspaces/labeling/labels/read\",\"Microsoft.MachineLearningServices/workspaces/labeling/labels/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-02T22:35:46.9532934Z\",\"updatedOn\":\"2022-09-08T23:03:02.1057014Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c6decf44-fd0a-444c-a844-d653c394e7ab\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c6decf44-fd0a-444c-a844-d653c394e7ab\"},{\"properties\":{\"roleName\":\"Role + Based Access Control Administrator\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\",\"Microsoft.Authorization/roleAssignments/delete\",\"*/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-07T02:29:29.6592395Z\",\"updatedOn\":\"2023-11-09T20:56:14.1691995Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f58310d9-a9f6-439a-9e8d-f62e7b41a168\"},{\"properties\":{\"roleName\":\"Template + Spec Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows read access + to Template Specs at the assigned scope.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/templateSpecs/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-08T01:58:14.2969628Z\",\"updatedOn\":\"2022-09-08T01:58:14.2969628Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/392ae280-861d-42bd-9ea5-08ee6d83b80e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"392ae280-861d-42bd-9ea5-08ee6d83b80e\"},{\"properties\":{\"roleName\":\"Template + Spec Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows full + access to Template Spec operations at the assigned scope.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/templateSpecs/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-08T01:58:14.2969628Z\",\"updatedOn\":\"2022-09-08T01:58:14.2969628Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1c9b6475-caf0-4164-b5a1-2142a7116f4b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1c9b6475-caf0-4164-b5a1-2142a7116f4b\"},{\"properties\":{\"roleName\":\"Microsoft + Sentinel Playbook Operator\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft + Sentinel Playbook Operator\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Logic/workflows/read\",\"Microsoft.Logic/workflows/triggers/listCallbackUrl/action\",\"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/listCallbackUrl/action\",\"Microsoft.Web/sites/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-20T19:20:30.6118766Z\",\"updatedOn\":\"2022-12-07T20:30:39.3980234Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/51d6186e-6489-4900-b93f-92e23144cca5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"51d6186e-6489-4900-b93f-92e23144cca5\"},{\"properties\":{\"roleName\":\"Deployment + Environments User\",\"type\":\"BuiltInRole\",\"description\":\"Provides access + to manage environment resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DevCenter/projects/read\",\"Microsoft.DevCenter/projects/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Authorization/*/read\"],\"notActions\":[\"Microsoft.DevCenter/projects/pools/read\",\"Microsoft.DevCenter/projects/pools/schedules/read\"],\"dataActions\":[\"Microsoft.DevCenter/projects/users/environments/userRead/action\",\"Microsoft.DevCenter/projects/users/environments/userWrite/action\",\"Microsoft.DevCenter/projects/users/environments/userDelete/action\",\"Microsoft.DevCenter/projects/users/environments/userActionManage/action\",\"Microsoft.DevCenter/projects/users/environments/userOutputsRead/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-09-22T01:04:20.3753915Z\",\"updatedOn\":\"2023-11-11T03:17:04.9397265Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18e40d4e-8d2e-438d-97e1-9528336e149c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18e40d4e-8d2e-438d-97e1-9528336e149c\"},{\"properties\":{\"roleName\":\"Azure + Spring Apps Connect Role\",\"type\":\"BuiltInRole\",\"description\":\"Azure + Spring Apps Connect Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/apps/deployments/connect/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-09-23T11:08:28.4674830Z\",\"updatedOn\":\"2022-09-23T11:08:28.4674830Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/80558df3-64f9-4c0f-b32d-e5094b036b0b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"80558df3-64f9-4c0f-b32d-e5094b036b0b\"},{\"properties\":{\"roleName\":\"Azure + Spring Apps Remote Debugging Role\",\"type\":\"BuiltInRole\",\"description\":\"Azure + Spring Apps Remote Debugging Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/apps/deployments/remotedebugging/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-09-23T11:23:41.7163850Z\",\"updatedOn\":\"2022-09-23T11:23:41.7163850Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a99b0159-1064-4c22-a57b-c9b3caa1c054\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a99b0159-1064-4c22-a57b-c9b3caa1c054\"},{\"properties\":{\"roleName\":\"AzureML + Registry User\",\"type\":\"BuiltInRole\",\"description\":\"Can perform all + actions on Machine Learning Services Registry assets\_as well as get Registry + resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/registries/read\",\"Microsoft.MachineLearningServices/registries/assets/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-27T19:16:52.1052938Z\",\"updatedOn\":\"2022-09-27T19:16:52.1052938Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1823dd4f-9b8c-4ab6-ab4e-7397a3684615\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1823dd4f-9b8c-4ab6-ab4e-7397a3684615\"},{\"properties\":{\"roleName\":\"AzureML + Compute Operator\",\"type\":\"BuiltInRole\",\"description\":\"Can access and + perform CRUD operations on Machine Learning Services managed compute resources + (including Notebook VMs).\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/computes/*\",\"Microsoft.MachineLearningServices/workspaces/notebooks/vm/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-27T19:16:52.1052938Z\",\"updatedOn\":\"2022-09-27T19:16:52.1052938Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e503ece1-11d0-4e8e-8e2c-7a6c3bf38815\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e503ece1-11d0-4e8e-8e2c-7a6c3bf38815\"},{\"properties\":{\"roleName\":\"Azure + Center for SAP solutions reader\",\"type\":\"BuiltInRole\",\"description\":\"This + role provides read access to all capabilities of Azure Center for SAP solutions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Advisor/configurations/read\",\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Workloads/sapvirtualInstances/*/read\",\"Microsoft.Workloads/Locations/*/read\",\"Microsoft.Workloads/Operations/read\",\"Microsoft.Workloads/Locations/OperationStatuses/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\"Microsoft.Network/networkInterfaces/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/read\",\"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\"Microsoft.Network/loadBalancers/inboundNatRules/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\",\"Microsoft.Network/loadBalancers/networkInterfaces/read\",\"Microsoft.Network/loadBalancers/outboundRules/read\",\"Microsoft.Network/loadBalancers/virtualMachines/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/privateEndpoints/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/fileServices/read\",\"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/disks/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-10-03T19:05:48.2297299Z\",\"updatedOn\":\"2024-01-15T16:09:45.4170106Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/05352d14-a920-4328-a0de-4cbe7430e26b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"05352d14-a920-4328-a0de-4cbe7430e26b\"},{\"properties\":{\"roleName\":\"Azure + Center for SAP solutions service role\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/write\",\"Microsoft.Network/loadBalancers/backendAddressPools/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/write\",\"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\"Microsoft.Network/loadBalancers/inboundNatRules/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\",\"Microsoft.Network/loadBalancers/networkInterfaces/read\",\"Microsoft.Network/loadBalancers/outboundRules/read\",\"Microsoft.Network/loadBalancers/virtualMachines/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\"Microsoft.Network/networkInterfaces/loadBalancers/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\"Microsoft.Network/virtualNetworks/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/ipconfigurations/join/action\",\"Microsoft.Network/privateEndpoints/read\",\"Microsoft.Network/privateEndpoints/write\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/frontendIPConfigurations/join/action\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/joinLoadBalancer/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/write\",\"Microsoft.Storage/storageAccounts/PrivateEndpointConnectionsApproval/action\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/fileServices/read\",\"Microsoft.Storage/storageAccounts/fileServices/write\",\"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\"Microsoft.Storage/storageAccounts/fileServices/shares/write\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/availabilitySets/write\",\"Microsoft.Compute/skus/read\",\"Microsoft.Compute/sshPublicKeys/read\",\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/virtualMachines/extensions/write\",\"Microsoft.Compute/virtualMachines/extensions/delete\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-10-03T19:05:48.2297299Z\",\"updatedOn\":\"2023-02-03T07:40:22.4872528Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/aabbc5dd-1af0-458b-a942-81af88f9c138\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"aabbc5dd-1af0-458b-a942-81af88f9c138\"},{\"properties\":{\"roleName\":\"Azure + Center for SAP solutions administrator\",\"type\":\"BuiltInRole\",\"description\":\"This + role provides read and write access to all capabilities of Azure Center for + SAP solutions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Advisor/configurations/read\",\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Workloads/sapvirtualInstances/*/read\",\"Microsoft.Workloads/sapVirtualInstances/*/write\",\"Microsoft.Workloads/sapVirtualInstances/*/delete\",\"Microsoft.Workloads/Locations/*/action\",\"Microsoft.Workloads/Locations/*/read\",\"Microsoft.Workloads/sapVirtualInstances/*/start/action\",\"Microsoft.Workloads/sapVirtualInstances/*/stop/action\",\"Microsoft.Workloads/connectors/*/read\",\"Microsoft.Workloads/connectors/*/write\",\"Microsoft.Workloads/connectors/*/delete\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\"Microsoft.Network/networkInterfaces/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/read\",\"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\"Microsoft.Network/loadBalancers/inboundNatRules/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\",\"Microsoft.Network/loadBalancers/networkInterfaces/read\",\"Microsoft.Network/loadBalancers/outboundRules/read\",\"Microsoft.Network/loadBalancers/virtualMachines/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/privateEndpoints/read\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/fileServices/read\",\"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/sshPublicKeys/read\",\"Microsoft.Compute/sshPublicKeys/write\",\"Microsoft.Compute/sshPublicKeys/*/generateKeyPair/action\",\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/virtualMachines/extensions/delete\",\"Microsoft.Compute/disks/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"],\"notDataActions\":[]}],\"createdOn\":\"2022-10-04T19:16:18.4584328Z\",\"updatedOn\":\"2023-06-22T15:42:45.8397465Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7b0c7e81-271f-4c71-90bf-e30bdfdbc2f7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7b0c7e81-271f-4c71-90bf-e30bdfdbc2f7\"},{\"properties\":{\"roleName\":\"AppGw + for Containers Configuration Manager\",\"type\":\"BuiltInRole\",\"description\":\"Allows + access and configuration updates to Application Gateway for Containers resource.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceNetworking/trafficControllers/read\",\"Microsoft.ServiceNetworking/trafficControllers/write\",\"Microsoft.ServiceNetworking/trafficControllers/delete\",\"Microsoft.ServiceNetworking/trafficControllers/frontends/read\",\"Microsoft.ServiceNetworking/trafficControllers/frontends/write\",\"Microsoft.ServiceNetworking/trafficControllers/frontends/delete\",\"Microsoft.ServiceNetworking/trafficControllers/associations/read\",\"Microsoft.ServiceNetworking/trafficControllers/associations/write\",\"Microsoft.ServiceNetworking/trafficControllers/associations/delete\",\"Microsoft.ServiceNetworking/trafficControllers/*/read\",\"Microsoft.ServiceNetworking/trafficControllers/*/write\",\"Microsoft.ServiceNetworking/trafficControllers/*/delete\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/read\",\"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/write\",\"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2022-10-06T05:17:45.6989401Z\",\"updatedOn\":\"2024-10-30T15:35:07.0219440Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fbc52c3f-28ad-4303-a892-8a056630b8f1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fbc52c3f-28ad-4303-a892-8a056630b8f1\"},{\"properties\":{\"roleName\":\"FHIR + SMART User\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user to + access FHIR Service according to SMART on FHIR specification\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/read\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\"Microsoft.HealthcareApis/services/fhir/resources/smart/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/smart/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-10-26T19:22:25.1242244Z\",\"updatedOn\":\"2022-12-07T22:32:44.8392379Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4ba50f17-9666-485c-a643-ff00808643f0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4ba50f17-9666-485c-a643-ff00808643f0\"},{\"properties\":{\"roleName\":\"Cognitive + Services OpenAI Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Full + access including the ability to fine-tune, deploy and generate text\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.CognitiveServices/accounts/deployments/write\",\"Microsoft.CognitiveServices/accounts/deployments/delete\",\"Microsoft.CognitiveServices/accounts/raiPolicies/read\",\"Microsoft.CognitiveServices/accounts/raiPolicies/write\",\"Microsoft.CognitiveServices/accounts/raiPolicies/delete\",\"Microsoft.CognitiveServices/accounts/commitmentplans/read\",\"Microsoft.CognitiveServices/accounts/commitmentplans/write\",\"Microsoft.CognitiveServices/accounts/commitmentplans/delete\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/OpenAI/*\"],\"notDataActions\":[]}],\"createdOn\":\"2022-10-27T00:27:28.3913120Z\",\"updatedOn\":\"2023-08-28T15:04:12.4261733Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a001fd3d-188f-4b5d-821b-7da978bf7442\"},{\"properties\":{\"roleName\":\"Cognitive + Services OpenAI User\",\"type\":\"BuiltInRole\",\"description\":\"Ability + to view files, models, deployments. Readers can't make any changes They can + inference and create images\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/OpenAI/*/read\",\"Microsoft.CognitiveServices/accounts/OpenAI/engines/completions/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/engines/search/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/engines/generate/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/audio/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/search/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/completions/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/chat/completions/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/realtime/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/extensions/chat/completions/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/embeddings/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/images/generations/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/video/generations/*/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/assistants/*\",\"Microsoft.CognitiveServices/accounts/OpenAI/responses/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/OpenAI/stored-completions/read\"]}],\"createdOn\":\"2022-10-27T00:27:28.3913120Z\",\"updatedOn\":\"2025-03-18T15:18:48.6469617Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\"},{\"properties\":{\"roleName\":\"Impact + Reporter\",\"type\":\"BuiltInRole\",\"description\":\"Allows access to create/report, + read and delete impacts\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Impact/WorkloadImpacts/*\",\"Microsoft.Impact/ImpactCategories/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-10-28T00:36:17.1232767Z\",\"updatedOn\":\"2022-11-14T18:04:31.5896097Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36e80216-a7e8-4f42-a7e1-f12c98cbaf8a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"36e80216-a7e8-4f42-a7e1-f12c98cbaf8a\"},{\"properties\":{\"roleName\":\"Impact + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows read-only access + to reported impacts and impact categories\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Impact/WorkloadImpacts/read\",\"Microsoft.Impact/ImpactCategories/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-10-28T00:51:29.5105806Z\",\"updatedOn\":\"2022-11-14T18:04:31.5896097Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/68ff5d27-c7f5-4fa9-a21c-785d0df7bd9e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"68ff5d27-c7f5-4fa9-a21c-785d0df7bd9e\"},{\"properties\":{\"roleName\":\"ContainerApp + Reader\",\"type\":\"BuiltInRole\",\"description\":\"View all containerapp + resources, but does not allow you to make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.App/containerApps/*/read\",\"Microsoft.App/containerApps/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-11-14T18:04:30.1574093Z\",\"updatedOn\":\"2023-01-02T18:11:44.7991494Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service Cluster Monitoring User\",\"type\":\"BuiltInRole\",\"description\":\"List + cluster monitoring user credential action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/managedClusters/listClusterMonitoringUserCredential/action\",\"Microsoft.ContainerService/managedClusters/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-11-14T18:04:30.1574093Z\",\"updatedOn\":\"2023-02-07T16:15:04.0057947Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1afdec4b-e479-420e-99e7-f82237c7c5e6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1afdec4b-e479-420e-99e7-f82237c7c5e6\"},{\"properties\":{\"roleName\":\"Azure + Connected Machine Resource Manager\",\"type\":\"BuiltInRole\",\"description\":\"Custom + Role for AzureStackHCI RP to manage hybrid compute machines and hybrid connectivity + endpoints in a resource group\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/*/read\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/write\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/*/read\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\"Microsoft.HybridCompute/machines/licenseProfiles/read\",\"Microsoft.HybridCompute/machines/licenseProfiles/write\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridConnectivity/endpoints/read\",\"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/read\",\"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/write\",\"Microsoft.HybridConnectivity/endpoints/write\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.EdgeMarketplace/locations/operationStatuses/read\",\"Microsoft.EdgeMarketPlace/offers/getAccessToken/action\",\"Microsoft.EdgeMarketPlace/offers/generateAccessToken/action\",\"Microsoft.EdgeMarketplace/publishers/read\",\"Microsoft.EdgeMarketplace/offers/read\",\"Microsoft.ExtendedLocation/customLocations/read\",\"Microsoft.Attestation/attestationProviders/write\",\"Microsoft.Attestation/attestationProviders/read\",\"Microsoft.Attestation/attestationProviders/delete\",\"Microsoft.Attestation/attestationProviders/attestation/read\",\"Microsoft.Attestation/attestationProviders/attestation/write\",\"Microsoft.Attestation/attestationProviders/attestation/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-11-15T18:14:23.5051702Z\",\"updatedOn\":\"2024-08-27T15:13:33.3297850Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f5819b54-e033-4d82-ac66-4fec3cbf3f4c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f5819b54-e033-4d82-ac66-4fec3cbf3f4c\"},{\"properties\":{\"roleName\":\"SqlDb + Migration Role\",\"type\":\"BuiltInRole\",\"description\":\"Role for SqlDb + migration\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Sql/servers/read\",\"Microsoft.Sql/servers/write\",\"Microsoft.Sql/servers/databases/read\",\"Microsoft.Sql/servers/databases/write\",\"Microsoft.Sql/servers/databases/delete\",\"Microsoft.DataMigration/locations/operationResults/read\",\"Microsoft.DataMigration/locations/operationStatuses/read\",\"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\",\"Microsoft.DataMigration/databaseMigrations/write\",\"Microsoft.DataMigration/databaseMigrations/read\",\"Microsoft.DataMigration/databaseMigrations/delete\",\"Microsoft.DataMigration/databaseMigrations/cancel/action\",\"Microsoft.DataMigration/databaseMigrations/cutover/action\",\"Microsoft.DataMigration/sqlMigrationServices/write\",\"Microsoft.DataMigration/sqlMigrationServices/delete\",\"Microsoft.DataMigration/sqlMigrationServices/read\",\"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\",\"Microsoft.DataMigration/register/action\",\"Microsoft.DataMigration/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-12-08T01:05:20.5512514Z\",\"updatedOn\":\"2023-02-21T16:08:29.5359253Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/189207d4-bb67-4208-a635-b06afe8b2c57\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"189207d4-bb67-4208-a635-b06afe8b2c57\"},{\"properties\":{\"roleName\":\"Bayer + Ag Powered Services GDU Solution\",\"type\":\"BuiltInRole\",\"description\":\"Provide + access to GDU Solution by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/farms/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"],\"notDataActions\":[]}],\"createdOn\":\"2023-01-12T12:10:00.3896956Z\",\"updatedOn\":\"2024-05-29T15:22:21.4353130Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c4bc862a-3b64-4a35-a021-a380c159b042\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c4bc862a-3b64-4a35-a021-a380c159b042\"},{\"properties\":{\"roleName\":\"Bayer + Ag Powered Services Imagery Solution\",\"type\":\"BuiltInRole\",\"description\":\"Provide + access to Imagery Solution by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/write\",\"Microsoft.AgFoodPlatform/farmBeats/parties/farms/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/farms/write\",\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"],\"notDataActions\":[]}],\"createdOn\":\"2023-01-12T12:10:00.3896956Z\",\"updatedOn\":\"2024-05-29T15:22:21.4373143Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ef29765d-0d37-4119-a4f8-f9f9902c9588\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ef29765d-0d37-4119-a4f8-f9f9902c9588\"},{\"properties\":{\"roleName\":\"Azure + Center for SAP solutions Service role for management\",\"type\":\"BuiltInRole\",\"description\":\"This + role has permissions that the user assigned managed identity must have to + enable registration for the existing systems.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-01-13T11:09:47.8459997Z\",\"updatedOn\":\"2023-02-03T07:40:22.4872528Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0105a6b0-4bb9-43d2-982a-12806f9faddb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0105a6b0-4bb9-43d2-982a-12806f9faddb\"},{\"properties\":{\"roleName\":\"Azure + Center for SAP solutions Management role\",\"type\":\"BuiltInRole\",\"description\":\"This + role has permissions which allow users to register existing systems, view + and manage systems.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-01-13T11:09:47.8459997Z\",\"updatedOn\":\"2023-02-03T07:40:22.4872528Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d949e1d-41e2-46e3-8920-c6e4f31a8310\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6d949e1d-41e2-46e3-8920-c6e4f31a8310\"},{\"properties\":{\"roleName\":\"Kubernetes + Agentless Operator\",\"type\":\"BuiltInRole\",\"description\":\"Grants Microsoft + Defender for Cloud access to Azure Kubernetes Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/write\",\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/read\",\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/delete\",\"Microsoft.ContainerService/managedClusters/read\",\"Microsoft.Features/features/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Features/providers/features/register/action\",\"Microsoft.Security/pricings/securityoperators/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-01-13T15:12:20.5820146Z\",\"updatedOn\":\"2023-08-25T15:34:13.2516334Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d5a2ae44-610b-4500-93be-660a0c5f5ca6\"},{\"properties\":{\"roleName\":\"Azure + Usage Billing Data Sender\",\"type\":\"BuiltInRole\",\"description\":\"Azure + Usage Billing shared BuiltIn role to be used for all Customer Account Authentication\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.UsageBilling/accounts/inputs/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-01-13T22:47:11.6100638Z\",\"updatedOn\":\"2023-01-27T19:26:48.9547723Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f0310ce6-e953-4cf8-b892-fb1c87eaf7f6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f0310ce6-e953-4cf8-b892-fb1c87eaf7f6\"},{\"properties\":{\"roleName\":\"Azure + Container Registry secure supply chain operator service role\",\"type\":\"BuiltInRole\",\"description\":\"Grants + Microsoft Defender for Cloud access to Azure Container Registry for security + assessment of container images\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/pull/read\",\"Microsoft.ContainerRegistry/registries/push/write\",\"Microsoft.ContainerRegistry/registries/artifacts/delete\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/repositories/metadata/read\",\"Microsoft.ContainerRegistry/registries/repositories/content/read\",\"Microsoft.ContainerRegistry/registries/repositories/metadata/write\",\"Microsoft.ContainerRegistry/registries/repositories/content/write\",\"Microsoft.ContainerRegistry/registries/repositories/metadata/delete\",\"Microsoft.ContainerRegistry/registries/repositories/content/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2023-01-19T17:59:50.7903056Z\",\"updatedOn\":\"2024-06-13T15:33:45.0796716Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/96062cf7-95ca-4f89-9b9d-2a2aa47356af\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"96062cf7-95ca-4f89-9b9d-2a2aa47356af\"},{\"properties\":{\"roleName\":\"SqlMI + Migration Role\",\"type\":\"BuiltInRole\",\"description\":\"Role for SqlMI + migration\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Sql/managedInstances/read\",\"Microsoft.Sql/managedInstances/write\",\"Microsoft.Sql/managedInstances/databases/read\",\"Microsoft.Sql/managedInstances/databases/write\",\"Microsoft.Sql/managedInstances/databases/delete\",\"Microsoft.Sql/managedInstances/metrics/read\",\"Microsoft.DataMigration/locations/operationResults/read\",\"Microsoft.DataMigration/locations/operationStatuses/read\",\"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\",\"Microsoft.DataMigration/databaseMigrations/write\",\"Microsoft.DataMigration/databaseMigrations/read\",\"Microsoft.DataMigration/databaseMigrations/delete\",\"Microsoft.DataMigration/databaseMigrations/cancel/action\",\"Microsoft.DataMigration/databaseMigrations/cutover/action\",\"Microsoft.DataMigration/sqlMigrationServices/write\",\"Microsoft.DataMigration/sqlMigrationServices/delete\",\"Microsoft.DataMigration/sqlMigrationServices/read\",\"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\",\"Microsoft.DataMigration/register/action\",\"Microsoft.DataMigration/operations/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-01T16:14:46.1546624Z\",\"updatedOn\":\"2023-02-21T16:08:31.3805596Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1d335eef-eee1-47fe-a9e0-53214eba8872\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1d335eef-eee1-47fe-a9e0-53214eba8872\"},{\"properties\":{\"roleName\":\"SqlVM + Migration Role\",\"type\":\"BuiltInRole\",\"description\":\"Role for SqlVM + migration\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DataMigration/locations/operationResults/read\",\"Microsoft.DataMigration/locations/operationStatuses/read\",\"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\",\"Microsoft.DataMigration/databaseMigrations/write\",\"Microsoft.DataMigration/databaseMigrations/read\",\"Microsoft.DataMigration/databaseMigrations/delete\",\"Microsoft.DataMigration/databaseMigrations/cancel/action\",\"Microsoft.DataMigration/databaseMigrations/cutover/action\",\"Microsoft.DataMigration/sqlMigrationServices/write\",\"Microsoft.DataMigration/sqlMigrationServices/delete\",\"Microsoft.DataMigration/sqlMigrationServices/read\",\"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\",\"Microsoft.DataMigration/register/action\",\"Microsoft.DataMigration/operations/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.SqlVirtualMachine/sqlVirtualMachines/read\",\"Microsoft.SqlVirtualMachine/sqlVirtualMachines/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-01T16:14:48.7360987Z\",\"updatedOn\":\"2023-02-21T16:08:29.7399332Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ae8036db-e102-405b-a1b9-bae082ea436d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ae8036db-e102-405b-a1b9-bae082ea436d\"},{\"properties\":{\"roleName\":\"Bayer + Ag Powered Services CWUM Solution\",\"type\":\"BuiltInRole\",\"description\":\"Provide + access to CWUM Solution by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/write\",\"Microsoft.AgFoodPlatform/farmBeats/parties/farms/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/farms/write\",\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\"],\"notDataActions\":[]}],\"createdOn\":\"2023-02-01T16:14:48.7360987Z\",\"updatedOn\":\"2024-08-14T16:23:28.4430427Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a9b99099-ead7-47db-8fcf-072597a61dfa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a9b99099-ead7-47db-8fcf-072597a61dfa\"},{\"properties\":{\"roleName\":\"Azure + Front Door Domain Contributor\",\"type\":\"BuiltInRole\",\"description\":\"For + internal use within Azure. Can manage Azure Front Door domains, but can't + grant access to other users.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Cdn/operationresults/profileresults/customdomainresults/read\",\"Microsoft.Cdn/profiles/customdomains/read\",\"Microsoft.Cdn/profiles/customdomains/write\",\"Microsoft.Cdn/profiles/customdomains/delete\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-03T15:30:15.5041698Z\",\"updatedOn\":\"2023-12-08T09:25:10.8300706Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0ab34830-df19-4f8c-b84e-aa85b8afa6e8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0ab34830-df19-4f8c-b84e-aa85b8afa6e8\"},{\"properties\":{\"roleName\":\"Azure + Front Door Secret Contributor\",\"type\":\"BuiltInRole\",\"description\":\"For + internal use within Azure. Can manage Azure Front Door secrets, but can't + grant access to other users.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Cdn/operationresults/profileresults/secretresults/read\",\"Microsoft.Cdn/profiles/secrets/read\",\"Microsoft.Cdn/profiles/secrets/write\",\"Microsoft.Cdn/profiles/secrets/delete\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-03T15:30:15.5041698Z\",\"updatedOn\":\"2023-12-08T08:24:04.8674145Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3f2eb865-5811-4578-b90a-6fc6fa0df8e5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3f2eb865-5811-4578-b90a-6fc6fa0df8e5\"},{\"properties\":{\"roleName\":\"Azure + Front Door Domain Reader\",\"type\":\"BuiltInRole\",\"description\":\"For + internal use within Azure. Can view Azure Front Door domains, but can't make + changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Cdn/operationresults/profileresults/customdomainresults/read\",\"Microsoft.Cdn/profiles/customdomains/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-03T15:30:15.5041698Z\",\"updatedOn\":\"2023-12-08T09:25:10.8410705Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0f99d363-226e-4dca-9920-b807cf8e1a5f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0f99d363-226e-4dca-9920-b807cf8e1a5f\"},{\"properties\":{\"roleName\":\"Azure + Front Door Secret Reader\",\"type\":\"BuiltInRole\",\"description\":\"For + internal use within Azure. Can view Azure Front Door secrets, but can't make + changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Cdn/operationresults/profileresults/secretresults/read\",\"Microsoft.Cdn/profiles/secrets/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-03T15:30:20.1814931Z\",\"updatedOn\":\"2023-12-08T08:24:04.8674145Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0db238c4-885e-4c4f-a933-aa2cef684fca\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0db238c4-885e-4c4f-a933-aa2cef684fca\"},{\"properties\":{\"roleName\":\"MySQL + Backup And Export Operator\",\"type\":\"BuiltInRole\",\"description\":\"Grants + full access to manage backup and export resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DBforMySQL/flexibleServers/validateBackup/action\",\"Microsoft.DBforMySQL/flexibleServers/backupAndExport/action\",\"Microsoft.DBforMySQL/locations/operationResults/read\",\"Microsoft.DBforMySQL/locations/azureAsyncOperation/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-06T16:01:22.3871138Z\",\"updatedOn\":\"2023-05-15T15:01:03.1204500Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d18ad5f3-1baf-4119-b49b-d944edb1f9d0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d18ad5f3-1baf-4119-b49b-d944edb1f9d0\"},{\"properties\":{\"roleName\":\"LocalNGFirewallAdministrator + role\",\"type\":\"BuiltInRole\",\"description\":\"Allows user to create, modify, + describe, or delete NGFirewalls.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"PaloAltoNetworks.Cloudngfw/firewalls/*\",\"PaloAltoNetworks.Cloudngfw/localRulestacks/read\",\"PaloAltoNetworks.Cloudngfw/globalRulestacks/read\",\"PaloAltoNetworks.Cloudngfw/Locations/operationStatuses/read\",\"Microsoft.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/read\",\"Microsoft.OperationalInsights/workspaces/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/publicIPAddresses/write\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Network/networkVirtualAppliances/read\",\"Microsoft.Network/networkVirtualAppliances/write\",\"Microsoft.Network/networkVirtualAppliances/delete\",\"Microsoft.Network/virtualHubs/read\",\"Microsoft.Network/virtualWans/read\",\"Microsoft.Network/virtualWans/virtualHubs/read\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/join/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-06T16:01:22.3881136Z\",\"updatedOn\":\"2023-03-14T15:28:19.3614218Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a8835c7d-b5cb-47fa-b6f0-65ea10ce07a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a8835c7d-b5cb-47fa-b6f0-65ea10ce07a2\"},{\"properties\":{\"roleName\":\"Azure + Stack HCI Administrator\",\"type\":\"BuiltInRole\",\"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\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureStackHCI/register/action\",\"Microsoft.AzureStackHCI/Unregister/Action\",\"Microsoft.AzureStackHCI/clusters/*\",\"Microsoft.AzureStackHCI/NetworkSecurityGroups/Read\",\"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Read\",\"Microsoft.AzureStackHCI/NetworkSecurityGroups/Write\",\"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Write\",\"Microsoft.AzureStackHCI/NetworkSecurityGroups/Delete\",\"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Delete\",\"Microsoft.AzureStackHCI/NetworkSecurityGroups/join/action\",\"Microsoft.HybridCompute/register/action\",\"Microsoft.GuestConfiguration/register/action\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/subscriptions/resourceGroups/delete\",\"Microsoft.HybridConnectivity/register/action\",\"Microsoft.Authorization/roleAssignments/write\",\"Microsoft.Authorization/roleAssignments/delete\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Support/*\",\"Microsoft.AzureStackHCI/*\",\"Microsoft.AzureStackHCI/EdgeMachines/*\",\"Microsoft.AzureStackHCI/DevicePools/*\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\"Microsoft.HybridCompute/machines/assessPatches/action\",\"Microsoft.HybridCompute/machines/installPatches/action\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/operations/read\",\"Microsoft.HybridCompute/locations/operationresults/read\",\"Microsoft.HybridCompute/locations/operationstatus/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\"Microsoft.HybridCompute/osType/agentVersions/read\",\"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\"Microsoft.HybridCompute/machines/runcommands/read\",\"Microsoft.HybridCompute/machines/runcommands/write\",\"Microsoft.HybridCompute/machines/runcommands/delete\",\"Microsoft.HybridCompute/machines/licenseProfiles/read\",\"Microsoft.HybridCompute/machines/licenseProfiles/write\",\"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\"Microsoft.HybridCompute/licenses/read\",\"Microsoft.HybridCompute/licenses/write\",\"Microsoft.HybridCompute/licenses/delete\",\"Microsoft.ResourceConnector/register/action\",\"Microsoft.ResourceConnector/appliances/read\",\"Microsoft.ResourceConnector/appliances/write\",\"Microsoft.ResourceConnector/appliances/delete\",\"Microsoft.ResourceConnector/locations/operationresults/read\",\"Microsoft.ResourceConnector/locations/operationsstatus/read\",\"Microsoft.ResourceConnector/appliances/listClusterUserCredential/action\",\"Microsoft.ResourceConnector/appliances/listKeys/action\",\"Microsoft.ResourceConnector/operations/read\",\"Microsoft.ExtendedLocation/register/action\",\"Microsoft.ExtendedLocation/customLocations/read\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.ExtendedLocation/customLocations/write\",\"Microsoft.ExtendedLocation/customLocations/delete\",\"Microsoft.EdgeMarketplace/offers/read\",\"Microsoft.EdgeMarketplace/publishers/read\",\"Microsoft.Kubernetes/register/action\",\"Microsoft.KubernetesConfiguration/register/action\",\"Microsoft.KubernetesConfiguration/extensions/write\",\"Microsoft.KubernetesConfiguration/extensions/read\",\"Microsoft.KubernetesConfiguration/extensions/delete\",\"Microsoft.KubernetesConfiguration/extensions/operations/read\",\"Microsoft.KubernetesConfiguration/namespaces/read\",\"Microsoft.KubernetesConfiguration/operations/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.AzureStackHCI/StorageContainers/Write\",\"Microsoft.AzureStackHCI/StorageContainers/Read\",\"Microsoft.HybridContainerService/register/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"2.0\",\"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}))\"}],\"createdOn\":\"2023-02-06T16:01:22.3871138Z\",\"updatedOn\":\"2025-01-31T17:57:03.7937840Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bda0d508-adf1-4af0-9c28-88919fc3ae06\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bda0d508-adf1-4af0-9c28-88919fc3ae06\"},{\"properties\":{\"roleName\":\"LocalRulestacksAdministrator + role\",\"type\":\"BuiltInRole\",\"description\":\"Allows users to create, + modify, describe, or delete Rulestacks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"PaloAltoNetworks.Cloudngfw/localRulestacks/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-06T16:01:22.3891153Z\",\"updatedOn\":\"2023-02-21T16:08:31.3805596Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bfc3b73d-c6ff-45eb-9a5f-40298295bf20\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bfc3b73d-c6ff-45eb-9a5f-40298295bf20\"},{\"properties\":{\"roleName\":\"Azure + Extension for SQL Server Deployment\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft.AzureArcData + service role to enable deployment of Azure Extension for SQL Server\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/deployments/write\",\"Microsoft.HybridCompute/machines/extensions/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-10T19:24:06.0772059Z\",\"updatedOn\":\"2023-03-16T22:04:26.5984064Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7392c568-9289-4bde-aaaa-b7131215889d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7392c568-9289-4bde-aaaa-b7131215889d\"},{\"properties\":{\"roleName\":\"Azure + Maps Data Read and Batch Role\",\"type\":\"BuiltInRole\",\"description\":\"This + role can be used to assign read and batch actions on Azure Maps.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Maps/accounts/services/*/read\",\"Microsoft.Maps/accounts/services/batch/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-03-16T22:04:26.5974054Z\",\"updatedOn\":\"2023-05-17T15:23:09.9109438Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d6470a16-71bd-43ab-86b3-6f3a73f4e787\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d6470a16-71bd-43ab-86b3-6f3a73f4e787\"},{\"properties\":{\"roleName\":\"API + Management Workspace Reader\",\"type\":\"BuiltInRole\",\"description\":\"Has + read-only access to entities in the workspace. This role should be assigned + on the workspace scope.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/workspaces/*/read\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-22T15:15:20.4542963Z\",\"updatedOn\":\"2023-03-22T15:15:20.4542963Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ef1c2c96-4a77-49e8-b9a4-6179fe1d2fd2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ef1c2c96-4a77-49e8-b9a4-6179fe1d2fd2\"},{\"properties\":{\"roleName\":\"API + Management Workspace API Product Manager\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/workspaces/*/read\",\"Microsoft.ApiManagement/service/workspaces/products/*\",\"Microsoft.ApiManagement/service/workspaces/subscriptions/*\",\"Microsoft.ApiManagement/service/workspaces/groups/*\",\"Microsoft.ApiManagement/service/workspaces/tags/*\",\"Microsoft.ApiManagement/service/workspaces/notifications/*\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-22T15:15:20.4542963Z\",\"updatedOn\":\"2023-03-22T15:15:20.4542963Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/73c2c328-d004-4c5e-938c-35c6f5679a1f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"73c2c328-d004-4c5e-938c-35c6f5679a1f\"},{\"properties\":{\"roleName\":\"API + Management Workspace API Developer\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/workspaces/*/read\",\"Microsoft.ApiManagement/service/workspaces/apis/*\",\"Microsoft.ApiManagement/service/workspaces/apiVersionSets/*\",\"Microsoft.ApiManagement/service/workspaces/policies/*\",\"Microsoft.ApiManagement/service/workspaces/schemas/*\",\"Microsoft.ApiManagement/service/workspaces/products/*\",\"Microsoft.ApiManagement/service/workspaces/policyFragments/*\",\"Microsoft.ApiManagement/service/workspaces/namedValues/*\",\"Microsoft.ApiManagement/service/workspaces/tags/*\",\"Microsoft.ApiManagement/service/workspaces/backends/*\",\"Microsoft.ApiManagement/service/workspaces/certificates/*\",\"Microsoft.ApiManagement/service/workspaces/diagnostics/*\",\"Microsoft.ApiManagement/service/workspaces/loggers/*\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-22T15:15:20.4542963Z\",\"updatedOn\":\"2024-07-22T15:08:54.4352609Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/56328988-075d-4c6a-8766-d93edd6725b6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"56328988-075d-4c6a-8766-d93edd6725b6\"},{\"properties\":{\"roleName\":\"API + Management Service Workspace API Product Manager\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/users/read\",\"Microsoft.ApiManagement/service/tags/read\",\"Microsoft.ApiManagement/service/tags/apiLinks/*\",\"Microsoft.ApiManagement/service/tags/operationLinks/*\",\"Microsoft.ApiManagement/service/tags/productLinks/*\",\"Microsoft.ApiManagement/service/products/read\",\"Microsoft.ApiManagement/service/products/apiLinks/*\",\"Microsoft.ApiManagement/service/groups/read\",\"Microsoft.ApiManagement/service/groups/users/*\",\"Microsoft.ApiManagement/service/read\",\"Microsoft.ApiManagement/service/authorizationServers/read\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-22T15:15:20.4542963Z\",\"updatedOn\":\"2024-08-30T15:40:51.7523528Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d59a3e9c-6d52-4a5a-aeed-6bf3cf0e31da\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d59a3e9c-6d52-4a5a-aeed-6bf3cf0e31da\"},{\"properties\":{\"roleName\":\"API + Management Service Workspace API Developer\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/tags/read\",\"Microsoft.ApiManagement/service/tags/apiLinks/*\",\"Microsoft.ApiManagement/service/tags/operationLinks/*\",\"Microsoft.ApiManagement/service/tags/productLinks/*\",\"Microsoft.ApiManagement/service/products/read\",\"Microsoft.ApiManagement/service/products/apiLinks/*\",\"Microsoft.ApiManagement/service/read\",\"Microsoft.ApiManagement/service/authorizationServers/read\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-22T15:15:22.2253607Z\",\"updatedOn\":\"2024-08-30T15:40:51.7523528Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9565a273-41b9-4368-97d2-aeb0c976a9b3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9565a273-41b9-4368-97d2-aeb0c976a9b3\"},{\"properties\":{\"roleName\":\"API + Management Workspace Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can + manage the workspace and view, but not modify its members. This role should + be assigned on the workspace scope.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/workspaces/*\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-22T15:15:21.2657951Z\",\"updatedOn\":\"2023-03-22T15:15:21.2657951Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0c34c906-8d99-4cb7-8bb7-33f5b0a1a799\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0c34c906-8d99-4cb7-8bb7-33f5b0a1a799\"},{\"properties\":{\"roleName\":\"Storage + File Data Privileged Reader\",\"type\":\"BuiltInRole\",\"description\":\"Customer + has read access on Azure Storage file shares.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\"Microsoft.Storage/storageAccounts/fileServices/readFileBackupSemantics/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-03-24T20:36:33.5999978Z\",\"updatedOn\":\"2023-04-07T19:31:54.7331401Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b8eda974-7b85-4f76-af95-65846b26df6d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b8eda974-7b85-4f76-af95-65846b26df6d\"},{\"properties\":{\"roleName\":\"Storage + File Data Privileged Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Customer + has read, write, delete and modify NTFS permission access on Azure Storage + file shares.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\",\"Microsoft.Storage/storageAccounts/fileServices/readFileBackupSemantics/action\",\"Microsoft.Storage/storageAccounts/fileServices/writeFileBackupSemantics/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-03-24T20:51:46.4662516Z\",\"updatedOn\":\"2023-04-07T19:31:53.4135545Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/69566ab7-960f-475b-8e7c-b3118f30c6bd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"69566ab7-960f-475b-8e7c-b3118f30c6bd\"},{\"properties\":{\"roleName\":\"Windows + 365 Network User\",\"type\":\"BuiltInRole\",\"description\":\"This role is + used by Windows 365 to read virtual networks and join the designated virtual + networks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/usages/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-27T15:08:56.6070697Z\",\"updatedOn\":\"2023-07-27T15:18:15.2012422Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7eabc9a4-85f7-4f71-b8ab-75daaccc1033\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7eabc9a4-85f7-4f71-b8ab-75daaccc1033\"},{\"properties\":{\"roleName\":\"Windows + 365 Network Interface Contributor\",\"type\":\"BuiltInRole\",\"description\":\"This + role is used by Windows 365 to provision required network resources and join + Microsoft-hosted VMs to network interfaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourcegroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Network/locations/operations/read\",\"Microsoft.Network/locations/operationResults/read\",\"Microsoft.Network/locations/usages/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/delete\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/networkInterfaces/effectiveNetworkSecurityGroups/action\",\"Microsoft.Network/networkInterfaces/effectiveRouteTable/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-27T15:08:58.3984832Z\",\"updatedOn\":\"2023-07-27T15:18:15.2012422Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1f135831-5bbe-4924-9016-264044c00788\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1f135831-5bbe-4924-9016-264044c00788\"},{\"properties\":{\"roleName\":\"Windows365SubscriptionReader\",\"type\":\"BuiltInRole\",\"description\":\"Read + subscriptions, images, azure firewalls. This role is used in Windows365 scenarios.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-27T15:08:58.3984832Z\",\"updatedOn\":\"2023-03-27T15:08:58.3984832Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3d55a8f6-4133-418d-8051-facdb1735758\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3d55a8f6-4133-418d-8051-facdb1735758\"},{\"properties\":{\"roleName\":\"App + Compliance Automation Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Create, + read, download, modify and delete reports objects and related other resource + objects.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AppComplianceAutomation/*\",\"Microsoft.Storage/storageAccounts/blobServices/write\",\"Microsoft.Storage/storageAccounts/fileservices/write\",\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Storage/storageAccounts/write\",\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.PolicyInsights/policyStates/queryResults/action\",\"Microsoft.PolicyInsights/policyStates/triggerEvaluation/action\",\"Microsoft.Resources/resources/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Resources/subscriptions/resources/read\",\"Microsoft.Resources/subscriptions/resourceGroups/delete\",\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/tags/read\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Security/automations/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Security/automations/delete\",\"Microsoft.Security/automations/write\",\"Microsoft.Security/register/action\",\"Microsoft.Security/unregister/action\",\"*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-04-14T05:39:53.8680786Z\",\"updatedOn\":\"2023-05-26T04:59:13.9237237Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0f37683f-2463-46b6-9ce7-9b788b988ba2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0f37683f-2463-46b6-9ce7-9b788b988ba2\"},{\"properties\":{\"roleName\":\"App + Compliance Automation Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read, + download the reports objects and related other resource objects.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-04-14T05:39:53.8670787Z\",\"updatedOn\":\"2023-09-27T15:29:28.8457470Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ffc6bbe0-e443-4c3b-bf54-26581bb2f78e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ffc6bbe0-e443-4c3b-bf54-26581bb2f78e\"},{\"properties\":{\"roleName\":\"Azure + Sphere Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows user + read and write access to Azure Sphere resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureSphere/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/DiagnosticSettings/*\",\"Microsoft.Insights/DiagnosticSettingsCategories/Read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-05-02T15:22:08.6728628Z\",\"updatedOn\":\"2023-05-08T15:10:38.0545692Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8b9dfcab-4b77-4632-a6df-94bd07820648\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8b9dfcab-4b77-4632-a6df-94bd07820648\"},{\"properties\":{\"roleName\":\"SaaS + Hub Contributor\",\"type\":\"BuiltInRole\",\"description\":\"SaaS Hub contributor + can manage SaaS Hub resource\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.SaaSHub/cloudservices/read\",\"Microsoft.SaaSHub/cloudservices/write\",\"Microsoft.SaaSHub/cloudservices/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-05-03T15:33:04.5437406Z\",\"updatedOn\":\"2023-05-12T22:22:08.3454165Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e9b8712a-cbcf-4ea7-b0f7-e71b803401e6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e9b8712a-cbcf-4ea7-b0f7-e71b803401e6\"},{\"properties\":{\"roleName\":\"Azure + Sphere Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows user to + read Azure Sphere resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureSphere/*/read\",\"Microsoft.AzureSphere/catalogs/countDevices/action\",\"Microsoft.AzureSphere/catalogs/listDeviceGroups/action\",\"Microsoft.AzureSphere/catalogs/listDeviceInsights/action\",\"Microsoft.AzureSphere/catalogs/listDevices/action\",\"Microsoft.AzureSphere/catalogs/listDeployments/action\",\"Microsoft.AzureSphere/catalogs/products/countDevices/action\",\"Microsoft.AzureSphere/catalogs/products/deviceGroups/countDevices/action\",\"Microsoft.AzureSphere/catalogs/certificates/retrieveCertChain/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/DiagnosticSettings/Read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-05-08T15:10:38.0395671Z\",\"updatedOn\":\"2023-05-12T22:22:08.3454165Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c8ae6279-5a0b-4cb2-b3f0-d4d62845742c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c8ae6279-5a0b-4cb2-b3f0-d4d62845742c\"},{\"properties\":{\"roleName\":\"Azure + Sphere Publisher\",\"type\":\"BuiltInRole\",\"description\":\"Allows user + to read and download Azure Sphere resources and upload images.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureSphere/*/read\",\"Microsoft.AzureSphere/catalogs/countDevices/action\",\"Microsoft.AzureSphere/catalogs/listDeviceGroups/action\",\"Microsoft.AzureSphere/catalogs/listDeviceInsights/action\",\"Microsoft.AzureSphere/catalogs/listDevices/action\",\"Microsoft.AzureSphere/catalogs/products/countDevices/action\",\"Microsoft.AzureSphere/catalogs/products/deviceGroups/countDevices/action\",\"Microsoft.AzureSphere/catalogs/certificates/retrieveProofOfPossessionNonce/action\",\"Microsoft.AzureSphere/catalogs/certificates/retrieveCertChain/action\",\"Microsoft.AzureSphere/catalogs/images/write\",\"Microsoft.AzureSphere/catalogs/uploadImage/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/DiagnosticSettings/Read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-05-08T15:10:38.0395671Z\",\"updatedOn\":\"2024-01-29T16:00:37.3526635Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d994134-994b-4a59-9974-f479f0b227fb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6d994134-994b-4a59-9974-f479f0b227fb\"},{\"properties\":{\"roleName\":\"Procurement + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage the + procurement of products and services.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.SaaSHub/cloudservices/read\",\"Microsoft.SaaSHub/cloudservices/write\",\"Microsoft.SaaSHub/cloudservices/delete\",\"Microsoft.SaaSHub/register/action\",\"Microsoft.SaaS/resources/read\",\"Microsoft.SaaS/resources/write\",\"Microsoft.SaaS/resources/delete\",\"Microsoft.SaaS/register/action\",\"Microsoft.ProfessionalService/resources/read\",\"Microsoft.ProfessionalService/resources/write\",\"Microsoft.ProfessionalService/resources/delete\",\"Microsoft.ProfessionalService/register/action\",\"Microsoft.BillingBenefits/register/action\",\"Microsoft.BillingBenefits/maccs/read\",\"Microsoft.BillingBenefits/maccs/write\",\"Microsoft.BillingBenefits/maccs/delete\",\"Microsoft.BillingBenefits/maccs/cancel/action\",\"Microsoft.BillingBenefits/maccs/chargeShortfall/action\",\"Microsoft.BillingBenefits/maccs/contributors/read\",\"Microsoft.EnterpriseSupport/enterpriseSupports/read\",\"Microsoft.EnterpriseSupport/enterpriseSupports/write\",\"Microsoft.EnterpriseSupport/enterpriseSupports/delete\",\"Microsoft.EnterpriseSupport/register/action\",\"Microsoft.SoftwarePlan/register/action\",\"Microsoft.SoftwarePlan/softwareSubscriptions/read\",\"Microsoft.SoftwarePlan/softwareSubscriptions/write\",\"Microsoft.SoftwarePlan/softwareSubscriptions/delete\",\"Microsoft.SoftwarePlan/softwareSubscriptions/cancel/action\",\"Microsoft.SoftwarePlan/softwareSubscriptions/listKeys/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-05-10T15:28:24.1871677Z\",\"updatedOn\":\"2024-08-28T15:23:36.0821031Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/be1a1ac2-09d3-4261-9e57-a73a6e227f53\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"be1a1ac2-09d3-4261-9e57-a73a6e227f53\"},{\"properties\":{\"roleName\":\"Azure + Machine Learning Workspace Connection Secrets Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can + list workspace connection secrets\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/connections/listsecrets/action\",\"Microsoft.MachineLearningServices/workspaces/metadata/secrets/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-05-10T15:28:24.1871677Z\",\"updatedOn\":\"2023-10-16T15:13:20.5931766Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ea01e6af-a1c1-4350-9563-ad00f8c72ec5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ea01e6af-a1c1-4350-9563-ad00f8c72ec5\"},{\"properties\":{\"roleName\":\"Cognitive + Search Serverless Data Reader (Deprecated)\",\"type\":\"BuiltInRole\",\"description\":\"This + role has been deprecated\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveSearch/indexes/schema/read\",\"Microsoft.CognitiveSearch/indexes/documents/read\"],\"notDataActions\":[]}],\"createdOn\":\"2023-05-16T15:12:24.3993826Z\",\"updatedOn\":\"2024-02-07T16:10:08.5177317Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/79b01272-bf9f-4f4c-9517-5506269cf524\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"79b01272-bf9f-4f4c-9517-5506269cf524\"},{\"properties\":{\"roleName\":\"Cognitive + Search Serverless Data Contributor (Deprecated)\",\"type\":\"BuiltInRole\",\"description\":\"This + role has been deprecated\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveSearch/indexes/schema/*\",\"Microsoft.CognitiveSearch/indexes/documents/*\"],\"notDataActions\":[]}],\"createdOn\":\"2023-05-16T15:12:24.3943867Z\",\"updatedOn\":\"2024-02-07T16:10:08.5167310Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7ac06ca7-21ca-47e3-a67b-cbd6e6223baf\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7ac06ca7-21ca-47e3-a67b-cbd6e6223baf\"},{\"properties\":{\"roleName\":\"Community + Owner Role\",\"type\":\"BuiltInRole\",\"description\":\"Community Owner Role + to access the resources of Microsoft.Mission stored with RPSAAS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Mission/register/action\",\"Microsoft.Mission/unregister/action\",\"Microsoft.Mission/Locations/OperationStatuses/read\",\"Microsoft.Mission/Locations/OperationStatuses/write\",\"Microsoft.Mission/Operations/read\",\"Microsoft.Mission/catalogs/read\",\"Microsoft.Mission/catalogs/write\",\"Microsoft.Mission/catalogs/delete\",\"Microsoft.Mission/communities/read\",\"Microsoft.Mission/communities/write\",\"Microsoft.Mission/communities/delete\",\"Microsoft.Mission/internalConnections/read\",\"Microsoft.Mission/internalConnections/write\",\"Microsoft.Mission/internalConnections/delete\",\"Microsoft.Mission/virtualEnclaves/read\",\"Microsoft.Mission/virtualEnclaves/write\",\"Microsoft.Mission/virtualEnclaves/delete\",\"Microsoft.Mission/virtualEnclaves/workloads/read\",\"Microsoft.Mission/virtualEnclaves/workloads/write\",\"Microsoft.Mission/virtualEnclaves/workloads/delete\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Features/features/read\",\"Microsoft.Mission/communities/communityEndpoints/read\",\"Microsoft.Mission/communities/communityEndpoints/write\",\"Microsoft.Mission/communities/communityEndpoints/delete\",\"Microsoft.Mission/communities/transitHubs/read\",\"Microsoft.Mission/communities/transitHubs/write\",\"Microsoft.Mission/communities/transitHubs/delete\",\"Microsoft.Mission/enclaveConnections/read\",\"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\"Microsoft.Mission/approvals/read\",\"Microsoft.Mission/approvals/write\",\"Microsoft.Mission/approvals/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-05-26T20:54:56.9528275Z\",\"updatedOn\":\"2024-09-17T15:06:28.1468173Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e28a61e-8040-49db-b175-bb5b88af6239\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e28a61e-8040-49db-b175-bb5b88af6239\"},{\"properties\":{\"roleName\":\"Firmware + Analysis Admin\",\"type\":\"BuiltInRole\",\"description\":\"Upload and analyze + firmware images in Defender for IoT\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.IoTFirmwareDefense/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-06-13T15:14:24.0812321Z\",\"updatedOn\":\"2023-06-13T15:14:24.0812321Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9c1607d1-791d-4c68-885d-c7b7aaff7c8a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9c1607d1-791d-4c68-885d-c7b7aaff7c8a\"},{\"properties\":{\"roleName\":\"Key + Vault Data Access Administrator\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\",\"Microsoft.Authorization/roleAssignments/delete\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\",\"Microsoft.KeyVault/vaults/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"2.0\",\"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}))\"}],\"createdOn\":\"2023-06-20T22:41:17.2192139Z\",\"updatedOn\":\"2023-12-08T01:46:25.6834412Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8b54135c-b56d-4d72-a534-26097cfdc8d8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8b54135c-b56d-4d72-a534-26097cfdc8d8\"},{\"properties\":{\"roleName\":\"Defender + for Storage Data Scanner\",\"type\":\"BuiltInRole\",\"description\":\"Grants + access to read blobs and update index tags. This role is used by the data + scanner of Defender for Storage.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/read\"],\"notDataActions\":[]}],\"createdOn\":\"2023-06-22T15:42:45.8377472Z\",\"updatedOn\":\"2023-07-11T15:15:59.0094720Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1e7ca9b1-60d1-4db8-a914-f2ca1ff27c40\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1e7ca9b1-60d1-4db8-a914-f2ca1ff27c40\"},{\"properties\":{\"roleName\":\"Compute + Diagnostics Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants permissions + to execute diagnostics provided by Compute Diagnostic Service for Compute + Resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/disks/beginGetAccess/action\",\"Microsoft.Compute/virtualmachinescalesets/disks/beginGetAccess/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-07-04T15:09:35.8762293Z\",\"updatedOn\":\"2023-08-22T15:03:01.3331418Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/df2711a6-406d-41cf-b366-b0250bff9ad1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"df2711a6-406d-41cf-b366-b0250bff9ad1\"},{\"properties\":{\"roleName\":\"Elastic + SAN Network Admin\",\"type\":\"BuiltInRole\",\"description\":\"Allows access + to create Private Endpoints on SAN resources, and to read SAN resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ElasticSan/elasticSans/*/read\",\"Microsoft.ElasticSan/elasticSans/PrivateEndpointConnectionsApproval/action\",\"Microsoft.ElasticSan/elasticSans/privateEndpointConnections/write\",\"Microsoft.ElasticSan/elasticSans/privateEndpointConnections/delete\",\"Microsoft.ElasticSan/locations/asyncoperations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-07-12T15:16:18.4725463Z\",\"updatedOn\":\"2023-07-25T15:17:34.8207971Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fa6cecf6-5db3-4c43-8470-c540bcb4eafa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fa6cecf6-5db3-4c43-8470-c540bcb4eafa\"},{\"properties\":{\"roleName\":\"Cognitive + Services Usages Reader\",\"type\":\"BuiltInRole\",\"description\":\"Minimal + permission to view Cognitive Services usages.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/locations/usages/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-07-18T15:21:40.0260836Z\",\"updatedOn\":\"2023-07-18T15:21:40.0260836Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bba48692-92b0-4667-a9ad-c31c7b334ac2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bba48692-92b0-4667-a9ad-c31c7b334ac2\"},{\"properties\":{\"roleName\":\"PostgreSQL + Flexible Server Long Term Retention Backup Role\",\"type\":\"BuiltInRole\",\"description\":\"Role + to allow backup vault to access PostgreSQL Flexible Server Resource APIs for + Long Term Retention Backup.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DBforPostgreSQL/flexibleServers/ltrBackupOperations/read\",\"Microsoft.DBforPostgreSQL/flexibleServers/ltrPreBackup/action\",\"Microsoft.DBforPostgreSQL/flexibleServers/startLtrBackup/action\",\"Microsoft.DBforPostgreSQL/locations/azureAsyncOperation/read\",\"Microsoft.DBforPostgreSQL/locations/operationResults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-07-20T15:49:01.2761474Z\",\"updatedOn\":\"2023-08-03T22:52:14.0236976Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c088a766-074b-43ba-90d4-1fb21feae531\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c088a766-074b-43ba-90d4-1fb21feae531\"},{\"properties\":{\"roleName\":\"Search + Parameter Manager\",\"type\":\"BuiltInRole\",\"description\":\"Role allows + user or principal access to $status and $reindex to update search parameters\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/reindex/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/write\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/searchparameter/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-07-31T15:06:45.6740185Z\",\"updatedOn\":\"2023-07-31T15:06:45.6740185Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a02f7c31-354d-4106-865a-deedf37fa038\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a02f7c31-354d-4106-865a-deedf37fa038\"},{\"properties\":{\"roleName\":\"Virtual + Machine Data Access Administrator (preview)\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\",\"Microsoft.Authorization/roleAssignments/delete\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Compute/virtualMachines/*/read\",\"Microsoft.HybridCompute/machines/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"2.0\",\"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}))\"}],\"createdOn\":\"2023-08-08T15:31:17.1728633Z\",\"updatedOn\":\"2023-11-01T15:17:03.5360733Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/66f75aeb-eabe-4b70-9f1e-c350c4c9ad04\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"66f75aeb-eabe-4b70-9f1e-c350c4c9ad04\"},{\"properties\":{\"roleName\":\"Logic + Apps Standard Reader (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"You + have read-only access to all resources in a Standard logic app and workflows, + including the workflow runs and their history.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Web/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-08-11T18:29:26.2014706Z\",\"updatedOn\":\"2024-04-04T21:09:40.8283445Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4accf36b-2c05-432f-91c8-5c532dff4c73\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4accf36b-2c05-432f-91c8-5c532dff4c73\"},{\"properties\":{\"roleName\":\"Logic + Apps Standard Developer (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"You + can create and edit workflows, connections, and settings for a Standard logic + app. You can't make changes outside the workflow scope.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Web/*/read\",\"Microsoft.Web/connections/*\",\"Microsoft.Web/customApis/*\",\"Microsoft.Web/sites/config/list/Action\",\"microsoft.web/sites/config/Write\",\"microsoft.web/sites/config/web/appsettings/delete\",\"microsoft.web/sites/config/web/appsettings/write\",\"microsoft.web/sites/deployWorkflowArtifacts/action\",\"microsoft.web/sites/hostruntime/*\",\"microsoft.web/sites/listworkflowsconnections/action\",\"Microsoft.Web/sites/publish/Action\",\"microsoft.web/sites/slots/config/appsettings/write\",\"Microsoft.Web/sites/slots/config/list/Action\",\"microsoft.web/sites/slots/config/web/appsettings/delete\",\"microsoft.web/sites/slots/deployWorkflowArtifacts/action\",\"microsoft.web/sites/slots/listworkflowsconnections/action\",\"Microsoft.Web/sites/slots/publish/Action\",\"microsoft.web/sites/workflows/*\",\"microsoft.web/sites/workflowsconfiguration/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-08-11T18:29:26.2014706Z\",\"updatedOn\":\"2024-04-04T21:09:40.8283445Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/523776ba-4eb2-4600-a3c8-f2dc93da4bdb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"523776ba-4eb2-4600-a3c8-f2dc93da4bdb\"},{\"properties\":{\"roleName\":\"Logic + Apps Standard Contributor (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"You + can manage all aspects of a Standard logic app and workflows. You can't change + access or ownership.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Web/*/read\",\"Microsoft.Web/certificates/*\",\"Microsoft.Web/connectionGateways/*\",\"Microsoft.Web/connections/*\",\"Microsoft.Web/customApis/*\",\"Microsoft.Web/serverFarms/*\",\"Microsoft.Web/sites/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-08-11T18:29:26.2014706Z\",\"updatedOn\":\"2024-04-04T21:09:40.8283445Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ad710c24-b039-4e85-a019-deb4a06e8570\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ad710c24-b039-4e85-a019-deb4a06e8570\"},{\"properties\":{\"roleName\":\"Logic + Apps Standard Operator (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"You + can enable and disable the logic app, resubmit workflow runs, as well as create + connections. You can't edit workflows or settings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Web/*/read\",\"Microsoft.Web/sites/applySlotConfig/Action\",\"microsoft.web/sites/hostruntime/*\",\"Microsoft.Web/sites/restart/Action\",\"Microsoft.Web/sites/slots/restart/Action\",\"Microsoft.Web/sites/slots/slotsswap/Action\",\"Microsoft.Web/sites/slots/start/Action\",\"Microsoft.Web/sites/slots/stop/Action\",\"Microsoft.Web/sites/slotsdiffs/Action\",\"Microsoft.Web/sites/slotsswap/Action\",\"Microsoft.Web/sites/start/Action\",\"Microsoft.Web/sites/stop/Action\",\"Microsoft.Web/sites/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-08-11T18:29:26.2014706Z\",\"updatedOn\":\"2024-04-04T21:09:40.8293422Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b70c96e9-66fe-4c09-b6e7-c98e69c98555\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b70c96e9-66fe-4c09-b6e7-c98e69c98555\"},{\"properties\":{\"roleName\":\"IPAM + Pool User\",\"type\":\"BuiltInRole\",\"description\":\"Read IPAM Pools and + child resources. Create and remove associations. This role is in preview and + subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/networkManagers/ipamPools/*/read\",\"Microsoft.Network/networkManagers/ipamPools/*/action\",\"Microsoft.Network/networkManagers/ipamPools/*/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-08-22T15:03:01.8181632Z\",\"updatedOn\":\"2024-10-15T15:28:55.9466167Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7b3e853f-ad5d-4fb5-a7b8-56a3581c7037\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7b3e853f-ad5d-4fb5-a7b8-56a3581c7037\"},{\"properties\":{\"roleName\":\"SpatialMapsAccounts + Account Owner\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage + data in your account, including deleting them\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/spatialMapsAccounts/read\",\"Microsoft.MixedReality/spatialMapsAccounts/delete\",\"Microsoft.MixedReality/spatialMapsAccounts/write\"],\"notDataActions\":[]}],\"createdOn\":\"2023-08-25T22:37:18.9333563Z\",\"updatedOn\":\"2023-08-25T22:37:18.9333563Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e9c9ed2b-2a99-4071-b2ff-5b113ebf73a1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e9c9ed2b-2a99-4071-b2ff-5b113ebf73a1\"},{\"properties\":{\"roleName\":\"Azure + Resource Notifications System Topics Subscriber\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you create system topics and event subscriptions on all system topics exposed + currently and in the future by Azure Resource Notifications\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ResourceNotifications/systemTopics/subscribeToResources/action\",\"Microsoft.ResourceNotifications/systemTopics/subscribeToHealthResources/action\",\"Microsoft.ResourceNotifications/systemTopics/subscribeToMaintenanceResources/action\",\"Microsoft.ResourceNotifications/systemTopics/subscribeToComputeResources/action\",\"Microsoft.ResourceNotifications/systemTopics/subscribeToComputeScheduleResources/action\",\"Microsoft.ResourceNotifications/systemTopics/subscribeToContainerServiceEventResources/action\",\"Microsoft.EventGrid/eventSubscriptions/write\",\"Microsoft.EventGrid/systemTopics/eventSubscriptions/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-09-01T18:12:29.6066065Z\",\"updatedOn\":\"2024-09-24T15:12:30.7727921Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0b962ed2-6d56-471c-bd5f-3477d83a7ba4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0b962ed2-6d56-471c-bd5f-3477d83a7ba4\"},{\"properties\":{\"roleName\":\"Elastic + SAN Snapshot Exporter\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for creating and exporting Snapshot of Elastic San Volume\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ElasticSan/elasticSans/*/read\",\"Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots/write\",\"Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots/delete\",\"Microsoft.ElasticSan/elasticSans/volumeGroups/snapshots/beginGetAccess/action\",\"Microsoft.ElasticSan/locations/*\",\"Microsoft.Compute/locations/*\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/delete\",\"Microsoft.Compute/snapshots/read\",\"Microsoft.Compute/snapshots/write\",\"Microsoft.Compute/snapshots/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-09-07T15:27:01.5795598Z\",\"updatedOn\":\"2023-09-07T15:27:01.5795598Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1c4770c0-34f7-4110-a1ea-a5855cc7a939\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1c4770c0-34f7-4110-a1ea-a5855cc7a939\"},{\"properties\":{\"roleName\":\"Elastic + SAN Volume Importer\",\"type\":\"BuiltInRole\",\"description\":\"Allows for + Importing Elastic San Volume\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ElasticSan/elasticSans/volumeGroups/*/read\",\"Microsoft.ElasticSan/elasticSans/volumeGroups/volumes/write\",\"Microsoft.ElasticSan/elasticSans/volumeGroups/volumes/delete\",\"Microsoft.ElasticSan/locations/*\",\"Microsoft.Compute/locations/*\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/beginGetAccess/action\",\"Microsoft.Compute/disks/endGetAccess/action\",\"Microsoft.Compute/snapshots/read\",\"Microsoft.Compute/snapshots/beginGetAccess/action\",\"Microsoft.Compute/snapshots/endGetAccess/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-09-07T15:27:01.5805616Z\",\"updatedOn\":\"2024-10-21T15:04:46.4452794Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/90e8b822-3e73-47b5-868a-787dc80c008f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"90e8b822-3e73-47b5-868a-787dc80c008f\"},{\"properties\":{\"roleName\":\"Community + Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Community Contributor + Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Mission/register/action\",\"Microsoft.Mission/unregister/action\",\"Microsoft.Mission/Locations/OperationStatuses/read\",\"Microsoft.Mission/Locations/OperationStatuses/write\",\"Microsoft.Mission/Operations/read\",\"Microsoft.Mission/catalogs/read\",\"Microsoft.Mission/catalogs/write\",\"Microsoft.Mission/communities/read\",\"Microsoft.Mission/communities/write\",\"Microsoft.Mission/internalConnections/read\",\"Microsoft.Mission/internalConnections/write\",\"Microsoft.Mission/externalConnections/read\",\"Microsoft.Mission/externalConnections/write\",\"Microsoft.Mission/virtualEnclaves/read\",\"Microsoft.Mission/virtualEnclaves/write\",\"Microsoft.Mission/virtualEnclaves/endpoints/read\",\"Microsoft.Mission/virtualEnclaves/endpoints/write\",\"Microsoft.Mission/virtualEnclaves/workloads/read\",\"Microsoft.Mission/virtualEnclaves/workloads/write\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Features/features/read\",\"Microsoft.Mission/communities/communityEndpoints/read\",\"Microsoft.Mission/communities/communityEndpoints/write\",\"Microsoft.Mission/communities/transitHubs/read\",\"Microsoft.Mission/communities/transitHubs/write\",\"Microsoft.Mission/enclaveConnections/read\",\"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\"Microsoft.Mission/approvals/read\",\"Microsoft.Mission/approvals/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-09-15T21:32:17.3120404Z\",\"updatedOn\":\"2024-09-17T15:06:28.1468173Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49435da6-99fe-48a5-a235-fc668b9dc04a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49435da6-99fe-48a5-a235-fc668b9dc04a\"},{\"properties\":{\"roleName\":\"EventGrid + TopicSpaces Subscriber\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + subscribe messages on topicspaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventGrid/topicSpaces/subscribe/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-09-20T15:20:54.9243795Z\",\"updatedOn\":\"2023-10-23T15:12:07.1288274Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4b0f2fd7-60b4-4eca-896f-4435034f8bf5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4b0f2fd7-60b4-4eca-896f-4435034f8bf5\"},{\"properties\":{\"roleName\":\"EventGrid + TopicSpaces Publisher\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + publish messages on topicspaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventGrid/topicSpaces/publish/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-09-20T15:20:54.9383815Z\",\"updatedOn\":\"2023-10-23T15:12:07.1308307Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a12b0b94-b317-4dcd-84a8-502ce99884c6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a12b0b94-b317-4dcd-84a8-502ce99884c6\"},{\"properties\":{\"roleName\":\"Data + Boundary Tenant Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Allows + tenant level administration for data boundaries.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/dataBoundaries/write\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-09-26T15:18:40.8881798Z\",\"updatedOn\":\"2023-09-26T15:18:40.8881798Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d1a38570-4b05-4d70-b8e4-1100bcf76d12\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d1a38570-4b05-4d70-b8e4-1100bcf76d12\"},{\"properties\":{\"roleName\":\"DeID + Batch Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Create and manage + DeID batch jobs. This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthDataAIServices/DeidServices/Batch/write\",\"Microsoft.HealthDataAIServices/DeidServices/Batch/delete\",\"Microsoft.HealthDataAIServices/DeidServices/Batch/read\"],\"notDataActions\":[]}],\"createdOn\":\"2023-09-29T20:09:57.8639021Z\",\"updatedOn\":\"2023-09-29T20:09:57.8639021Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8a90fa6b-6997-4a07-8a95-30633a7c97b9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8a90fa6b-6997-4a07-8a95-30633a7c97b9\"},{\"properties\":{\"roleName\":\"DeID + Batch Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read DeID batch + jobs. This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthDataAIServices/DeidServices/Batch/read\"],\"notDataActions\":[\"Microsoft.HealthDataAIServices/DeidServices/Batch/write\",\"Microsoft.HealthDataAIServices/DeidServices/Batch/delete\"]}],\"createdOn\":\"2023-09-29T20:09:57.8639021Z\",\"updatedOn\":\"2023-09-29T20:09:57.8639021Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b73a14ee-91f5-41b7-bd81-920e12466be9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b73a14ee-91f5-41b7-bd81-920e12466be9\"},{\"properties\":{\"roleName\":\"DeID + Realtime Data User\",\"type\":\"BuiltInRole\",\"description\":\"Execute requests + against DeID realtime endpoint. This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthDataAIServices/DeidServices/Realtime/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-09-29T20:09:57.8649032Z\",\"updatedOn\":\"2023-09-29T20:09:57.8649032Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bb6577c4-ea0a-40b2-8962-ea18cb8ecd4e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bb6577c4-ea0a-40b2-8962-ea18cb8ecd4e\"},{\"properties\":{\"roleName\":\"Carbon + Optimization Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allow read + access to Azure Carbon Optimization data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Carbon/carbonEmissionReports/action\",\"Microsoft.Carbon/carbonEmissionReports/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-10-02T15:03:45.0991798Z\",\"updatedOn\":\"2025-02-18T16:16:34.2421489Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fa0d39e6-28e5-40cf-8521-1eb320653a4c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fa0d39e6-28e5-40cf-8521-1eb320653a4c\"},{\"properties\":{\"roleName\":\"Landing + Zone Management Owner\",\"type\":\"BuiltInRole\",\"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).\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Sovereign/landingZoneConfigurations/*\",\"Microsoft.Sovereign/landingZoneRegistrations/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-10-06T08:51:38.7872219Z\",\"updatedOn\":\"2023-10-06T08:51:38.7872219Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/38863829-c2a4-4f8d-b1d2-2e325973ebc7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"38863829-c2a4-4f8d-b1d2-2e325973ebc7\"},{\"properties\":{\"roleName\":\"Landing + Zone Management Reader\",\"type\":\"BuiltInRole\",\"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).\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Sovereign/landingZoneConfigurations/read\",\"Microsoft.Sovereign/landingZoneRegistrations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-10-09T15:06:52.9163525Z\",\"updatedOn\":\"2023-10-09T15:06:52.9163525Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8fe6e843-6d9e-417b-9073-106b048f50bb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8fe6e843-6d9e-417b-9073-106b048f50bb\"},{\"properties\":{\"roleName\":\"Azure + Stack HCI Device Management Role\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft.AzureStackHCI + Device Management Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureStackHCI/Clusters/*\",\"Microsoft.AzureStackHCI/EdgeDevices/*\",\"Microsoft.AzureStackHCI/DevicePools/*/read\",\"Microsoft.AzureStackHCI/EdgeMachines/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.HybridContainerService/register/action\",\"Microsoft.HybridContainerService/kubernetesVersions/read\",\"Microsoft.HybridContainerService/kubernetesVersions/write\",\"Microsoft.HybridContainerService/skus/read\",\"Microsoft.HybridContainerService/skus/write\",\"Microsoft.Authorization/roleassignments/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.AzureStackHCI/StorageContainers/Write\",\"Microsoft.AzureStackHCI/StorageContainers/Read\",\"Microsoft.AzureStackHCI/Register/Action\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\"Microsoft.KubernetesConfiguration/extensions/write\",\"Microsoft.KubernetesConfiguration/extensions/read\",\"Microsoft.KubernetesConfiguration/extensions/delete\",\"Microsoft.KubernetesConfiguration/extensions/operations/read\",\"Microsoft.KubernetesConfiguration/namespaces/read\",\"Microsoft.KubernetesConfiguration/operations/read\",\"Microsoft.ResourceConnector/appliances/read\",\"Microsoft.ResourceConnector/appliances/write\",\"Microsoft.ResourceConnector/appliances/delete\",\"Microsoft.ResourceConnector/locations/operationresults/read\",\"Microsoft.ResourceConnector/locations/operationsstatus/read\",\"Microsoft.ResourceConnector/appliances/listClusterUserCredential/action\",\"Microsoft.ResourceConnector/appliances/listKeys/action\",\"Microsoft.ResourceConnector/appliances/upgradeGraphs/read\",\"Microsoft.ResourceConnector/telemetryconfig/read\",\"Microsoft.ResourceConnector/operations/read\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.ExtendedLocation/customLocations/read\",\"Microsoft.ExtendedLocation/customLocations/write\",\"Microsoft.ExtendedLocation/customLocations/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-10-11T15:23:32.4893020Z\",\"updatedOn\":\"2025-02-12T16:18:26.4114893Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/865ae368-6a45-4bd1-8fbf-0d5151f56fc1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"865ae368-6a45-4bd1-8fbf-0d5151f56fc1\"},{\"properties\":{\"roleName\":\"Azure + Customer Lockbox Approver for Subscription\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/read\",\"Microsoft.CustomerLockbox/requests/UpdateApproval/action\",\"Microsoft.CustomerLockbox/requests/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/eventtypes/values/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-10-13T18:08:34.8008604Z\",\"updatedOn\":\"2024-08-09T19:11:41.6174510Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4dae6930-7baf-46f5-909e-0383bc931c46\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4dae6930-7baf-46f5-909e-0383bc931c46\"},{\"properties\":{\"roleName\":\"Azure + Resource Bridge Deployment Role\",\"type\":\"BuiltInRole\",\"description\":\"Azure + Resource Bridge Deployment Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleassignments/read\",\"Microsoft.AzureStackHCI/Register/Action\",\"Microsoft.ResourceConnector/register/action\",\"Microsoft.ResourceConnector/appliances/read\",\"Microsoft.ResourceConnector/appliances/write\",\"Microsoft.ResourceConnector/appliances/delete\",\"Microsoft.ResourceConnector/locations/operationresults/read\",\"Microsoft.ResourceConnector/locations/operationsstatus/read\",\"Microsoft.ResourceConnector/appliances/listClusterUserCredential/action\",\"Microsoft.ResourceConnector/appliances/listKeys/action\",\"Microsoft.ResourceConnector/appliances/upgradeGraphs/read\",\"Microsoft.ResourceConnector/telemetryconfig/read\",\"Microsoft.ResourceConnector/operations/read\",\"Microsoft.ExtendedLocation/register/action\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.ExtendedLocation/customLocations/read\",\"Microsoft.ExtendedLocation/customLocations/write\",\"Microsoft.ExtendedLocation/customLocations/delete\",\"Microsoft.HybridConnectivity/register/action\",\"Microsoft.Kubernetes/register/action\",\"Microsoft.KubernetesConfiguration/register/action\",\"Microsoft.KubernetesConfiguration/extensions/write\",\"Microsoft.KubernetesConfiguration/extensions/read\",\"Microsoft.KubernetesConfiguration/extensions/delete\",\"Microsoft.KubernetesConfiguration/extensions/operations/read\",\"Microsoft.KubernetesConfiguration/namespaces/read\",\"Microsoft.KubernetesConfiguration/operations/read\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\"Microsoft.HybridContainerService/register/action\",\"Microsoft.HybridContainerService/kubernetesVersions/read\",\"Microsoft.HybridContainerService/kubernetesVersions/write\",\"Microsoft.HybridContainerService/skus/read\",\"Microsoft.HybridContainerService/skus/write\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.AzureStackHCI/StorageContainers/Write\",\"Microsoft.AzureStackHCI/StorageContainers/Read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-10-17T15:25:28.4446210Z\",\"updatedOn\":\"2024-02-27T16:09:01.7449183Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7b1f81f9-4196-4058-8aae-762e593270df\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7b1f81f9-4196-4058-8aae-762e593270df\"},{\"properties\":{\"roleName\":\"Azure + Stack HCI VM Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants + permissions to perform all VM actions\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureStackHCI/VirtualMachines/*\",\"Microsoft.AzureStackHCI/virtualMachineInstances/*\",\"Microsoft.AzureStackHCI/NetworkInterfaces/*\",\"Microsoft.AzureStackHCI/VirtualHardDisks/*\",\"Microsoft.AzureStackHCI/VirtualNetworks/Read\",\"Microsoft.AzureStackHCI/VirtualNetworks/join/action\",\"Microsoft.AzureStackHCI/LogicalNetworks/Read\",\"Microsoft.AzureStackHCI/LogicalNetworks/join/action\",\"Microsoft.AzureStackHCI/GalleryImages/Read\",\"Microsoft.AzureStackHCI/GalleryImages/deploy/action\",\"Microsoft.AzureStackHCI/StorageContainers/Read\",\"Microsoft.AzureStackHCI/StorageContainers/deploy/action\",\"Microsoft.AzureStackHCI/MarketplaceGalleryImages/Read\",\"Microsoft.AzureStackHCI/MarketPlaceGalleryImages/deploy/action\",\"Microsoft.AzureStackHCI/Clusters/Read\",\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Read\",\"Microsoft.AzureStackHCI/NetworkSecurityGroups/Read\",\"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Read\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\"Microsoft.HybridCompute/machines/assessPatches/action\",\"Microsoft.HybridCompute/machines/installPatches/action\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/operations/read\",\"Microsoft.HybridCompute/locations/operationresults/read\",\"Microsoft.HybridCompute/locations/operationstatus/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\"Microsoft.HybridCompute/locations/updateCenterOperationResults/read\",\"Microsoft.HybridCompute/machines/hybridIdentityMetadata/read\",\"Microsoft.HybridCompute/osType/agentVersions/read\",\"Microsoft.HybridCompute/osType/agentVersions/latest/read\",\"Microsoft.HybridCompute/machines/runcommands/read\",\"Microsoft.HybridCompute/machines/runcommands/write\",\"Microsoft.HybridCompute/machines/runcommands/delete\",\"Microsoft.HybridCompute/machines/licenseProfiles/read\",\"Microsoft.HybridCompute/machines/licenseProfiles/write\",\"Microsoft.HybridCompute/machines/licenseProfiles/delete\",\"Microsoft.HybridCompute/licenses/read\",\"Microsoft.HybridCompute/licenses/write\",\"Microsoft.HybridCompute/licenses/delete\",\"Microsoft.ExtendedLocation/customLocations/Read\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.KubernetesConfiguration/extensions/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-10-23T15:12:07.1298324Z\",\"updatedOn\":\"2024-06-24T15:12:45.8993374Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/874d1c73-6003-4e60-a13a-cb31ea190a85\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"874d1c73-6003-4e60-a13a-cb31ea190a85\"},{\"properties\":{\"roleName\":\"Azure + Stack HCI VM Reader\",\"type\":\"BuiltInRole\",\"description\":\"Grants permissions + to view VMs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureStackHCI/VirtualMachines/Read\",\"Microsoft.AzureStackHCI/virtualMachineInstances/Read\",\"Microsoft.AzureStackHCI/VirtualMachines/Extensions/Read\",\"Microsoft.AzureStackHCI/VirtualNetworks/Read\",\"Microsoft.AzureStackHCI/LogicalNetworks/Read\",\"Microsoft.AzureStackHCI/NetworkInterfaces/Read\",\"Microsoft.AzureStackHCI/VirtualHardDisks/Read\",\"Microsoft.AzureStackHCI/StorageContainers/Read\",\"Microsoft.AzureStackHCI/GalleryImages/Read\",\"Microsoft.AzureStackHCI/MarketplaceGalleryImages/Read\",\"Microsoft.AzureStackHCI/NetworkSecurityGroups/Read\",\"Microsoft.AzureStackHCI/NetworkSecurityGroups/SecurityRules/Read\",\"Microsoft.HybridCompute/licenses/read\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/licenseProfiles/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/read\",\"Microsoft.HybridCompute/machines/patchAssessmentResults/softwarePatches/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/read\",\"Microsoft.HybridCompute/machines/patchInstallationResults/softwarePatches/read\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/privateLinkScopes/networkSecurityPerimeterConfigurations/read\",\"Microsoft.HybridCompute/privateLinkScopes/privateEndpointConnections/read\",\"Microsoft.HybridCompute/privateLinkScopes/read\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-10-23T15:12:07.1288274Z\",\"updatedOn\":\"2024-06-24T15:12:45.8993374Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4b3fe76c-f777-4d24-a2d7-b027b0f7b273\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4b3fe76c-f777-4d24-a2d7-b027b0f7b273\"},{\"properties\":{\"roleName\":\"Azure + AI Developer\",\"type\":\"BuiltInRole\",\"description\":\"Can perform all + actions within an Azure AI resource besides managing the resource itself.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/*/read\",\"Microsoft.MachineLearningServices/workspaces/*/action\",\"Microsoft.MachineLearningServices/workspaces/*/delete\",\"Microsoft.MachineLearningServices/workspaces/*/write\",\"Microsoft.MachineLearningServices/locations/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[\"Microsoft.MachineLearningServices/workspaces/delete\",\"Microsoft.MachineLearningServices/workspaces/write\",\"Microsoft.MachineLearningServices/workspaces/listKeys/action\",\"Microsoft.MachineLearningServices/workspaces/hubs/write\",\"Microsoft.MachineLearningServices/workspaces/hubs/delete\",\"Microsoft.MachineLearningServices/workspaces/featurestores/write\",\"Microsoft.MachineLearningServices/workspaces/featurestores/delete\",\"Microsoft.MachineLearningServices/workspaces/evaluations/results/labels/read\",\"Microsoft.MachineLearningServices/workspaces/evaluations/results/reasonings/read\",\"Microsoft.MachineLearningServices/workspaces/simulations/results/images/read\"],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/OpenAI/*\",\"Microsoft.CognitiveServices/accounts/SpeechServices/*\",\"Microsoft.CognitiveServices/accounts/ContentSafety/*\"],\"notDataActions\":[]}],\"createdOn\":\"2023-10-23T15:12:07.1288274Z\",\"updatedOn\":\"2024-12-18T16:29:45.1510083Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/64702f94-c441-49e6-a78b-ef80e0188fee\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"64702f94-c441-49e6-a78b-ef80e0188fee\"},{\"properties\":{\"roleName\":\"Deployment + Environments Reader\",\"type\":\"BuiltInRole\",\"description\":\"Provides + read access to environment resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DevCenter/projects/read\",\"Microsoft.DevCenter/projects/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[\"Microsoft.DevCenter/projects/pools/read\",\"Microsoft.DevCenter/projects/pools/schedules/read\"],\"dataActions\":[\"Microsoft.DevCenter/projects/users/environments/adminRead/action\",\"Microsoft.DevCenter/projects/users/environments/adminActionRead/action\",\"Microsoft.DevCenter/projects/users/environments/adminOutputsRead/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-10-26T22:28:07.1033006Z\",\"updatedOn\":\"2023-10-26T22:28:07.1033006Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/eb960402-bf75-4cc3-8d68-35b34f960f72\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"eb960402-bf75-4cc3-8d68-35b34f960f72\"},{\"properties\":{\"roleName\":\"EventGrid + Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows send + and receive access to event grid events.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/eventSubscriptions/read\",\"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.EventGrid/topics/read\",\"Microsoft.EventGrid/domains/read\",\"Microsoft.EventGrid/partnerNamespaces/read\",\"Microsoft.EventGrid/namespaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventGrid/events/send/action\",\"Microsoft.EventGrid/events/receive/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-10-30T15:07:29.5851627Z\",\"updatedOn\":\"2023-10-30T15:07:29.5851627Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1d8c3fe3-8864-474b-8749-01e3783e8157\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1d8c3fe3-8864-474b-8749-01e3783e8157\"},{\"properties\":{\"roleName\":\"EventGrid + Data Receiver\",\"type\":\"BuiltInRole\",\"description\":\"Allows receive + access to event grid events.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/eventSubscriptions/read\",\"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.EventGrid/namespaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventGrid/events/receive/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-10-30T15:07:29.5831630Z\",\"updatedOn\":\"2023-10-30T15:07:29.5831630Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/78cbd9e7-9798-4e2e-9b5a-547d9ebb31fb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"78cbd9e7-9798-4e2e-9b5a-547d9ebb31fb\"},{\"properties\":{\"roleName\":\"Azure + AI Inference Deployment Operator\",\"type\":\"BuiltInRole\",\"description\":\"Can + perform all actions required to create a resource deployment within a resource + group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/AutoscaleSettings/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-10-30T18:23:40.7944180Z\",\"updatedOn\":\"2024-03-18T15:10:34.3892458Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3afb7f49-54cb-416e-8c09-6dc049efa503\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3afb7f49-54cb-416e-8c09-6dc049efa503\"},{\"properties\":{\"roleName\":\"Connected + Cluster Managed Identity CheckAccess Reader\",\"type\":\"BuiltInRole\",\"description\":\"Built-in + role that allows a Connected Cluster managed identity to call the checkAccess + API\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-10-30T19:24:08.9641127Z\",\"updatedOn\":\"2023-11-08T16:32:10.4885906Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/65a14201-8f6c-4c28-bec4-12619c5a9aaa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"65a14201-8f6c-4c28-bec4-12619c5a9aaa\"},{\"properties\":{\"roleName\":\"Advisor + Reviews Reader\",\"type\":\"BuiltInRole\",\"description\":\"View reviews for + a workload and recommendations linked to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Advisor/resiliencyReviews/read\",\"Microsoft.Advisor/triageRecommendations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-10-31T15:13:36.6897050Z\",\"updatedOn\":\"2023-10-31T15:13:36.6897050Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c64499e0-74c3-47ad-921c-13865957895c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c64499e0-74c3-47ad-921c-13865957895c\"},{\"properties\":{\"roleName\":\"Advisor + Reviews Contributor\",\"type\":\"BuiltInRole\",\"description\":\"View reviews + for a workload and triage recommendations linked to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Advisor/resiliencyReviews/read\",\"Microsoft.Advisor/triageRecommendations/read\",\"Microsoft.Advisor/triageRecommendations/approve/action\",\"Microsoft.Advisor/triageRecommendations/reject/action\",\"Microsoft.Advisor/triageRecommendations/reset/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-10-31T15:13:36.6897050Z\",\"updatedOn\":\"2023-10-31T15:13:36.6897050Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8aac15f0-d885-4138-8afa-bfb5872f7d13\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8aac15f0-d885-4138-8afa-bfb5872f7d13\"},{\"properties\":{\"roleName\":\"AgFood + Platform Dataset Admin\",\"type\":\"BuiltInRole\",\"description\":\"Provides + access to Dataset APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/datasets/*\",\"Microsoft.AgFoodPlatform/farmBeats/datasetRecords/*\"],\"notDataActions\":[]}],\"createdOn\":\"2023-11-07T16:18:43.4932699Z\",\"updatedOn\":\"2023-11-07T16:18:43.4932699Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a8d4b70f-0fb9-4f72-b267-b87b2f990aec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a8d4b70f-0fb9-4f72-b267-b87b2f990aec\"},{\"properties\":{\"roleName\":\"Defender + for Storage Scanner Operator\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\",\"Microsoft.Authorization/roleAssignments/delete\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\",\"Microsoft.Security/defenderforstoragesettings/read\",\"Microsoft.Security/defenderforstoragesettings/write\",\"Microsoft.Security/advancedThreatProtectionSettings/read\",\"Microsoft.Security/advancedThreatProtectionSettings/write\",\"Microsoft.Security/datascanners/read\",\"Microsoft.Security/datascanners/write\",\"Microsoft.Security/dataScanners/delete\",\"Microsoft.Storage/storageAccounts/write\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.EventGrid/topics/read\",\"Microsoft.EventGrid/eventSubscriptions/read\",\"Microsoft.EventGrid/eventSubscriptions/write\",\"Microsoft.EventGrid/eventSubscriptions/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"2.0\",\"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}))\"}],\"createdOn\":\"2023-11-13T16:11:26.3567622Z\",\"updatedOn\":\"2024-07-01T15:03:42.5850186Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0f641de8-0b88-4198-bdef-bd8b45ceba96\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0f641de8-0b88-4198-bdef-bd8b45ceba96\"},{\"properties\":{\"roleName\":\"Azure + Front Door Profile Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can + view AFD standard and premium profiles and their endpoints, but can't make + changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Cdn/edgenodes/read\",\"Microsoft.Cdn/operationresults/*\",\"Microsoft.Cdn/profiles/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Cdn/operationresults/profileresults/afdendpointresults/CheckCustomDomainDNSMappingStatus/action\",\"Microsoft.Cdn/profiles/queryloganalyticsmetrics/action\",\"Microsoft.Cdn/profiles/queryloganalyticsrankings/action\",\"Microsoft.Cdn/profiles/querywafloganalyticsmetrics/action\",\"Microsoft.Cdn/profiles/querywafloganalyticsrankings/action\",\"Microsoft.Cdn/profiles/afdendpoints/CheckCustomDomainDNSMappingStatus/action\",\"Microsoft.Cdn/profiles/Usages/action\",\"Microsoft.Cdn/profiles/afdendpoints/Usages/action\",\"Microsoft.Cdn/profiles/origingroups/Usages/action\",\"Microsoft.Cdn/profiles/rulesets/Usages/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-11-16T16:40:45.3765181Z\",\"updatedOn\":\"2024-01-29T16:00:37.3536665Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/662802e2-50f6-46b0-aed2-e834bacc6d12\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"662802e2-50f6-46b0-aed2-e834bacc6d12\"},{\"properties\":{\"roleName\":\"Enclave + Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Enclave Reader Role + to access the resources of Microsoft.Mission stored with RPSAAS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Mission/Operations/read\",\"Microsoft.Mission/catalogs/read\",\"Microsoft.Mission/catalogs/write\",\"Microsoft.Mission/catalogs/delete\",\"Microsoft.Mission/communities/read\",\"Microsoft.Mission/internalConnections/read\",\"Microsoft.Mission/virtualEnclaves/read\",\"Microsoft.Mission/virtualEnclaves/endpoints/read\",\"Microsoft.Mission/virtualEnclaves/workloads/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Features/features/read\",\"Microsoft.Mission/communities/communityEndpoints/read\",\"Microsoft.Mission/communities/transitHubs/read\",\"Microsoft.Mission/enclaveConnections/read\",\"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\"Microsoft.Mission/approvals/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-11-29T16:10:05.7109858Z\",\"updatedOn\":\"2024-09-17T15:06:28.1478182Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/86fede04-b259-4277-8c3e-e26b9865abd8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"86fede04-b259-4277-8c3e-e26b9865abd8\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service Hybrid Cluster Admin Role\",\"type\":\"BuiltInRole\",\"description\":\"List + cluster admin credential action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\"Microsoft.HybridContainerService/provisionedClusterInstances/listAdminKubeconfig/action\",\"Microsoft.Kubernetes/connectedClusters/Read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-12-01T16:27:57.0085632Z\",\"updatedOn\":\"2023-12-01T16:27:57.0085632Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b5092dac-c796-4349-8681-1a322a31c3f9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b5092dac-c796-4349-8681-1a322a31c3f9\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service Hybrid Cluster User Role\",\"type\":\"BuiltInRole\",\"description\":\"List + cluster user credential action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\"Microsoft.HybridContainerService/provisionedClusterInstances/listUserKubeconfig/action\",\"Microsoft.Kubernetes/connectedClusters/Read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-12-01T16:27:57.0235650Z\",\"updatedOn\":\"2023-12-01T16:27:57.0235650Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fc3f91a1-40bf-4439-8c46-45edbd83563a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fc3f91a1-40bf-4439-8c46-45edbd83563a\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service Hybrid Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants + access to read and write Azure Kubernetes Services hybrid clusters\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridContainerService/Locations/operationStatuses/read\",\"Microsoft.HybridContainerService/Operations/read\",\"Microsoft.HybridContainerService/kubernetesVersions/read\",\"Microsoft.HybridContainerService/kubernetesVersions/write\",\"Microsoft.HybridContainerService/kubernetesVersions/delete\",\"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\"Microsoft.HybridContainerService/provisionedClusterInstances/write\",\"Microsoft.HybridContainerService/provisionedClusterInstances/delete\",\"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/read\",\"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/write\",\"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/delete\",\"Microsoft.HybridContainerService/provisionedClusterInstances/upgradeProfiles/read\",\"Microsoft.HybridContainerService/skus/read\",\"Microsoft.HybridContainerService/skus/write\",\"Microsoft.HybridContainerService/skus/delete\",\"Microsoft.HybridContainerService/virtualNetworks/read\",\"Microsoft.HybridContainerService/virtualNetworks/write\",\"Microsoft.HybridContainerService/virtualNetworks/delete\",\"Microsoft.Kubernetes/connectedClusters/Read\",\"Microsoft.Kubernetes/connectedClusters/Write\",\"Microsoft.Kubernetes/connectedClusters/Delete\",\"Microsoft.Kubernetes/connectedClusters/listClusterUserCredential/action\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.ExtendedLocation/customLocations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-12-01T16:27:57.0645659Z\",\"updatedOn\":\"2023-12-01T16:27:57.0645659Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e7037d40-443a-4434-a3fb-8cd202011e1d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e7037d40-443a-4434-a3fb-8cd202011e1d\"},{\"properties\":{\"roleName\":\"Enclave + Owner Role\",\"type\":\"BuiltInRole\",\"description\":\"Enclave Owner Role + to access the resources of Microsoft.Mission stored with RPSAAS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Mission/Locations/OperationStatuses/read\",\"Microsoft.Mission/Locations/OperationStatuses/write\",\"Microsoft.Mission/Operations/read\",\"Microsoft.Mission/catalogs/read\",\"Microsoft.Mission/catalogs/write\",\"Microsoft.Mission/catalogs/delete\",\"Microsoft.Mission/internalConnections/read\",\"Microsoft.Mission/internalConnections/write\",\"Microsoft.Mission/internalConnections/delete\",\"Microsoft.Mission/virtualEnclaves/read\",\"Microsoft.Mission/virtualEnclaves/write\",\"Microsoft.Mission/virtualEnclaves/delete\",\"Microsoft.Mission/virtualEnclaves/workloads/read\",\"Microsoft.Mission/virtualEnclaves/workloads/write\",\"Microsoft.Mission/virtualEnclaves/workloads/delete\",\"Microsoft.Mission/communities/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Features/features/read\",\"Microsoft.Mission/communities/communityEndpoints/read\",\"Microsoft.Mission/communities/transitHubs/read\",\"Microsoft.Mission/enclaveConnections/read\",\"Microsoft.Mission/enclaveConnections/write\",\"Microsoft.Mission/enclaveConnections/delete\",\"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/write\",\"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/delete\",\"Microsoft.Mission/approvals/read\",\"Microsoft.Mission/approvals/write\",\"Microsoft.Mission/approvals/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-12-06T16:25:52.5263040Z\",\"updatedOn\":\"2024-09-17T15:06:28.1488186Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3d5f3eff-eb94-473d-91e3-7aac74d6c0bb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3d5f3eff-eb94-473d-91e3-7aac74d6c0bb\"},{\"properties\":{\"roleName\":\"Community + Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Community Reader + Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Mission/Locations/OperationStatuses/read\",\"Microsoft.Mission/Operations/read\",\"Microsoft.Mission/catalogs/read\",\"Microsoft.Mission/communities/read\",\"Microsoft.Mission/internalConnections/read\",\"Microsoft.Mission/externalConnections/read\",\"Microsoft.Mission/virtualEnclaves/read\",\"Microsoft.Mission/virtualEnclaves/endpoints/read\",\"Microsoft.Mission/virtualEnclaves/workloads/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Features/features/read\",\"Microsoft.Mission/communities/communityEndpoints/read\",\"Microsoft.Mission/communities/transitHubs/read\",\"Microsoft.Mission/enclaveConnections/read\",\"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\"Microsoft.Mission/approvals/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-12-11T16:01:29.0551066Z\",\"updatedOn\":\"2024-09-17T15:06:28.1488186Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e6aadb6b-e64f-41c0-9392-d2bba3bc3ebc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e6aadb6b-e64f-41c0-9392-d2bba3bc3ebc\"},{\"properties\":{\"roleName\":\"Enclave + Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Enclave Contributor + Role to access the resources of Microsoft.Mission stored with RPSAAS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Mission/register/action\",\"Microsoft.Mission/unregister/action\",\"Microsoft.Mission/Locations/OperationStatuses/read\",\"Microsoft.Mission/Locations/OperationStatuses/write\",\"Microsoft.Mission/Operations/read\",\"Microsoft.Mission/catalogs/read\",\"Microsoft.Mission/catalogs/write\",\"Microsoft.Mission/communities/read\",\"Microsoft.Mission/internalConnections/read\",\"Microsoft.Mission/internalConnections/write\",\"Microsoft.Mission/virtualEnclaves/read\",\"Microsoft.Mission/virtualEnclaves/write\",\"Microsoft.Mission/virtualEnclaves/endpoints/read\",\"Microsoft.Mission/virtualEnclaves/endpoints/write\",\"Microsoft.Mission/virtualEnclaves/workloads/read\",\"Microsoft.Mission/virtualEnclaves/workloads/write\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Features/features/read\",\"Microsoft.Mission/communities/communityEndpoints/read\",\"Microsoft.Mission/communities/transitHubs/read\",\"Microsoft.Mission/enclaveConnections/read\",\"Microsoft.Mission/enclaveConnections/write\",\"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/write\",\"Microsoft.Mission/approvals/read\",\"Microsoft.Mission/approvals/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-12-11T16:01:29.1699004Z\",\"updatedOn\":\"2024-09-17T15:06:28.1478182Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/19feefae-eacc-4106-81fd-ac34c0671f14\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"19feefae-eacc-4106-81fd-ac34c0671f14\"},{\"properties\":{\"roleName\":\"Operator + Nexus Key Vault Writer Service Role (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"(Preview) + Provides Azure Operator Nexus services the ability to write to a Key Vault. + This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.KeyVault/vaults/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/secrets/setSecret/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-12-12T16:08:00.7618939Z\",\"updatedOn\":\"2024-08-15T19:26:12.0732073Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/44f0a1a8-6fea-4b35-980a-8ff50c487c97\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"44f0a1a8-6fea-4b35-980a-8ff50c487c97\"},{\"properties\":{\"roleName\":\"Storage + Account Encryption Scope Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Allows + management of Encryption Scopes on a Storage Account\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/encryptionScopes/read\",\"Microsoft.Storage/storageAccounts/encryptionScopes/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-12-12T16:08:00.7588900Z\",\"updatedOn\":\"2024-01-11T19:07:46.4940261Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a316ed6d-1efe-48ac-ac08-f7995a9c26fb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a316ed6d-1efe-48ac-ac08-f7995a9c26fb\"},{\"properties\":{\"roleName\":\"Key + Vault Crypto Service Release User\",\"type\":\"BuiltInRole\",\"description\":\"Release + keys. Only works for key vaults that use the 'Azure role-based access control' + permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/keys/release/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-12-15T22:59:10.4382726Z\",\"updatedOn\":\"2023-12-15T22:59:10.4382726Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/08bbd89e-9f13-488c-ac41-acfcb10c90ab\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"08bbd89e-9f13-488c-ac41-acfcb10c90ab\"},{\"properties\":{\"roleName\":\"Kubernetes + Runtime Storage Class Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Read, + write, and delete Kubernetes Runtime storage classes in an Arc connected Kubernetes + cluster\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.KubernetesRuntime/storageClasses/read\",\"Microsoft.KubernetesRuntime/storageClasses/write\",\"Microsoft.KubernetesRuntime/storageClasses/delete\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-12-18T16:14:19.6296161Z\",\"updatedOn\":\"2024-08-20T15:22:00.2579913Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0cd9749a-3aaf-4ae5-8803-bd217705bf3b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0cd9749a-3aaf-4ae5-8803-bd217705bf3b\"},{\"properties\":{\"roleName\":\"Azure + Programmable Connectivity Gateway User\",\"type\":\"BuiltInRole\",\"description\":\"Allows + access to all Gateway dataplane APIs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-01-08T16:07:20.7530393Z\",\"updatedOn\":\"2024-01-08T16:07:20.7530393Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/609c0c20-e0a0-4a71-b99f-e7e755ac493d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"609c0c20-e0a0-4a71-b99f-e7e755ac493d\"},{\"properties\":{\"roleName\":\"Key + Vault Certificate User\",\"type\":\"BuiltInRole\",\"description\":\"Read certificate + contents. Only works for key vaults that use the 'Azure role-based access + control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/certificates/read\",\"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\"Microsoft.KeyVault/vaults/secrets/readMetadata/action\",\"Microsoft.KeyVault/vaults/keys/read\"],\"notDataActions\":[]}],\"createdOn\":\"2024-01-11T16:37:07.6107024Z\",\"updatedOn\":\"2024-01-11T16:37:07.6107024Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/db79e9a7-68ee-4b58-9aeb-b90e7c24fcba\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"db79e9a7-68ee-4b58-9aeb-b90e7c24fcba\"},{\"properties\":{\"roleName\":\"Azure + Spring Apps Spring Cloud Gateway Log Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Read + real-time logs for Spring Cloud Gateway in Azure Spring Apps\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AppPlatform/Spring/read\",\"Microsoft.AppPlatform/Spring/gateways/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/SpringCloudGateway/logstream/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-01-12T08:25:35.9674075Z\",\"updatedOn\":\"2024-01-12T08:25:35.9674075Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4301dc2a-25a9-44b0-ae63-3636cf7f2bd2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4301dc2a-25a9-44b0-ae63-3636cf7f2bd2\"},{\"properties\":{\"roleName\":\"Azure + Spring Apps Managed Components Log Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Read + real-time logs for all managed components in Azure Spring Apps\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/managedComponents/logstream/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-01-12T08:25:35.9674075Z\",\"updatedOn\":\"2024-01-12T08:25:35.9674075Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/52fd16bd-6ed5-46af-9c40-29cbd7952a29\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"52fd16bd-6ed5-46af-9c40-29cbd7952a29\"},{\"properties\":{\"roleName\":\"Azure + Spring Apps Application Configuration Service Log Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Read + real-time logs for Application Configuration Service in Azure Spring Apps\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AppPlatform/Spring/read\",\"Microsoft.AppPlatform/Spring/configurationServices/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/ApplicationConfigurationService/logstream/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-01-12T08:25:35.9674075Z\",\"updatedOn\":\"2024-01-12T08:25:35.9674075Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6593e776-2a30-40f9-8a32-4fe28b77655d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6593e776-2a30-40f9-8a32-4fe28b77655d\"},{\"properties\":{\"roleName\":\"Azure + Edge On-Site Deployment Engineer\",\"type\":\"BuiltInRole\",\"description\":\"Grants + you access to take actions as an on-site person to assist in the provisioning + of an edge device\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EdgeOrder/orderItems/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-01-12T11:13:31.4650719Z\",\"updatedOn\":\"2024-09-02T15:07:07.8729009Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/207bcc4b-86a6-4487-9141-d6c1f4c238aa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"207bcc4b-86a6-4487-9141-d6c1f4c238aa\"},{\"properties\":{\"roleName\":\"Azure + API Center Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for access to Azure API Center data plane read operations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.ApiCenter/services/*/read\",\"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/exportSpecification/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-01-12T20:39:09.6504931Z\",\"updatedOn\":\"2024-04-30T15:20:16.9299516Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7244dfb-f447-457d-b2ba-3999044d1706\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c7244dfb-f447-457d-b2ba-3999044d1706\"},{\"properties\":{\"roleName\":\"Azure + impact-insight reader\",\"type\":\"BuiltInRole\",\"description\":\"built-in + role for azure impact-insight read access\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Impact/WorkloadImpacts/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-01-22T16:09:33.1745465Z\",\"updatedOn\":\"2024-01-22T16:09:33.1745465Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dfb2f09d-25f8-4558-8986-497084006d7a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dfb2f09d-25f8-4558-8986-497084006d7a\"},{\"properties\":{\"roleName\":\"Defender + Kubernetes Agent Operator\",\"type\":\"BuiltInRole\",\"description\":\"Grants + Microsoft Defender for Cloud permissions to provision the Kubernetes defender + security agent\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.KubernetesConfiguration/extensions/write\",\"Microsoft.KubernetesConfiguration/extensions/read\",\"Microsoft.KubernetesConfiguration/extensions/delete\",\"Microsoft.KubernetesConfiguration/extensions/operations/read\",\"Microsoft.Kubernetes/connectedClusters/Write\",\"Microsoft.Kubernetes/connectedClusters/read\",\"Microsoft.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/read\",\"Microsoft.OperationalInsights/workspaces/listKeys/action\",\"Microsoft.OperationalInsights/workspaces/sharedkeys/action\",\"Microsoft.Kubernetes/register/action\",\"Microsoft.KubernetesConfiguration/register/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-01-30T16:11:35.3297751Z\",\"updatedOn\":\"2024-04-09T15:14:10.7703257Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8bb6f106-b146-4ee6-a3f9-b9c5a96e0ae5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8bb6f106-b146-4ee6-a3f9-b9c5a96e0ae5\"},{\"properties\":{\"roleName\":\"Azure + Red Hat OpenShift Disk Storage Operator\",\"type\":\"BuiltInRole\",\"description\":\"Install + Container Storage Interface (CSI) drivers that enable your cluster to use + Azure Disks. Set OpenShift cluster-wide storage defaults to ensure a default + storageclass exists for clusters.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/write\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\"Microsoft.Compute/virtualMachineScaleSets/read\",\"Microsoft.Compute/snapshots/write\",\"Microsoft.Compute/snapshots/read\",\"Microsoft.Compute/snapshots/delete\",\"Microsoft.Compute/locations/operations/read\",\"Microsoft.Compute/locations/DiskOperations/read\",\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/delete\",\"Microsoft.Compute/diskEncryptionSets/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-01-31T16:20:01.5179336Z\",\"updatedOn\":\"2025-02-17T16:06:31.7699473Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5b7237c5-45e1-49d6-bc18-a1f62f400748\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5b7237c5-45e1-49d6-bc18-a1f62f400748\"},{\"properties\":{\"roleName\":\"Azure + Red Hat OpenShift Service Operator\",\"type\":\"BuiltInRole\",\"description\":\"Maintain + machine health, network configuration, monitoring, and other features that + are specific to an OpenShift cluster's continued functionality as a managed + service.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/natGateways/join/action\",\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Storage/storageAccounts/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-01-31T16:20:01.5179336Z\",\"updatedOn\":\"2025-02-17T16:06:31.7669469Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4436bae4-7702-4c84-919b-c4069ff25ee2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4436bae4-7702-4c84-919b-c4069ff25ee2\"},{\"properties\":{\"roleName\":\"Azure + Red Hat OpenShift File Storage Operator\",\"type\":\"BuiltInRole\",\"description\":\"Install + Container Storage Interface (CSI) drivers that enable your cluster to use + Azure Files. Set OpenShift cluster-wide storage defaults to ensure a default + storageclass exists for clusters.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/delete\",\"Microsoft.Storage/storageAccounts/fileServices/read\",\"Microsoft.Storage/storageAccounts/fileServices/shares/delete\",\"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\"Microsoft.Storage/storageAccounts/fileServices/shares/write\",\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/write\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Network/natGateways/join/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-01-31T16:20:01.5229316Z\",\"updatedOn\":\"2025-03-12T15:15:42.7340913Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0d7aedc0-15fd-4a67-a412-efad370c947e\"},{\"properties\":{\"roleName\":\"Azure + Red Hat OpenShift Image Registry Operator\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/write\",\"Microsoft.Storage/storageAccounts/delete\",\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Resources/tags/write\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/move/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-01-31T16:20:01.5089317Z\",\"updatedOn\":\"2025-03-24T15:12:43.4930001Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8b32b316-c2f5-4ddf-b05b-83dacd2d08b5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8b32b316-c2f5-4ddf-b05b-83dacd2d08b5\"},{\"properties\":{\"roleName\":\"Azure + Red Hat OpenShift Network Operator\",\"type\":\"BuiltInRole\",\"description\":\"Install + and upgrade the networking components on an OpenShift cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Compute/virtualMachines/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-01-31T16:20:01.5249320Z\",\"updatedOn\":\"2025-02-17T16:06:31.7709494Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/be7a6435-15ae-4171-8f30-4a343eff9e8f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"be7a6435-15ae-4171-8f30-4a343eff9e8f\"},{\"properties\":{\"roleName\":\"Azure + Red Hat OpenShift Cloud Controller Manager\",\"type\":\"BuiltInRole\",\"description\":\"Manage + and update the cloud controller manager deployed on top of OpenShift.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/write\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/write\",\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/publicIPAddresses/write\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/publicIPPrefixes/join/action\",\"Microsoft.Network/applicationSecurityGroups/joinNetworkSecurityRule/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-01-31T16:20:01.5239321Z\",\"updatedOn\":\"2025-03-12T15:15:42.7340913Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a1f96423-95ce-4224-ab27-4e3dc72facd4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a1f96423-95ce-4224-ab27-4e3dc72facd4\"},{\"properties\":{\"roleName\":\"Azure + Red Hat OpenShift Machine API Operator\",\"type\":\"BuiltInRole\",\"description\":\"Manage + the lifecycle of specific-purpose custom resource definitions (CRD), controllers, + and Azure RBAC objects that extend the Kubernetes API to declares the desired + state of machines in a cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/availabilitySets/delete\",\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/availabilitySets/write\",\"Microsoft.Compute/diskEncryptionSets/read\",\"Microsoft.Compute/disks/delete\",\"Microsoft.Compute/galleries/images/versions/read\",\"Microsoft.Compute/skus/read\",\"Microsoft.Compute/virtualMachines/delete\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/capacityReservationGroups/deploy/action\",\"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\"Microsoft.Network/applicationSecurityGroups/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/write\",\"Microsoft.Network/networkInterfaces/delete\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/networkInterfaces/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/write\",\"Microsoft.Network/publicIPAddresses/delete\",\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/publicIPAddresses/write\",\"Microsoft.Network/routeTables/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/applicationSecurityGroups/joinNetworkSecurityRule/action\",\"Microsoft.Network/loadBalancers/frontendIPConfigurations/join/action\",\"Microsoft.Network/loadBalancers/inboundNATRules/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-01-31T16:20:01.5249320Z\",\"updatedOn\":\"2025-03-21T13:51:48.8357398Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0358943c-7e01-48ba-8889-02cc51d78637\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0358943c-7e01-48ba-8889-02cc51d78637\"},{\"properties\":{\"roleName\":\"Azure + Red Hat OpenShift Cluster Ingress Operator\",\"type\":\"BuiltInRole\",\"description\":\"Manage + and configure the OpenShift router.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/dnsZones/A/delete\",\"Microsoft.Network/dnsZones/A/write\",\"Microsoft.Network/privateDnsZones/A/delete\",\"Microsoft.Network/privateDnsZones/A/write\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-01-31T16:20:02.1193285Z\",\"updatedOn\":\"2025-02-17T16:06:31.7669469Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0336e1d3-7a87-462b-b6db-342b63f7802c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0336e1d3-7a87-462b-b6db-342b63f7802c\"},{\"properties\":{\"roleName\":\"Azure + Sphere Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows user read + and write access to Azure Sphere resources and RBAC configuration, includes + an ABAC condition to constrain role assignments.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureSphere/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\",\"Microsoft.Insights/DiagnosticSettings/*\",\"Microsoft.Insights/DiagnosticSettingsCategories/Read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"2.0\",\"condition\":\"@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] + ForAnyOfAnyValues:GuidEquals{8b9dfcab4b774632a6df94bd07820648,c8ae62795a0b4cb2b3f0d4d62845742c,6d994134994b4a599974f479f0b227fb,5a382001fe3641ffbba48bf06bd54da9,749f88d5cbae40b8bcfce573ddc772fa,43d0d8ad25c7471493378ba259a9fe05}\"},{\"actions\":[\"Microsoft.Authorization/roleAssignments/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"2.0\",\"condition\":\"@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] + ForAnyOfAnyValues:GuidEquals{8b9dfcab4b774632a6df94bd07820648,c8ae62795a0b4cb2b3f0d4d62845742c,6d994134994b4a599974f479f0b227fb,5a382001fe3641ffbba48bf06bd54da9,749f88d5cbae40b8bcfce573ddc772fa,43d0d8ad25c7471493378ba259a9fe05}\"}],\"createdOn\":\"2024-02-02T23:44:55.2967178Z\",\"updatedOn\":\"2024-03-13T15:20:21.9497129Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5a382001-fe36-41ff-bba4-8bf06bd54da9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5a382001-fe36-41ff-bba4-8bf06bd54da9\"},{\"properties\":{\"roleName\":\"GroupQuota + Request Operator\",\"type\":\"BuiltInRole\",\"description\":\"Read and create + GroupQuota requests, get GroupQuota request status, and get groupQuotaLimits.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"MICROSOFT.QUOTA/QUOTAS/WRITE\",\"MICROSOFT.QUOTA/QUOTAS/READ\",\"MICROSOFT.QUOTA/USAGES/READ\",\"MICROSOFT.QUOTA/QUOTAREQUESTS/READ\",\"MICROSOFT.QUOTA/REGISTER/ACTION\",\"Microsoft.Quota/GROUPQUOTAS/*/READ\",\"Microsoft.Quota/GROUPQUOTAS/*/WRITE\",\"Microsoft.Quota/GROUPQUOTAS/*/DELETE\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-02-12T16:11:24.3956386Z\",\"updatedOn\":\"2025-02-05T16:24:28.8596243Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e2217c0e-04bb-4724-9580-91cf9871bc01\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e2217c0e-04bb-4724-9580-91cf9871bc01\"},{\"properties\":{\"roleName\":\"GroupQuota + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read GroupQuota requests, + get GroupQuota request status, and get groupQuotaLimits.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"MICROSOFT.QUOTA/QUOTAS/READ\",\"MICROSOFT.QUOTA/USAGES/READ\",\"MICROSOFT.QUOTA/QUOTAREQUESTS/READ\",\"MICROSOFT.QUOTA/REGISTER/ACTION\",\"Microsoft.Quota/GROUPQUOTAS/READ\",\"Microsoft.Quota/GROUPQUOTAS/subscriptions/READ\",\"Microsoft.Quota/GROUPQUOTAS/groupQuotaLimits/READ\",\"Microsoft.Quota/GROUPQUOTAS/quotaAllocations/READ\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-02-12T16:11:24.3956386Z\",\"updatedOn\":\"2024-02-12T16:11:24.3956386Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d0f495dc-44ef-4140-aeb0-b89110e6a7c1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d0f495dc-44ef-4140-aeb0-b89110e6a7c1\"},{\"properties\":{\"roleName\":\"Bayer + Ag Powered Services Smart Boundary Solution User Role\",\"type\":\"BuiltInRole\",\"description\":\"Provide + access to Smart Boundary Solution by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-02-19T16:01:01.7948885Z\",\"updatedOn\":\"2024-05-29T15:22:21.4343125Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/539283cd-c185-4a9a-9503-d35217a1db7b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"539283cd-c185-4a9a-9503-d35217a1db7b\"},{\"properties\":{\"roleName\":\"Defender + CSPM Storage Scanner Operator\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/write\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\",\"Microsoft.Security/datascanners/read\",\"Microsoft.Security/datascanners/write\",\"Microsoft.Security/dataScanners/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"2.0\",\"condition\":\"@Request[Microsoft.Authorization/roleAssignments:RoleDefinitionId] + ForAnyOfAnyValues:GuidEquals{2a2b9908-6ea1-4ae2-8e65-a410df84e7d1, b8eda974-7b85-4f76-af95-65846b26df6d}\"},{\"actions\":[\"Microsoft.Authorization/roleAssignments/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"2.0\",\"condition\":\"@Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] + ForAnyOfAnyValues:GuidEquals{2a2b9908-6ea1-4ae2-8e65-a410df84e7d1, b8eda974-7b85-4f76-af95-65846b26df6d}\"}],\"createdOn\":\"2024-02-26T16:08:39.4167778Z\",\"updatedOn\":\"2024-10-01T15:07:21.7821657Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8480c0f0-4509-4229-9339-7c10018cb8c4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8480c0f0-4509-4229-9339-7c10018cb8c4\"},{\"properties\":{\"roleName\":\"Advisor + Recommendations Contributor (Assessments and Reviews)\",\"type\":\"BuiltInRole\",\"description\":\"View + assessment recommendations, accepted review recommendations, and manage the + recommendations lifecycle (mark recommendations as completed, postponed or + dismissed, in progress, or not started).\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Advisor/recommendations/write\",\"Microsoft.Advisor/recommendations/available/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-02-27T16:09:01.7439167Z\",\"updatedOn\":\"2024-03-14T23:14:57.0882716Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6b534d80-e337-47c4-864f-140f5c7f593d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6b534d80-e337-47c4-864f-140f5c7f593d\"},{\"properties\":{\"roleName\":\"GeoCatalog + Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Grants full access + to manage GeoCatalogs, but does not allow you to assign roles in Azure RBAC.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Orbital/operations/read\",\"Microsoft.Orbital/geoCatalogs/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-02-28T16:09:25.0275812Z\",\"updatedOn\":\"2024-02-28T16:09:25.0275812Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c9c97b9c-105d-4bb5-a2a7-7d15666c2484\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c9c97b9c-105d-4bb5-a2a7-7d15666c2484\"},{\"properties\":{\"roleName\":\"GeoCatalog + Reader\",\"type\":\"BuiltInRole\",\"description\":\"View GeoCatalogs, but + does not allow you to make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Orbital/operations/read\",\"Microsoft.Orbital/geoCatalogs/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-02-28T16:09:25.0265820Z\",\"updatedOn\":\"2024-02-28T16:09:25.0265820Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7b8f583-43d0-40ae-b147-6b46f53661c1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b7b8f583-43d0-40ae-b147-6b46f53661c1\"},{\"properties\":{\"roleName\":\"Healthcare + Agent Reader\",\"type\":\"BuiltInRole\",\"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).\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthBot/healthBots/*/Read\",\"Microsoft.HealthBot/healthBots/Reader/Action\"],\"notDataActions\":[\"Microsoft.HealthBot/healthBots/Admin/*\",\"Microsoft.HealthBot/healthBots/HealthSafeguards/*\"]}],\"createdOn\":\"2024-02-29T16:10:59.0383279Z\",\"updatedOn\":\"2025-03-14T15:37:33.4761066Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/eb5a76d5-50e7-4c33-a449-070e7c9c4cf2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"eb5a76d5-50e7-4c33-a449-070e7c9c4cf2\"},{\"properties\":{\"roleName\":\"Healthcare + Agent Editor\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthBot/healthBots/*\"],\"notDataActions\":[\"Microsoft.HealthBot/healthBots/Admin/*\",\"Microsoft.HealthBot/healthBots/HealthSafeguards/*\"]}],\"createdOn\":\"2024-02-29T16:10:59.0803245Z\",\"updatedOn\":\"2025-03-14T15:37:32.7454511Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/af854a69-80ce-4ff7-8447-f1118a2e0ca8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"af854a69-80ce-4ff7-8447-f1118a2e0ca8\"},{\"properties\":{\"roleName\":\"Healthcare + Agent Admin\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthBot/healthBots/*\"],\"notDataActions\":[\"Microsoft.HealthBot/healthBots/HealthSafeguards/*\"]}],\"createdOn\":\"2024-02-29T16:11:01.3963426Z\",\"updatedOn\":\"2025-03-14T15:37:33.4761066Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1082fec-a70f-419f-9230-885d2550fb38\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f1082fec-a70f-419f-9230-885d2550fb38\"},{\"properties\":{\"roleName\":\"Azure + Programmable Connectivity Gateway Dataplane User\",\"type\":\"BuiltInRole\",\"description\":\"Allows + access to all Gateway dataplane APIs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ProgrammableConnectivity/Gateways/NetworkAPIAccess\"],\"notDataActions\":[]}],\"createdOn\":\"2024-02-29T16:11:01.3963426Z\",\"updatedOn\":\"2025-03-19T15:21:18.6264687Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c20923c5-b089-47a5-bf67-fd89569c4ad9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c20923c5-b089-47a5-bf67-fd89569c4ad9\"},{\"properties\":{\"roleName\":\"Azure + AI Enterprise Network Connection Approver\",\"type\":\"BuiltInRole\",\"description\":\"Can + approve private endpoint connections to Azure AI common dependency resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/privateEndpointConnections/read\",\"Microsoft.ApiManagement/service/privateEndpointConnections/write\",\"Microsoft.ApiManagement/service/privateLinkResources/read\",\"Microsoft.ApiManagement/service/read\",\"Microsoft.ContainerRegistry/registries/privateEndpointConnectionsApproval/action\",\"Microsoft.ContainerRegistry/registries/privateEndpointConnections/read\",\"Microsoft.ContainerRegistry/registries/privateEndpointConnections/write\",\"Microsoft.Cache/redis/read\",\"Microsoft.Cache/redis/privateEndpointConnections/read\",\"Microsoft.Cache/redis/privateEndpointConnections/write\",\"Microsoft.Cache/redis/privateLinkResources/read\",\"Microsoft.Cache/redis/privateEndpointConnectionsApproval/action\",\"Microsoft.Cache/redisEnterprise/read\",\"Microsoft.Cache/redisEnterprise/privateEndpointConnections/read\",\"Microsoft.Cache/redisEnterprise/privateEndpointConnections/write\",\"Microsoft.Cache/redisEnterprise/privateLinkResources/read\",\"Microsoft.Cache/redisEnterprise/privateEndpointConnectionsApproval/action\",\"Microsoft.CognitiveServices/accounts/read\",\"Microsoft.CognitiveServices/accounts/privateEndpointConnections/read\",\"Microsoft.CognitiveServices/accounts/privateEndpointConnections/write\",\"Microsoft.CognitiveServices/accounts/privateLinkResources/read\",\"Microsoft.DBforPostgreSQL/flexibleServers/privateEndpointConnectionsApproval/action\",\"Microsoft.DBforPostgreSQL/flexibleServers/privateEndpointConnections/read\",\"Microsoft.DBforPostgreSQL/flexibleServers/privateEndpointConnections/write\",\"Microsoft.DBforPostgreSQL/flexibleServers/privateLinkResources/read\",\"Microsoft.DBforPostgreSQL/flexibleServers/read\",\"Microsoft.DBforPostgreSQL/serverGroupsv2/privateEndpointConnectionsApproval/action\",\"Microsoft.DBforPostgreSQL/serverGroupsv2/privateEndpointConnections/read\",\"Microsoft.DBforPostgreSQL/serverGroupsv2/privateEndpointConnections/write\",\"Microsoft.DBforPostgreSQL/serverGroupsv2/privateLinkResources/read\",\"Microsoft.DBforMySQL/flexibleServers/privateEndpointConnectionsApproval/action\",\"Microsoft.DBforMySQL/flexibleServers/privateEndpointConnections/read\",\"Microsoft.DBforMySQL/flexibleServers/privateEndpointConnections/write\",\"Microsoft.DBforMySQL/flexibleServers/privateLinkResources/read\",\"Microsoft.DBforMySQL/flexibleServers/read\",\"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnectionsApproval/action\",\"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections/read\",\"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections/write\",\"Microsoft.DocumentDB/databaseAccounts/privateLinkResources/read\",\"Microsoft.DocumentDB/databaseAccounts/read\",\"Microsoft.KeyVault/vaults/privateEndpointConnectionsApproval/action\",\"Microsoft.KeyVault/vaults/privateEndpointConnections/read\",\"Microsoft.KeyVault/vaults/privateEndpointConnections/write\",\"Microsoft.KeyVault/vaults/privateLinkResources/read\",\"Microsoft.KeyVault/vaults/read\",\"Microsoft.MachineLearningServices/registries/privateEndpointConnectionsApproval/action\",\"Microsoft.MachineLearningServices/registries/privateEndpointConnections/read\",\"Microsoft.MachineLearningServices/registries/privateEndpointConnections/write\",\"Microsoft.MachineLearningServices/registries/privateLinkResources/read\",\"Microsoft.MachineLearningServices/registries/read\",\"Microsoft.MachineLearningServices/workspaces/privateEndpointConnectionsApproval/action\",\"Microsoft.MachineLearningServices/workspaces/privateEndpointConnections/read\",\"Microsoft.MachineLearningServices/workspaces/privateEndpointConnections/write\",\"Microsoft.MachineLearningServices/workspaces/privateLinkResources/read\",\"Microsoft.MachineLearningServices/workspaces/read\",\"Microsoft.Storage/storageAccounts/privateEndpointConnections/read\",\"Microsoft.Storage/storageAccounts/privateEndpointConnections/write\",\"Microsoft.Storage/storageAccounts/privateLinkResources/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/PrivateEndpointConnectionsApproval/action\",\"Microsoft.Sql/servers/privateEndpointConnectionsApproval/action\",\"Microsoft.Sql/servers/privateEndpointConnections/read\",\"Microsoft.Sql/servers/privateEndpointConnections/write\",\"Microsoft.Sql/servers/privateLinkResources/read\",\"Microsoft.Sql/servers/read\",\"Microsoft.EventHub/namespaces/privateEndpointConnectionsApproval/action\",\"Microsoft.EventHub/namespaces/privateEndpointConnections/read\",\"Microsoft.EventHub/namespaces/privateEndpointConnections/write\",\"Microsoft.EventHub/namespaces/privateLinkResources/read\",\"Microsoft.EventHub/namespaces/read\",\"Microsoft.Search/searchServices/privateEndpointConnectionsApproval/action\",\"Microsoft.Search/searchServices/privateEndpointConnections/read\",\"Microsoft.Search/searchServices/privateEndpointConnections/write\",\"Microsoft.Search/searchServices/sharedPrivateLinkResources/read\",\"Microsoft.Search/searchServices/read\",\"Microsoft.Insights/privatelinkscopes/privateEndpointConnectionsApproval/action\",\"Microsoft.Insights/privatelinkscopes/privateEndpointConnections/read\",\"Microsoft.Insights/privatelinkscopes/privateEndpointConnections/write\",\"Microsoft.Insights/privatelinkscopes/privateLinkResources/read\",\"Microsoft.Insights/privatelinkscopes/read\",\"Microsoft.Network/privateLinkServices/privateEndpointConnectionsApproval/action\",\"Microsoft.Network/privateLinkServices/privateEndpointConnections/read\",\"Microsoft.Network/privateLinkServices/privateEndpointConnections/write\",\"Microsoft.Network/privateLinkServices/read\",\"Microsoft.Network/applicationGateways/privateEndpointConnections/read\",\"Microsoft.Network/applicationGateways/privateEndpointConnections/write\",\"Microsoft.Network/applicationGateways/privateLinkResources/read\",\"Microsoft.Network/applicationGateways/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-01T22:44:57.9174008Z\",\"updatedOn\":\"2025-01-30T21:18:01.5034976Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b556d68e-0be0-4f35-a333-ad7ee1ce17ea\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b556d68e-0be0-4f35-a333-ad7ee1ce17ea\"},{\"properties\":{\"roleName\":\"Azure + Container Storage Operator\",\"type\":\"BuiltInRole\",\"description\":\"Role + required by a Managed Identity for Azure Container Storage operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ElasticSan/elasticSans/*\",\"Microsoft.ElasticSan/locations/asyncoperations/read\",\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/virtualNetworks/write\",\"Microsoft.Network/virtualNetworks/delete\",\"Microsoft.Network/virtualNetworks/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/virtualMachineScaleSets/read\",\"Microsoft.Compute/virtualMachineScaleSets/write\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/write\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\"Microsoft.Resources/subscriptions/providers/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Network/virtualNetworks/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-07T18:16:04.1237431Z\",\"updatedOn\":\"2024-03-22T22:01:01.7377883Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/08d4c71a-cc63-4ce4-a9c8-5dd251b4d619\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"08d4c71a-cc63-4ce4-a9c8-5dd251b4d619\"},{\"properties\":{\"roleName\":\"Azure + Container Storage Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you install Azure Container Storage and manage its storage resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.KubernetesConfiguration/extensions/write\",\"Microsoft.KubernetesConfiguration/extensions/read\",\"Microsoft.KubernetesConfiguration/extensions/delete\",\"Microsoft.KubernetesConfiguration/extensions/operations/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\",\"Microsoft.Authorization/roleAssignments/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"2.0\",\"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}))\"}],\"createdOn\":\"2024-03-07T18:46:25.1162285Z\",\"updatedOn\":\"2024-03-29T20:10:38.4259849Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/95dd08a6-00bd-4661-84bf-f6726f83a4d0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"95dd08a6-00bd-4661-84bf-f6726f83a4d0\"},{\"properties\":{\"roleName\":\"Azure + Container Storage Owner\",\"type\":\"BuiltInRole\",\"description\":\"Lets + you install Azure Container Storage and grants access to its storage resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ElasticSan/elasticSans/*\",\"Microsoft.ElasticSan/locations/*\",\"Microsoft.ElasticSan/elasticSans/volumeGroups/*\",\"Microsoft.ElasticSan/elasticSans/volumeGroups/volumes/*\",\"Microsoft.ElasticSan/locations/asyncoperations/read\",\"Microsoft.KubernetesConfiguration/extensions/write\",\"Microsoft.KubernetesConfiguration/extensions/read\",\"Microsoft.KubernetesConfiguration/extensions/delete\",\"Microsoft.KubernetesConfiguration/extensions/operations/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\",\"Microsoft.Authorization/roleAssignments/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"2.0\",\"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}))\"}],\"createdOn\":\"2024-03-07T18:46:25.1172293Z\",\"updatedOn\":\"2024-03-29T20:10:38.4259849Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/95de85bd-744d-4664-9dde-11430bc34793\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"95de85bd-744d-4664-9dde-11430bc34793\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service Arc Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants + access to read and write Azure Kubernetes Services hybrid clusters\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridContainerService/Locations/operationStatuses/read\",\"Microsoft.HybridContainerService/Operations/read\",\"Microsoft.HybridContainerService/kubernetesVersions/read\",\"Microsoft.HybridContainerService/kubernetesVersions/write\",\"Microsoft.HybridContainerService/kubernetesVersions/delete\",\"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\"Microsoft.HybridContainerService/provisionedClusterInstances/write\",\"Microsoft.HybridContainerService/provisionedClusterInstances/delete\",\"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/read\",\"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/write\",\"Microsoft.HybridContainerService/provisionedClusterInstances/agentPools/delete\",\"Microsoft.HybridContainerService/provisionedClusterInstances/upgradeProfiles/read\",\"Microsoft.HybridContainerService/skus/read\",\"Microsoft.HybridContainerService/skus/write\",\"Microsoft.HybridContainerService/skus/delete\",\"Microsoft.HybridContainerService/virtualNetworks/read\",\"Microsoft.HybridContainerService/virtualNetworks/write\",\"Microsoft.HybridContainerService/virtualNetworks/delete\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.ExtendedLocation/customLocations/read\",\"Microsoft.Kubernetes/connectedClusters/Read\",\"Microsoft.Kubernetes/connectedClusters/Write\",\"Microsoft.Kubernetes/connectedClusters/Delete\",\"Microsoft.Kubernetes/connectedClusters/listClusterUserCredential/action\",\"Microsoft.AzureStackHCI/clusters/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-08T00:33:15.7903690Z\",\"updatedOn\":\"2024-04-17T15:24:13.1719241Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d3f1697-4507-4d08-bb4a-477695db5f82\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d3f1697-4507-4d08-bb4a-477695db5f82\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service Arc Cluster User Role\",\"type\":\"BuiltInRole\",\"description\":\"List + cluster user credential action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\"Microsoft.HybridContainerService/provisionedClusterInstances/listUserKubeconfig/action\",\"Microsoft.Kubernetes/connectedClusters/Read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-08T00:33:16.7231724Z\",\"updatedOn\":\"2024-03-08T00:33:16.7231724Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/233ca253-b031-42ff-9fba-87ef12d6b55f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"233ca253-b031-42ff-9fba-87ef12d6b55f\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service Arc Cluster Admin Role\",\"type\":\"BuiltInRole\",\"description\":\"List + cluster admin credential action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridContainerService/provisionedClusterInstances/read\",\"Microsoft.HybridContainerService/provisionedClusterInstances/listAdminKubeconfig/action\",\"Microsoft.Kubernetes/connectedClusters/Read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-08T00:33:16.7341721Z\",\"updatedOn\":\"2024-03-08T00:33:16.7341721Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b29efa5f-7782-4dc3-9537-4d5bc70a5e9f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b29efa5f-7782-4dc3-9537-4d5bc70a5e9f\"},{\"properties\":{\"roleName\":\"Backup + MUA Admin\",\"type\":\"BuiltInRole\",\"description\":\"Backup MultiUser-Authorization. + Can create/delete ResourceGuard \",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DataProtection/*/read\",\"Microsoft.DataProtection/*/resourceGuards/write\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/resourceGuards/write\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/resourceGuards/delete\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/resourceGuards/read\",\"Microsoft.DataProtection/locations/operationResults/read\",\"Microsoft.DataProtection/locations/operationStatus/read\",\"Microsoft.DataProtection/locations/getBackupStatus/action\",\"Microsoft.DataProtection/locations/checkFeatureSupport/action\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/operationStatus/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Features/features/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/read\",\"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/write\",\"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete\",\"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/unlockDelete/action\",\"Microsoft.DataProtection/subscriptions/providers/resourceGuards/read\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/resourceGuards/{operationName}/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-11T15:04:28.0520383Z\",\"updatedOn\":\"2024-03-11T15:04:28.0520383Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c2a970b4-16a7-4a51-8c84-8a8ea6ee0bb8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c2a970b4-16a7-4a51-8c84-8a8ea6ee0bb8\"},{\"properties\":{\"roleName\":\"Backup + MUA Operator\",\"type\":\"BuiltInRole\",\"description\":\"Backup MultiUser-Authorization. + Allows user to perform critical operation protected by resourceguard\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DataProtection/*/action\",\"Microsoft.DataProtection/*/read\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-11T15:04:28.0520383Z\",\"updatedOn\":\"2024-03-11T15:04:28.0520383Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f54b6d04-23c6-443e-b462-9c16ab7b4a52\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f54b6d04-23c6-443e-b462-9c16ab7b4a52\"},{\"properties\":{\"roleName\":\"Savings + plan Purchaser\",\"type\":\"BuiltInRole\",\"description\":\"Lets you purchase + savings plans\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Capacity/register/action\",\"Microsoft.Capacity/catalogs/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.BillingBenefits/savingsPlanOrders/write\",\"Microsoft.BIllingBenefits/register/action\",\"Microsoft.Support/supporttickets/write\",\"Microsoft.Billing/billingProperty/read\",\"Microsoft.CostManagement/benefitRecommendations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-18T15:10:34.3862485Z\",\"updatedOn\":\"2024-03-18T15:10:34.3862485Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3d24a3a0-c154-4f6f-a5ed-adc8e01ddb74\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3d24a3a0-c154-4f6f-a5ed-adc8e01ddb74\"},{\"properties\":{\"roleName\":\"CrossConnectionManager\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for read, write access to ExpressRoute CrossConnections\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ClassicNetwork/expressRouteCrossConnections/*\",\"Microsoft.Network/expressRouteCrossConnections/*\",\"Microsoft.Features/providers/features/read\"],\"notActions\":[\"Microsoft.Network/expressRouteCrossConnections/delete\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-19T15:23:13.6726125Z\",\"updatedOn\":\"2024-03-19T15:23:13.6726125Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/399c3b2b-64c2-4ff1-af34-571db925b068\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"399c3b2b-64c2-4ff1-af34-571db925b068\"},{\"properties\":{\"roleName\":\"CrossConnectionReader\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for read access to ExpressRoute CrossConnections\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ClassicNetwork/expressRouteCrossConnections/*/read\",\"Microsoft.Network/expressRouteCrossConnections/*/read\",\"Microsoft.Features/providers/features/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-19T15:23:13.6446077Z\",\"updatedOn\":\"2024-03-19T15:23:13.6446077Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b6ee44de-fe58-4ddc-b5c2-ab174eb23f05\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b6ee44de-fe58-4ddc-b5c2-ab174eb23f05\"},{\"properties\":{\"roleName\":\"Kubernetes + Agent Operator\",\"type\":\"BuiltInRole\",\"description\":\"Grants Microsoft + Defender for Cloud access to Azure Kubernetes Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.ContainerService/managedClusters/read\",\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/delete\",\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/read\",\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/write\",\"Microsoft.ContainerService/managedClusters/write\",\"Microsoft.Security/pricings/securityoperators/read\",\"Microsoft.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/read\",\"Microsoft.OperationalInsights/workspaces/listKeys/action\",\"Microsoft.OperationalInsights/workspaces/sharedkeys/action\",\"Microsoft.OperationalInsights/workspaces/sharedkeys/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-21T15:42:52.8028925Z\",\"updatedOn\":\"2024-12-06T16:25:12.4547515Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e93ba01-8f92-4c7a-b12a-801e3df23824\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e93ba01-8f92-4c7a-b12a-801e3df23824\"},{\"properties\":{\"roleName\":\"Azure + API Center Compliance Manager\",\"type\":\"BuiltInRole\",\"description\":\"Allows + managing API compliance in Azure API Center service.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiCenter/services/*/read\",\"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/updateAnalysisState/action\",\"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/exportSpecification/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-25T15:06:22.7412927Z\",\"updatedOn\":\"2024-03-25T15:06:22.7412927Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ede9aaa3-4627-494e-be13-4aa7c256148d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ede9aaa3-4627-494e-be13-4aa7c256148d\"},{\"properties\":{\"roleName\":\"Azure + API Center Service Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows + read-only access to Azure API Center service.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiCenter/services/*/read\",\"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/exportSpecification/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-25T15:06:22.7402909Z\",\"updatedOn\":\"2024-03-25T15:06:22.7402909Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6cba8790-29c5-48e5-bab1-c7541b01cb04\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6cba8790-29c5-48e5-bab1-c7541b01cb04\"},{\"properties\":{\"roleName\":\"Azure + API Center Service Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows + managing Azure API Center service.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiCenter/services/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[\"Microsoft.ApiCenter/services/workspaces/apis/versions/definitions/updateAnalysisState/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-25T15:06:22.7412927Z\",\"updatedOn\":\"2024-03-25T15:06:22.7412927Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dd24193f-ef65-44e5-8a7e-6fa6e03f7713\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dd24193f-ef65-44e5-8a7e-6fa6e03f7713\"},{\"properties\":{\"roleName\":\"Bayer + Ag Powered Services Historical Weather Data Solution User Role\",\"type\":\"BuiltInRole\",\"description\":\"Provide + access to Historical Weather Data Solution by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\"Microsoft.AgFoodPlatform/farmBeats/parties/farms/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/farms/write\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-03-26T15:15:04.8792612Z\",\"updatedOn\":\"2024-08-09T17:11:19.7209693Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b5b192c1-773c-4543-bfb0-6c59254b74a9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b5b192c1-773c-4543-bfb0-6c59254b74a9\"},{\"properties\":{\"roleName\":\"Oracle + Subscriptions Manager Built-in Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants + full access to manage all Oracle Subscriptions resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Oracle.Database/oracleSubscriptions/*/read\",\"Oracle.Database/oracleSubscriptions/*/write\",\"Oracle.Database/oracleSubscriptions/*/delete\",\"Oracle.Database/oracleSubscriptions/*/action\",\"Oracle.Database/Locations/*/read\",\"Oracle.Database/Locations/*/write\",\"Oracle.Database/Operations/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-26T15:15:04.8802611Z\",\"updatedOn\":\"2024-04-08T15:07:44.8273943Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4caf51ec-f9f5-413f-8a94-b9f5fddba66b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4caf51ec-f9f5-413f-8a94-b9f5fddba66b\"},{\"properties\":{\"roleName\":\"Oracle.Database + Owner Built-in Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants full + access to manage all Oracle.Database resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Oracle.Database/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/locations/operations/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Compute/sshPublicKeys/read\",\"Microsoft.Compute/sshPublicKeys/write\",\"Microsoft.Compute/sshPublicKeys/generateKeyPair/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-26T15:15:05.0770720Z\",\"updatedOn\":\"2024-04-05T21:31:52.1474736Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4562aac9-b209-4bd7-a144-6d7f3bb516f4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4562aac9-b209-4bd7-a144-6d7f3bb516f4\"},{\"properties\":{\"roleName\":\"Oracle.Database + Reader Built-in Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants read + access to all Oracle.Database resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Oracle.Database/Locations/*/read\",\"Oracle.Database/Operations/read\",\"Oracle.Database/oracleSubscriptions/*/read\",\"Oracle.Database/cloudExadataInfrastructures/*/read\",\"Oracle.Database/cloudVmClusters/*/read\",\"Oracle.Database/cloudVmClusters/listPrivateIpAddresses/action\",\"Oracle.Database/oracleSubscriptions/listCloudAccountDetails/action\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/locations/operations/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-26T15:15:05.0770720Z\",\"updatedOn\":\"2024-04-08T15:07:44.8263947Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d623d097-b882-4e1e-a26f-ac60e31065a1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d623d097-b882-4e1e-a26f-ac60e31065a1\"},{\"properties\":{\"roleName\":\"Oracle.Database + VmCluster Administrator Built-in Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants + full access to manage all VmCluster resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Oracle.Database/cloudVmClusters/*/read\",\"Oracle.Database/cloudVmClusters/*/write\",\"Oracle.Database/cloudVmClusters/*/delete\",\"Oracle.Database/cloudExadataInfrastructures/write\",\"Oracle.Database/cloudExadataInfrastructures/*/read\",\"Oracle.Database/Locations/*/read\",\"Oracle.Database/Locations/*/write\",\"Oracle.Database/Operations/read\",\"Oracle.Database/oracleSubscriptions/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/locations/operations/read\",\"Microsoft.Compute/sshPublicKeys/read\",\"Microsoft.Compute/sshPublicKeys/write\",\"Microsoft.Compute/sshPublicKeys/generateKeyPair/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-26T15:15:05.0830710Z\",\"updatedOn\":\"2024-04-08T15:07:46.2529727Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e9ce8739-6fa2-4123-a0a2-0ef41a67806f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e9ce8739-6fa2-4123-a0a2-0ef41a67806f\"},{\"properties\":{\"roleName\":\"Oracle.Database + Exadata Infrastructure Administrator Built-in Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants + full access to manage all Exadata Infrastructure resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Oracle.Database/cloudExadataInfrastructures/*/read\",\"Oracle.Database/cloudExadataInfrastructures/*/write\",\"Oracle.Database/cloudExadataInfrastructures/*/delete\",\"Oracle.Database/cloudVmClusters/*/read\",\"Oracle.Database/cloudVmClusters/*/write\",\"Oracle.Database/cloudVmClusters/*/delete\",\"Oracle.Database/cloudVmClusters/*/action\",\"Oracle.Database/Locations/*/read\",\"Oracle.Database/Locations/*/write\",\"Oracle.Database/Operations/read\",\"Oracle.Database/oracleSubscriptions/*/read\",\"Oracle.Database/oracleSubscriptions/listCloudAccountDetails/action\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/locations/operations/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Compute/sshPublicKeys/read\",\"Microsoft.Compute/sshPublicKeys/write\",\"Microsoft.Compute/sshPublicKeys/generateKeyPair/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-03-26T15:15:05.3035903Z\",\"updatedOn\":\"2024-04-08T15:07:46.2539738Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4cfdd23b-aece-4fd1-b614-ad3a06c53453\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4cfdd23b-aece-4fd1-b614-ad3a06c53453\"},{\"properties\":{\"roleName\":\"Azure + Spring Apps Application Configuration Service Config File Pattern Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Read + content of config file pattern for Application Configuration Service in Azure + Spring Apps\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AppPlatform/Spring/read\",\"Microsoft.AppPlatform/Spring/configurationServices/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/ApplicationConfigurationService/read\"],\"notDataActions\":[]}],\"createdOn\":\"2024-03-28T15:27:28.8416423Z\",\"updatedOn\":\"2024-03-28T15:27:28.8416423Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/25211fc6-dc78-40b6-b205-e4ac934fd9fd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"25211fc6-dc78-40b6-b205-e4ac934fd9fd\"},{\"properties\":{\"roleName\":\"Azure + Messaging Catalog Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for full access to Azure Messaging Catalog resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MessagingCatalog/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.MessagingCatalog/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-03-28T15:27:28.8416423Z\",\"updatedOn\":\"2024-03-28T15:27:28.8416423Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f27b7598-bc64-41f7-8a44-855ff16326c2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f27b7598-bc64-41f7-8a44-855ff16326c2\"},{\"properties\":{\"roleName\":\"Azure + Hybrid Database Administrator - Read Only Service Role\",\"type\":\"BuiltInRole\",\"description\":\"Read + only access to Azure hybrid database services resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureArcData/*/read\",\"Microsoft.AzureArcData/sqlServerInstances/getTelemetry/action\",\"Microsoft.AzureArcData/sqlServerInstances/availabilityGroups/getDetailView/action\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-04-04T17:22:37.1908565Z\",\"updatedOn\":\"2024-04-04T17:22:37.1908565Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d9c6a55-fc0e-4e21-ae6f-f7b095497342\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d9c6a55-fc0e-4e21-ae6f-f7b095497342\"},{\"properties\":{\"roleName\":\"Microsoft + Sentinel Business Applications Agent Operator\",\"type\":\"BuiltInRole\",\"description\":\"List + and update actions on a business applications system. This role is in preview + and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.SecurityInsights/businessApplicationAgents/read\",\"Microsoft.SecurityInsights/businessApplicationAgents/write\",\"Microsoft.SecurityInsights/businessApplicationAgents/systems/read\",\"Microsoft.SecurityInsights/businessApplicationAgents/systems/write\",\"Microsoft.SecurityInsights/businessApplicationAgents/systems/listActions/action\",\"Microsoft.SecurityInsights/businessApplicationAgents/systems/reportActionStatus/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-04-05T08:06:44.3219877Z\",\"updatedOn\":\"2024-06-06T15:32:14.8579262Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c18f9900-27b8-47c7-a8f0-5b3b3d4c2bc2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c18f9900-27b8-47c7-a8f0-5b3b3d4c2bc2\"},{\"properties\":{\"roleName\":\"Azure + ContainerApps Session Executor\",\"type\":\"BuiltInRole\",\"description\":\"Create + and execute sessions in a sessionPool\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.App/sessionPools/*/read\",\"Microsoft.App/sessionPools/sessions/generatesessions/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.App/sessionPools/*/read\",\"Microsoft.App/sessionPools/interpreters/execute/action\",\"Microsoft.App/sessionPools/interpreters/read\",\"Microsoft.App/sessionPools/executions/*\",\"Microsoft.App/sessionPools/files/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-04-08T15:07:44.8193956Z\",\"updatedOn\":\"2024-11-06T16:01:16.6620491Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0fb8eba5-a2bb-4abe-b1c1-49dfad359bb0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0fb8eba5-a2bb-4abe-b1c1-49dfad359bb0\"},{\"properties\":{\"roleName\":\"Microsoft.Edge + Winfields federated subscription read access role\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft.Edge + Winfields role for read access on federated subscriptions\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-04-15T15:14:13.2886992Z\",\"updatedOn\":\"2024-07-16T15:12:08.3117167Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/83ee7727-862c-4213-8ed8-2ce6c5d69a40\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"83ee7727-862c-4213-8ed8-2ce6c5d69a40\"},{\"properties\":{\"roleName\":\"Azure + Red Hat OpenShift Federated Credential\",\"type\":\"BuiltInRole\",\"description\":\"Create, + update and delete federated credentials on user assigned managed identities + in order to build a trust relationship between the managed identity, OpenID + Connect (OIDC), and the service account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/write\",\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/read\",\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-04-15T15:14:13.2906962Z\",\"updatedOn\":\"2025-03-12T15:15:43.6782429Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ef318e2a-8334-4a05-9e4a-295a196c6a6e\"},{\"properties\":{\"roleName\":\"Bayer + Ag Powered Services Crop Id Solution User Role\",\"type\":\"BuiltInRole\",\"description\":\"Provide + access to Crop Id Solution by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-04-22T15:03:58.3512473Z\",\"updatedOn\":\"2024-05-16T15:24:47.2532254Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/39138f76-04e6-41f0-ba6b-c411b59081a9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"39138f76-04e6-41f0-ba6b-c411b59081a9\"},{\"properties\":{\"roleName\":\"Scheduled + Events Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides access + to scheduled event actions\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Maintenance/scheduledevents/acknowledge/action\",\"Microsoft.Compute/VirtualMachines/read\",\"Microsoft.Compute/VirtualMachineScaleSets/read\",\"Microsoft.Compute/AvailabilitySets/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-04-24T15:11:03.2385683Z\",\"updatedOn\":\"2024-05-06T15:07:27.9162114Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b67fe603-310e-4889-b9ee-8257d09d353d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b67fe603-310e-4889-b9ee-8257d09d353d\"},{\"properties\":{\"roleName\":\"Compute + Recommendations Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants permissions + to call Compute Recommendations APIs provided by Compute Diagnostic Resource + Provider service.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/locations/placementScores/generate/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-05-01T15:29:03.4064531Z\",\"updatedOn\":\"2024-07-03T15:20:29.2192889Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e82342c9-ac7f-422b-af64-e426d2e12b2d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e82342c9-ac7f-422b-af64-e426d2e12b2d\"},{\"properties\":{\"roleName\":\"Azure + Spring Apps Job Log Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Read + real-time logs for jobs in Azure Spring Apps\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AppPlatform/Spring/read\",\"Microsoft.AppPlatform/Spring/jobs/read\",\"Microsoft.AppPlatform/Spring/jobs/executions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/jobs/executions/logstream/action\",\"Microsoft.AppPlatform/Spring/jobs/executions/listInstances/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-05-03T02:44:23.2142297Z\",\"updatedOn\":\"2024-05-03T02:44:23.2142297Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b459aa1d-e3c8-436f-ae21-c0531140f43e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b459aa1d-e3c8-436f-ae21-c0531140f43e\"},{\"properties\":{\"roleName\":\"Azure + Spring Apps Job Execution Instance List Role\",\"type\":\"BuiltInRole\",\"description\":\"List + instances for job executions in Azure Spring Apps\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/jobs/executions/listInstances/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-05-03T02:44:23.2139801Z\",\"updatedOn\":\"2024-05-03T02:44:23.2139801Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/91422e52-bb88-4415-bb4a-90f5b71f6dcb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"91422e52-bb88-4415-bb4a-90f5b71f6dcb\"},{\"properties\":{\"roleName\":\"Nexus + Network Fabric Service Writer\",\"type\":\"BuiltInRole\",\"description\":\"Read-write + access to Nexus Network Fabric Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedNetworkFabric/*/read\",\"Microsoft.ManagedNetworkFabric/*/write\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-05-13T15:04:37.4782279Z\",\"updatedOn\":\"2024-05-13T15:04:37.4782279Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a5eb8433-97a5-4a06-80b2-a877e1622c31\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a5eb8433-97a5-4a06-80b2-a877e1622c31\"},{\"properties\":{\"roleName\":\"Nexus + Network Fabric Service Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read-only + access to Nexus Network Fabric Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedNetworkFabric/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-05-13T15:04:37.4782279Z\",\"updatedOn\":\"2024-05-13T15:04:37.4782279Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/05fdd44c-adc6-4aff-981c-61041f0c929a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"05fdd44c-adc6-4aff-981c-61041f0c929a\"},{\"properties\":{\"roleName\":\"Azure + Deployment Stack Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows + a user to manage deployment stacks, including those with deny assignments.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deploymentStacks/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-05-16T23:13:29.6757377Z\",\"updatedOn\":\"2024-05-16T23:13:29.6757377Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/adb29209-aa1d-457b-a786-c913953d2891\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"adb29209-aa1d-457b-a786-c913953d2891\"},{\"properties\":{\"roleName\":\"Azure + Deployment Stack Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows + a user to manage deployment stacks, but cannot create or delete deny assignments + within the deployment stack.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deploymentStacks/write\",\"Microsoft.Resources/deploymentStacks/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-05-16T23:13:29.6757377Z\",\"updatedOn\":\"2024-05-16T23:13:29.6757377Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bf7f8882-3383-422a-806a-6526c631a88a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bf7f8882-3383-422a-806a-6526c631a88a\"},{\"properties\":{\"roleName\":\"Azure + Spring Apps Spring Cloud Config Server Log Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Read + real-time logs for Spring Cloud Config Server in Azure Spring Apps\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AppPlatform/Spring/read\",\"Microsoft.AppPlatform/Spring/configServers/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/configService/logstream/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-05-30T15:22:33.0533129Z\",\"updatedOn\":\"2024-05-30T15:22:33.0533129Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/74252426-c508-480e-9345-4607bbebead4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"74252426-c508-480e-9345-4607bbebead4\"},{\"properties\":{\"roleName\":\"Container + Registry Repository Catalog Lister\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for listing all repositories in an Azure Container Registry. This role is + in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/catalog/read\"],\"notDataActions\":[]}],\"createdOn\":\"2024-06-06T15:32:14.9109269Z\",\"updatedOn\":\"2024-08-20T15:22:00.2589914Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bfdb9389-c9a5-478a-bb2f-ba9ca092c3c7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bfdb9389-c9a5-478a-bb2f-ba9ca092c3c7\"},{\"properties\":{\"roleName\":\"Container + Registry Repository Contributor\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/repositories/metadata/read\",\"Microsoft.ContainerRegistry/registries/repositories/content/read\",\"Microsoft.ContainerRegistry/registries/repositories/metadata/write\",\"Microsoft.ContainerRegistry/registries/repositories/content/write\",\"Microsoft.ContainerRegistry/registries/repositories/metadata/delete\",\"Microsoft.ContainerRegistry/registries/repositories/content/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2024-06-06T15:47:34.3399996Z\",\"updatedOn\":\"2024-08-20T15:22:00.2599913Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2efddaa5-3f1f-4df3-97df-af3f13818f4c\"},{\"properties\":{\"roleName\":\"Container + Registry Repository Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for read access to Azure Container Registry repositories, but excluding catalog + listing. This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/repositories/metadata/read\",\"Microsoft.ContainerRegistry/registries/repositories/content/read\"],\"notDataActions\":[]}],\"createdOn\":\"2024-06-06T15:47:34.3399996Z\",\"updatedOn\":\"2024-08-20T15:22:00.2579913Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b93aa761-3e63-49ed-ac28-beffa264f7ac\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b93aa761-3e63-49ed-ac28-beffa264f7ac\"},{\"properties\":{\"roleName\":\"Container + Registry Repository Writer\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/repositories/metadata/read\",\"Microsoft.ContainerRegistry/registries/repositories/content/read\",\"Microsoft.ContainerRegistry/registries/repositories/metadata/write\",\"Microsoft.ContainerRegistry/registries/repositories/content/write\"],\"notDataActions\":[]}],\"createdOn\":\"2024-06-06T15:47:34.3399996Z\",\"updatedOn\":\"2024-08-20T15:22:02.2893272Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a1e307c-b015-4ebd-883e-5b7698a07328\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2a1e307c-b015-4ebd-883e-5b7698a07328\"},{\"properties\":{\"roleName\":\"DeID + Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Full access to DeID + data. This role is in preview and subject to change\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthDataAIServices/DeidServices/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-06-07T21:23:54.9017124Z\",\"updatedOn\":\"2024-06-07T21:23:54.9017124Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/78e4b983-1a0b-472e-8b7d-8d770f7c5890\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"78e4b983-1a0b-472e-8b7d-8d770f7c5890\"},{\"properties\":{\"roleName\":\"Locks + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can Manage Locks + Operations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/locks/read\",\"Microsoft.Authorization/locks/write\",\"Microsoft.Authorization/locks/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-06-07T22:55:15.2914829Z\",\"updatedOn\":\"2024-06-07T22:55:15.2914829Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/28bf596f-4eb7-45ce-b5bc-6cf482fec137\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"28bf596f-4eb7-45ce-b5bc-6cf482fec137\"},{\"properties\":{\"roleName\":\"Standby + Container Group Pool Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows + users to manage standby container group pool resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ContainerInstance/containerGroupProfiles/read\",\"Microsoft.ContainerInstance/containerGroupProfiles/revisions/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.StandbyPool/Locations/OperationStatuses/read\",\"Microsoft.StandbyPool/Operations/read\",\"Microsoft.StandbyPool/standbyContainerGroupPools/delete\",\"Microsoft.StandbyPool/standbyContainerGroupPools/read\",\"Microsoft.StandbyPool/standbyContainerGroupPools/runtimeViews/read\",\"Microsoft.StandbyPool/standbyContainerGroupPools/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-06-18T15:22:31.7393554Z\",\"updatedOn\":\"2024-06-18T15:22:31.7393554Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/39fcb0de-8844-4706-b050-c28ddbe3ff83\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"39fcb0de-8844-4706-b050-c28ddbe3ff83\"},{\"properties\":{\"roleName\":\"Compute + Gallery Artifacts Publisher\",\"type\":\"BuiltInRole\",\"description\":\"This + is the role for publishing gallery artifacts.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/galleries/*\",\"Microsoft.Compute/locations/capsOperations/read\",\"Microsoft.Compute/locations/communityGalleries/*\",\"Microsoft.Compute/locations/sharedGalleries/*\",\"Microsoft.Compute/images/*\",\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/disks/write\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[\"Microsoft.Compute/galleries/share/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-06-21T00:16:23.2408230Z\",\"updatedOn\":\"2024-06-21T00:16:23.2408230Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85a2d0d9-2eba-4c9c-b355-11c2cc0788ab\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"85a2d0d9-2eba-4c9c-b355-11c2cc0788ab\"},{\"properties\":{\"roleName\":\"ToolchainOrchestrator + Viewer Role\",\"type\":\"BuiltInRole\",\"description\":\"Grant access to view + all Toolchain orchestrator resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ToolchainOrchestrator/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-06-21T07:53:15.2955453Z\",\"updatedOn\":\"2024-07-01T15:03:41.8457839Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c5826735-177b-4a0d-a9a3-d0e4b4bda107\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c5826735-177b-4a0d-a9a3-d0e4b4bda107\"},{\"properties\":{\"roleName\":\"ToolchainOrchestrator + Admin Role\",\"type\":\"BuiltInRole\",\"description\":\"Grant full access + to manage all Toolchain orchestrator resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ToolchainOrchestrator/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-06-21T08:08:21.7019434Z\",\"updatedOn\":\"2024-07-01T15:03:41.8477821Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2ccf8795-8983-4912-8036-1c45212c95e8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2ccf8795-8983-4912-8036-1c45212c95e8\"},{\"properties\":{\"roleName\":\"ProviderHub + Contributor\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProviderHub/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-07-03T15:20:27.4637413Z\",\"updatedOn\":\"2024-07-03T15:20:27.4637413Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a3ab03bc-5350-42ff-b0d5-00207672db55\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a3ab03bc-5350-42ff-b0d5-00207672db55\"},{\"properties\":{\"roleName\":\"ProviderHub + Reader\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProviderHub/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-07-03T15:20:27.7899871Z\",\"updatedOn\":\"2024-07-03T15:20:27.7899871Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d8c6f2e-3fd6-4d40-826e-93e3dc4c3fc1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4d8c6f2e-3fd6-4d40-826e-93e3dc4c3fc1\"},{\"properties\":{\"roleName\":\"Azure + Stack HCI Connected InfraVMs\",\"type\":\"BuiltInRole\",\"description\":\"Role + of Arc Integration for Azure Stack HCI Infrastructure Virtual Machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/*/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-07-04T15:33:28.3954303Z\",\"updatedOn\":\"2024-07-16T15:12:08.3137180Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c99c945f-8bd1-4fb1-a903-01460aae6068\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c99c945f-8bd1-4fb1-a903-01460aae6068\"},{\"properties\":{\"roleName\":\"VM + Restore Operator\",\"type\":\"BuiltInRole\",\"description\":\"Create and Delete + resources during VM Restore. This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/delete\",\"Microsoft.Compute/disks/beginGetAccess/action\",\"Microsoft.Compute/disks/endGetAccess/action\",\"Microsoft.Compute/locations/diskOperations/read\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/virtualMachines/delete\",\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/virtualMachines/extensions/write\",\"Microsoft.Compute/virtualMachines/extensions/delete\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/locations/operationResults/read\",\"Microsoft.Network/locations/operations/read\",\"Microsoft.Network/locations/usages/read\",\"Microsoft.Network/networkInterfaces/delete\",\"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/securityRules/read\",\"Microsoft.Network/publicIPAddresses/delete\",\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/publicIPAddresses/write\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/checkNameAvailability/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/write\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-07-04T15:33:28.3964297Z\",\"updatedOn\":\"2024-07-04T15:33:28.3964297Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dfce8971-25e3-42e3-ba33-6055438e3080\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dfce8971-25e3-42e3-ba33-6055438e3080\"},{\"properties\":{\"roleName\":\"HDInsight + Cluster Admin\",\"type\":\"BuiltInRole\",\"description\":\"Can read, create, + modify and delete HDInsight clusters, configuration, extensions, etc.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"MICROSOFT.HDINSIGHT/CLUSTERS/APPLICATIONS/DELETE\",\"MICROSOFT.HDINSIGHT/CLUSTERS/APPLICATIONS/READ\",\"MICROSOFT.HDINSIGHT/CLUSTERS/APPLICATIONS/WRITE\",\"MICROSOFT.HDINSIGHT/CLUSTERS/AZUREASYNCOPERATIONS/READ\",\"MICROSOFT.HDINSIGHT/CLUSTERS/CONFIGURATIONS/ACTION\",\"MICROSOFT.HDINSIGHT/CLUSTERS/CONFIGURATIONS/READ\",\"MICROSOFT.HDINSIGHT/CLUSTERS/DELETE\",\"MICROSOFT.HDINSIGHT/CLUSTERS/EXECUTESCRIPTACTIONS/ACTION\",\"MICROSOFT.HDINSIGHT/CLUSTERS/EXTENSIONS/DELETE\",\"MICROSOFT.HDINSIGHT/CLUSTERS/EXTENSIONS/READ\",\"MICROSOFT.HDINSIGHT/CLUSTERS/EXTENSIONS/WRITE\",\"MICROSOFT.HDINSIGHT/CLUSTERS/GETGATEWAYSETTINGS/ACTION\",\"MICROSOFT.HDINSIGHT/CLUSTERS/LISTHOSTS/ACTION\",\"MICROSOFT.HDINSIGHT/CLUSTERS/OPERATIONRESULTS/READ\",\"MICROSOFT.HDINSIGHT/CLUSTERS/PRIVATEENDPOINTCONNECTIONS/READ\",\"MICROSOFT.HDINSIGHT/CLUSTERS/PRIVATELINKRESOURCES/READ\",\"MICROSOFT.HDINSIGHT/CLUSTERS/READ\",\"MICROSOFT.HDINSIGHT/CLUSTERS/RESOLVEPRIVATELINKSERVICEID/ACTION\",\"MICROSOFT.HDINSIGHT/CLUSTERS/RESTARTHOSTS/ACTION\",\"MICROSOFT.HDINSIGHT/CLUSTERS/ROLES/AUTOSCALE/ACTION\",\"MICROSOFT.HDINSIGHT/CLUSTERS/ROLES/RESIZE/ACTION\",\"MICROSOFT.HDINSIGHT/CLUSTERS/SCRIPTACTIONS/DELETE\",\"MICROSOFT.HDINSIGHT/CLUSTERS/SCRIPTACTIONS/READ\",\"MICROSOFT.HDINSIGHT/CLUSTERS/SCRIPTEXECUTIONHISTORY/PROMOTE/ACTION\",\"MICROSOFT.HDINSIGHT/CLUSTERS/SCRIPTEXECUTIONHISTORY/READ\",\"MICROSOFT.HDINSIGHT/CLUSTERS/UPDATEGATEWAYSETTINGS/ACTION\",\"MICROSOFT.HDINSIGHT/CLUSTERS/WRITE\",\"MICROSOFT.HDINSIGHT/LOCATIONS/AVAILABLECLUSTERVERSIONS/READ\",\"MICROSOFT.HDINSIGHT/LOCATIONS/AZUREASYNCOPERATIONS/READ\",\"MICROSOFT.HDINSIGHT/LOCATIONS/BILLINGSPECS/READ\",\"MICROSOFT.HDINSIGHT/LOCATIONS/CAPABILITIES/READ\",\"MICROSOFT.HDINSIGHT/LOCATIONS/CHECKNAMEAVAILABILITY/ACTION\",\"MICROSOFT.HDINSIGHT/LOCATIONS/OPERATIONRESULTS/READ\",\"MICROSOFT.HDINSIGHT/LOCATIONS/OPERATIONSTATUSES/READ\",\"MICROSOFT.HDINSIGHT/LOCATIONS/OPERATIONSTATUSES/WRITE\",\"MICROSOFT.HDINSIGHT/LOCATIONS/USAGES/READ\",\"MICROSOFT.HDINSIGHT/LOCATIONS/VALIDATECREATEREQUEST/ACTION\",\"MICROSOFT.HDINSIGHT/OPERATIONS/READ\",\"MICROSOFT.HDINSIGHT/REGISTER/ACTION\",\"MICROSOFT.HDINSIGHT/RESOURCETYPES/READ\",\"MICROSOFT.HDINSIGHT/UNREGISTER/ACTION\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-07-05T05:57:31.8286631Z\",\"updatedOn\":\"2024-07-05T05:57:31.8286631Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0847e196-2fd2-4c2f-a48c-fca6fd030f44\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0847e196-2fd2-4c2f-a48c-fca6fd030f44\"},{\"properties\":{\"roleName\":\"Operator + Nexus Compute Contributor Role (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"(Preview) + Manage and configure Azure Operator Nexus infrastructure resources. This role + is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/classicAdministrators/operationstatuses/read\",\"Microsoft.Authorization/classicAdministrators/read\",\"Microsoft.Authorization/denyAssignments/read\",\"Microsoft.Authorization/diagnosticSettings/read\",\"Microsoft.Authorization/diagnosticSettingsCategories/read\",\"Microsoft.Authorization/locks/read\",\"Microsoft.Authorization/operations/read\",\"Microsoft.Authorization/permissions/read\",\"Microsoft.Authorization/policyAssignments/read\",\"Microsoft.Authorization/policyAssignments/privateLinkAssociations/read\",\"Microsoft.Authorization/policyAssignments/resourceManagementPrivateLinks/read\",\"Microsoft.Authorization/policyAssignments/resourceManagementPrivateLinks/privateEndpointConnectionProxies/read\",\"Microsoft.Authorization/policyAssignments/resourceManagementPrivateLinks/privateEndpointConnections/read\",\"Microsoft.Authorization/policyDefinitions/read\",\"Microsoft.Authorization/policyExemptions/read\",\"Microsoft.Authorization/policySetDefinitions/read\",\"Microsoft.Authorization/providerOperations/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleAssignmentScheduleInstances/read\",\"Microsoft.Authorization/roleAssignmentScheduleRequests/read\",\"Microsoft.Authorization/roleAssignmentSchedules/read\",\"Microsoft.Authorization/roleDefinitions/read\",\"Microsoft.Authorization/roleEligibilityScheduleInstances/read\",\"Microsoft.Authorization/roleEligibilityScheduleRequests/read\",\"Microsoft.Authorization/roleEligibilitySchedules/read\",\"Microsoft.Authorization/roleManagementPolicies/read\",\"Microsoft.Authorization/roleManagementPolicyAssignments/read\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.ExtendedLocation/customLocations/read\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.Insights/alertRules/activated/action\",\"Microsoft.Insights/alertRules/delete\",\"Microsoft.Insights/alertRules/incidents/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Insights/alertRules/resolved/action\",\"Microsoft.Insights/alertRules/throttled/action\",\"Microsoft.Insights/alertRules/write\",\"Microsoft.Kubernetes/connectedClusters/read\",\"Microsoft.KubernetesConfiguration/extensions/read\",\"Microsoft.ManagedNetworkFabric/networkFabricControllers/join/action\",\"Microsoft.ManagedNetworkFabric/networkFabrics/join/action\",\"Microsoft.ManagedNetworkFabric/networkRacks/join/action\",\"Microsoft.NetworkCloud/bareMetalMachines/cordon/action\",\"Microsoft.NetworkCloud/bareMetalMachines/delete\",\"Microsoft.NetworkCloud/bareMetalMachines/powerOff/action\",\"Microsoft.NetworkCloud/bareMetalMachines/read\",\"Microsoft.NetworkCloud/bareMetalMachines/reimage/action\",\"Microsoft.NetworkCloud/bareMetalMachines/replace/action\",\"Microsoft.NetworkCloud/bareMetalMachines/restart/action\",\"Microsoft.NetworkCloud/bareMetalMachines/runDataExtracts/action\",\"Microsoft.NetworkCloud/bareMetalMachines/runReadCommands/action\",\"Microsoft.NetworkCloud/bareMetalMachines/start/action\",\"Microsoft.NetworkCloud/bareMetalMachines/uncordon/action\",\"Microsoft.NetworkCloud/bareMetalMachines/write\",\"Microsoft.NetworkCloud/clusterManagers/delete\",\"Microsoft.NetworkCloud/clusterManagers/read\",\"Microsoft.NetworkCloud/clusterManagers/write\",\"Microsoft.NetworkCloud/clusters/bareMetalMachineKeySets/read\",\"Microsoft.NetworkCloud/clusters/bmcKeySets/read\",\"Microsoft.NetworkCloud/clusters/continueUpdateVersion/action\",\"Microsoft.NetworkCloud/clusters/delete\",\"Microsoft.NetworkCloud/clusters/deploy/action\",\"Microsoft.NetworkCloud/clusters/metricsConfigurations/delete\",\"Microsoft.NetworkCloud/clusters/metricsConfigurations/read\",\"Microsoft.NetworkCloud/clusters/metricsConfigurations/write\",\"Microsoft.NetworkCloud/clusters/read\",\"Microsoft.NetworkCloud/clusters/scanRuntime/action\",\"Microsoft.NetworkCloud/clusters/updateVersion/action\",\"Microsoft.NetworkCloud/clusters/write\",\"Microsoft.NetworkCloud/locations/operationStatuses/read\",\"Microsoft.NetworkCloud/operations/read\",\"Microsoft.NetworkCloud/rackSkus/read\",\"Microsoft.NetworkCloud/racks/delete\",\"Microsoft.NetworkCloud/racks/join/action\",\"Microsoft.NetworkCloud/racks/read\",\"Microsoft.NetworkCloud/racks/write\",\"Microsoft.NetworkCloud/register/action\",\"Microsoft.NetworkCloud/registeredSubscriptions/read\",\"Microsoft.NetworkCloud/storageAppliances/read\",\"Microsoft.NetworkCloud/unregister/action\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-07-11T15:42:35.0703776Z\",\"updatedOn\":\"2024-07-11T15:42:35.0703776Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4aa368ec-fba9-4e93-81ed-396b3d461cc5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4aa368ec-fba9-4e93-81ed-396b3d461cc5\"},{\"properties\":{\"roleName\":\"Azure + Container Instances Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants + read/write access to container groups provided by Azure Container Instances\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerInstance/containerGroups/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-07-11T17:43:35.3935391Z\",\"updatedOn\":\"2024-07-11T17:43:35.3935391Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d977122-f97e-4b4d-a52f-6b43003ddb4d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d977122-f97e-4b4d-a52f-6b43003ddb4d\"},{\"properties\":{\"roleName\":\"Connector + Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read connectors and their + associated resources, such as impacts and insights.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Impact/Connectors/Read\",\"Microsoft.Impact/WorkloadImpacts/Read\",\"Microsoft.Impact/WorkloadImpacts/Insights/Read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-07-12T08:35:40.7641300Z\",\"updatedOn\":\"2024-07-12T08:35:40.7641300Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6cdbb904-5ff3-429d-8169-7d7818b91bd8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6cdbb904-5ff3-429d-8169-7d7818b91bd8\"},{\"properties\":{\"roleName\":\"Transparency + Logs Owner\",\"type\":\"BuiltInRole\",\"description\":\"Grants full access + to manage Transparency Log resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Sovereign/transparencyLogs/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-07-18T17:06:03.4011538Z\",\"updatedOn\":\"2024-07-18T17:06:03.4011538Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8ad4d0ee-9bfb-49e8-93fc-01abb8db6240\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8ad4d0ee-9bfb-49e8-93fc-01abb8db6240\"},{\"properties\":{\"roleName\":\"Grafana + Limited Viewer\",\"type\":\"BuiltInRole\",\"description\":\"View home page.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaLimitedViewer/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-07-19T05:11:50.7830427Z\",\"updatedOn\":\"2024-07-19T05:11:50.7830427Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/41e04612-9dac-4699-a02b-c82ff2cc3fb5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"41e04612-9dac-4699-a02b-c82ff2cc3fb5\"},{\"properties\":{\"roleName\":\"Disk + Encryption Set Operator for Managed Disks\",\"type\":\"BuiltInRole\",\"description\":\"Provides + permissions to read, write or delete disk encryption sets which are used for + encrypting managed disks with customer managed keys\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/diskEncryptionSets/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-07-19T21:32:25.1095326Z\",\"updatedOn\":\"2024-07-19T21:32:25.1095326Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/136d308c-0937-4a49-9bd7-edfb42adbffc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"136d308c-0937-4a49-9bd7-edfb42adbffc\"},{\"properties\":{\"roleName\":\"Bayer + Ag Powered Services Field Imagery Solution Service Role\",\"type\":\"BuiltInRole\",\"description\":\"Provide + access to Field Imagery Solution by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/fields/write\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\",\"Microsoft.AgFoodPlatform/farmBeats/scenes/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-08-02T08:28:42.2829274Z\",\"updatedOn\":\"2024-08-14T16:23:28.4380427Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1af232de-e806-426f-8ca1-c36142449755\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1af232de-e806-426f-8ca1-c36142449755\"},{\"properties\":{\"roleName\":\"Azure + Edge Hardware Center Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Grants + you access to take actions as an edge order administrator\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EdgeOrder/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-08-07T15:26:18.9896197Z\",\"updatedOn\":\"2024-08-07T15:26:18.9896197Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9295f069-25d0-4f44-bb6a-3da70d11aa00\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9295f069-25d0-4f44-bb6a-3da70d11aa00\"},{\"properties\":{\"roleName\":\"Azure + AI Administrator\",\"type\":\"BuiltInRole\",\"description\":\"A Built-In Role + that has all control plane permissions to work with Azure AI and its dependencies.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.CognitiveServices/*\",\"Microsoft.ContainerRegistry/registries/*\",\"Microsoft.DocumentDb/databaseAccounts/*\",\"Microsoft.Features/features/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Features/providers/features/register/action\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/components/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.Insights/generateLiveToken/read\",\"Microsoft.Insights/logDefinitions/read\",\"Microsoft.Insights/metricAlerts/*\",\"Microsoft.Insights/metricdefinitions/read\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/scheduledqueryrules/*\",\"Microsoft.Insights/topology/read\",\"Microsoft.Insights/transactions/read\",\"Microsoft.Insights/webtests/*\",\"Microsoft.KeyVault/*\",\"Microsoft.MachineLearningServices/workspaces/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Storage/storageAccounts/*\",\"Microsoft.Support/*\",\"Microsoft.Search/searchServices/write\",\"Microsoft.Search/searchServices/read\",\"Microsoft.Search/searchServices/delete\",\"Microsoft.Search/searchServices/indexes/*\",\"Microsoft.DataFactory/factories/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-08-08T23:54:27.5831229Z\",\"updatedOn\":\"2024-10-03T15:31:17.7702779Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b78c5d69-af96-48a3-bf8d-a8b4d589de94\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b78c5d69-af96-48a3-bf8d-a8b4d589de94\"},{\"properties\":{\"roleName\":\"Compute + Gallery Image Reader\",\"type\":\"BuiltInRole\",\"description\":\"This is + the role for reading gallery images.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/galleries/images/read\",\"Microsoft.Compute/galleries/images/versions/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-08-12T16:09:21.7547431Z\",\"updatedOn\":\"2024-08-28T15:23:36.0811004Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cf7c76d2-98a3-4358-a134-615aa78bf44d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cf7c76d2-98a3-4358-a134-615aa78bf44d\"},{\"properties\":{\"roleName\":\"Container + Apps Jobs Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read access + to ContainerApps jobs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.app/jobs/read\",\"Microsoft.App/jobs/*/read\",\"Microsoft.App/managedenvironments/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-08-14T16:23:28.4380427Z\",\"updatedOn\":\"2024-08-14T16:23:28.4380427Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/edd66693-d32a-450b-997d-0158c03976b0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"edd66693-d32a-450b-997d-0158c03976b0\"},{\"properties\":{\"roleName\":\"Container + Apps Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Full management + of Container Apps, including creation, deletion, and updates.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.App/containerApps/*/read\",\"Microsoft.App/containerApps/*/write\",\"Microsoft.App/containerApps/*/delete\",\"Microsoft.App/containerApps/*/action\",\"Microsoft.App/managedEnvironments/read\",\"Microsoft.App/managedEnvironments/*/read\",\"Microsoft.App/managedEnvironments/join/action\",\"Microsoft.App/managedEnvironments/checknameavailability/action\",\"Microsoft.App/connectedEnvironments/read\",\"Microsoft.App/connectedEnvironments/*/read\",\"Microsoft.App/connectedEnvironments/join/action\",\"Microsoft.App/connectedEnvironments/checknameavailability/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-08-14T16:23:28.4390439Z\",\"updatedOn\":\"2024-08-14T16:23:28.4390439Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/358470bc-b998-42bd-ab17-a7e34c199c0f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"358470bc-b998-42bd-ab17-a7e34c199c0f\"},{\"properties\":{\"roleName\":\"Container + Apps Operator\",\"type\":\"BuiltInRole\",\"description\":\"Read, logstream + and exec into Container Apps.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.App/containerApps/*/read\",\"Microsoft.App/containerApps/*/action\",\"Microsoft.App/managedEnvironments/read\",\"Microsoft.App/managedEnvironments/*/read\",\"Microsoft.App/managedEnvironments/join/action\",\"Microsoft.App/managedEnvironments/checknameavailability/action\",\"Microsoft.App/connectedEnvironments/read\",\"Microsoft.App/connectedEnvironments/*/read\",\"Microsoft.App/connectedEnvironments/join/action\",\"Microsoft.App/connectedEnvironments/checknameavailability/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.App/containerApps/logstream/action\",\"Microsoft.App/containerApps/exec/action\",\"Microsoft.App/containerApps/debug/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-08-14T16:23:28.4380427Z\",\"updatedOn\":\"2024-11-14T16:17:08.9697226Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f3bd1b5c-91fa-40e7-afe7-0c11d331232c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f3bd1b5c-91fa-40e7-afe7-0c11d331232c\"},{\"properties\":{\"roleName\":\"Container + Apps SessionPools Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read + access to ContainerApps sessionpools.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.App/sessionPools/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-08-14T16:23:28.4400430Z\",\"updatedOn\":\"2024-08-14T16:23:28.4400430Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/af61e8fc-2633-4b95-bed3-421ad6826515\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"af61e8fc-2633-4b95-bed3-421ad6826515\"},{\"properties\":{\"roleName\":\"Container + Apps SessionPools Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Full + management of Container Apps SessionPools, including creation, deletion, and + updates.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.App/sessionPools/*/read\",\"Microsoft.App/sessionPools/*/write\",\"Microsoft.App/sessionPools/*/delete\",\"Microsoft.App/sessionPools/*/action\",\"microsoft.App/managedEnvironments/read\",\"Microsoft.App/managedEnvironments/*/read\",\"Microsoft.App/managedEnvironments/join/action\",\"Microsoft.App/managedEnvironments/checknameavailability/action\",\"microsoft.App/connectedEnvironments/read\",\"Microsoft.App/connectedEnvironments/*/read\",\"Microsoft.App/connectedEnvironments/join/action\",\"Microsoft.App/connectedEnvironments/checknameavailability/action\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-08-14T16:23:28.4420428Z\",\"updatedOn\":\"2024-08-14T16:23:28.4420428Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f7669afb-68b2-44b4-9c5f-6d2a47fddda0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f7669afb-68b2-44b4-9c5f-6d2a47fddda0\"},{\"properties\":{\"roleName\":\"Container + Apps ManagedEnvironments Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Full + management of Container Apps ManagedEnvironments, including creation, deletion, + and updates.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.App/managedEnvironments/*/read\",\"Microsoft.App/managedEnvironments/*/write\",\"Microsoft.App/managedEnvironments/*/delete\",\"Microsoft.App/managedEnvironments/*/action\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-08-14T16:23:28.4410422Z\",\"updatedOn\":\"2024-08-14T16:23:28.4410422Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/57cc5028-e6a7-4284-868d-0611c5923f8d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"57cc5028-e6a7-4284-868d-0611c5923f8d\"},{\"properties\":{\"roleName\":\"Container + Apps ManagedEnvironments Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read + access to ContainerApps managedenvironments.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.App/managedEnvironments/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-08-14T16:23:28.4410422Z\",\"updatedOn\":\"2024-08-14T16:23:28.4410422Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1b32c00b-7eff-4c22-93e6-93d11d72d2d8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1b32c00b-7eff-4c22-93e6-93d11d72d2d8\"},{\"properties\":{\"roleName\":\"Container + Apps Jobs Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Full management + of Container Apps jobs, including creation, deletion, and updates.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"microsoft.app/jobs/read\",\"Microsoft.App/jobs/*/read\",\"Microsoft.App/jobs/*/action\",\"Microsoft.App/jobs/write\",\"Microsoft.App/jobs/delete\",\"Microsoft.app/managedenvironments/read\",\"Microsoft.App/managedenvironments/*/read\",\"Microsoft.App/managedenvironments/join/action\",\"Microsoft.App/managedenvironments/checknameavailability/action\",\"Microsoft.app/connectedEnvironments/read\",\"Microsoft.App/connectedEnvironments/*/read\",\"Microsoft.App/connectedEnvironments/join/action\",\"Microsoft.App/connectedEnvironments/checknameavailability/action\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-08-14T16:23:29.0789650Z\",\"updatedOn\":\"2024-08-14T16:23:29.0789650Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4e3d2b60-56ae-4dc6-a233-09c8e5a82e68\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4e3d2b60-56ae-4dc6-a233-09c8e5a82e68\"},{\"properties\":{\"roleName\":\"Durable + Task Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Durable + Task role for all data access operations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DurableTask/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-08-16T21:35:11.3906589Z\",\"updatedOn\":\"2024-08-16T21:35:11.3906589Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0ad04412-c4d5-4796-b79c-f76d14c8d402\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0ad04412-c4d5-4796-b79c-f76d14c8d402\"},{\"properties\":{\"roleName\":\"KubernetesRuntime + Load Balancer Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Read, + write, and delete load balancers in an Arc connected Kubernetes cluster\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.KubernetesRuntime/loadBalancers/read\",\"Microsoft.KubernetesRuntime/loadBalancers/write\",\"Microsoft.KubernetesRuntime/loadBalancers/delete\",\"Microsoft.KubernetesRuntime/bgpPeers/read\",\"Microsoft.KubernetesRuntime/bgpPeers/write\",\"Microsoft.KubernetesRuntime/bgpPeers/delete\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-08-27T15:13:33.3297850Z\",\"updatedOn\":\"2024-08-27T15:13:33.3297850Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1a5682fc-4f12-4b25-927e-e8cfed0c539e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1a5682fc-4f12-4b25-927e-e8cfed0c539e\"},{\"properties\":{\"roleName\":\"AVS + Orchestrator Role\",\"type\":\"BuiltInRole\",\"description\":\"Do not remove + this role from your resource group 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 create the supporting resources in + the resource group of the private clouds attached virtual network and bind + them to the attached virtual network. This role is not intended for use cases + outside of assignment to the associated AVS identity in your entra-id tenant.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/operationStatuses/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Network/virtualHubs/delete\",\"Microsoft.Network/publicIPAddresses/delete\",\"Microsoft.Network/networkInterfaces/delete\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/delete\",\"Microsoft.Network/virtualNetworks/subnets/delete\",\"Microsoft.Network/networkIntentPolicies/read\",\"Microsoft.Network/networkIntentPolicies/delete\",\"Microsoft.Network/networkIntentPolicies/write\",\"Microsoft.Network/networkSecurityGroups/delete\",\"Microsoft.Network/networkSecurityGroups/write\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/networkSecurityGroups/securityRules/read\",\"Microsoft.Network/networkSecurityGroups/securityRules/write\",\"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/write\",\"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/read\",\"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/delete\",\"Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action\",\"Microsoft.Network/virtualNetworks/subnets/unprepareNetworkPolicies/action\",\"Microsoft.Network/virtualHubs/write\",\"Microsoft.Network/publicIPAddresses/write\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualHubs/ipConfigurations/write\",\"Microsoft.Network/networkSecurityGroups/securityRules/read\",\"Microsoft.Network/virtualHubs/ipConfigurations/read\",\"Microsoft.Network/virtualHubs/bgpConnections/write\",\"Microsoft.Network/virtualHubs/bgpConnections/read\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\"Microsoft.Network/virtualNetworks/peer/action\",\"Microsoft.Network/locations/operations/read\",\"Microsoft.Network/locations/operationResults/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/write\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/routeTables/read\",\"Microsoft.Network/routeTables/write\",\"Microsoft.Network/routeTables/delete\",\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Network/routeTables/routes/read\",\"Microsoft.Network/routeTables/routes/write\",\"Microsoft.Network/routeTables/routes/delete\",\"Microsoft.Network/virtualNetworks/join/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/roleAssignments/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"2.0\",\"condition\":\"(!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) + OR @Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{d715fb95a0f04f1c8be65ad2d2767f67, + 4d97b98b1d4f4787a291c67834d212e7, 49fc33c1886f4b21a00e1d9993234734}\"}],\"createdOn\":\"2024-08-28T15:23:36.0811004Z\",\"updatedOn\":\"2025-02-14T20:40:02.5080211Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d715fb95-a0f0-4f1c-8be6-5ad2d2767f67\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d715fb95-a0f0-4f1c-8be6-5ad2d2767f67\"},{\"properties\":{\"roleName\":\"Service + Connector Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can Manage + Service Connector.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceLinker/linkers/read\",\"Microsoft.ServiceLinker/linkers/delete\",\"Microsoft.ServiceLinker/linkers/write\",\"Microsoft.ServiceLinker/linkers/listConfigurations/action\",\"Microsoft.ServiceLinker/linkers/validateLinker/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-08-29T15:27:16.4040041Z\",\"updatedOn\":\"2024-08-29T15:27:16.4040041Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/db7003cd-07a9-490c-bfa5-23e40314f8d7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"db7003cd-07a9-490c-bfa5-23e40314f8d7\"},{\"properties\":{\"roleName\":\"Azure + Device Update Agent\",\"type\":\"BuiltInRole\",\"description\":\"Provide full + access to all Azure Device Update agent operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/updateAccounts/agents/requestUpdate/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-09-02T15:07:07.8698996Z\",\"updatedOn\":\"2024-09-02T15:07:07.8698996Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a740172-0fc2-4039-972c-b31864cd47d6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2a740172-0fc2-4039-972c-b31864cd47d6\"},{\"properties\":{\"roleName\":\"Enclave + Approver Role\",\"type\":\"BuiltInRole\",\"description\":\"Read all resources + in Azure Virtual Enclaves and Approve approval requests within the Enclave\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Mission/Operations/read\",\"Microsoft.Mission/communities/read\",\"Microsoft.Mission/internalConnections/read\",\"Microsoft.Mission/virtualEnclaves/read\",\"Microsoft.Mission/virtualEnclaves/endpoints/read\",\"Microsoft.Mission/virtualEnclaves/workloads/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Features/features/read\",\"Microsoft.Mission/communities/communityEndpoints/read\",\"Microsoft.Mission/communities/transitHubs/read\",\"Microsoft.Mission/enclaveConnections/read\",\"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/read\",\"Microsoft.Mission/approvals/read\",\"Microsoft.Mission/approvals/write\",\"Microsoft.Mission/enclaveConnections/approvalCallback/action\",\"Microsoft.Mission/virtualEnclaves/approvalCallback/action\",\"Microsoft.Mission/virtualEnclaves/enclaveEndpoints/approvalCallback/action\",\"Microsoft.Mission/communities/communityEndpoints/approvalCallback/action\",\"Microsoft.Mission/approvals/initiatorCallback/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-09-02T15:07:07.8698996Z\",\"updatedOn\":\"2025-01-14T16:18:32.7067643Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2142ea27-02ad-4094-bfea-2dbac6d24934\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2142ea27-02ad-4094-bfea-2dbac6d24934\"},{\"properties\":{\"roleName\":\"Key + Vault Purge Operator\",\"type\":\"BuiltInRole\",\"description\":\"Allows permanent + deletion of soft-deleted vaults.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/deletedVaults/read\",\"Microsoft.KeyVault/locations/deletedVaults/purge/action\",\"Microsoft.KeyVault/locations/operationResults/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-09-03T15:18:11.2327233Z\",\"updatedOn\":\"2024-09-03T15:18:11.2327233Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a68e7c17-0ab2-4c09-9a58-125dae29748c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a68e7c17-0ab2-4c09-9a58-125dae29748c\"},{\"properties\":{\"roleName\":\"Cognitive + Services Face Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Full + access to perform all Face APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/Face/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-09-04T15:25:04.7461682Z\",\"updatedOn\":\"2024-09-04T15:25:04.7461682Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b5b0c71d-aca9-4081-aee2-9b1bb335fc1a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b5b0c71d-aca9-4081-aee2-9b1bb335fc1a\"},{\"properties\":{\"roleName\":\"Container + Apps Jobs Operator\",\"type\":\"BuiltInRole\",\"description\":\"Read, start, + and stop Container Apps jobs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"microsoft.app/jobs/read\",\"Microsoft.App/jobs/*/read\",\"Microsoft.App/jobs/*/action\",\"Microsoft.app/managedenvironments/read\",\"Microsoft.App/managedenvironments/*/read\",\"Microsoft.App/managedenvironments/join/action\",\"Microsoft.App/managedenvironments/checknameavailability/action\",\"Microsoft.app/connectedEnvironments/read\",\"Microsoft.App/connectedEnvironments/*/read\",\"Microsoft.App/connectedEnvironments/join/action\",\"Microsoft.App/connectedEnvironments/checknameavailability/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.App/jobs/logstream/action\",\"Microsoft.App/jobs/exec/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-09-09T15:09:55.0632221Z\",\"updatedOn\":\"2024-09-09T15:09:55.0632221Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b9a307c4-5aa3-4b52-ba60-2b17c136cd7b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b9a307c4-5aa3-4b52-ba60-2b17c136cd7b\"},{\"properties\":{\"roleName\":\"Operator + Nexus Owner (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"(Preview) + This role allows full access to Azure Operator Nexus Network Cloud resources. + This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.NetworkCloud/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-09-10T15:22:50.4935371Z\",\"updatedOn\":\"2024-09-10T15:22:50.4935371Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/77be276d-fb44-4f3b-beb5-9bf03c4cd2d3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"77be276d-fb44-4f3b-beb5-9bf03c4cd2d3\"},{\"properties\":{\"roleName\":\"CloudTest + Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Read, write, + delete and perform actions on CloudTest Accounts, CloudTest Pools, 1ES Hosted + Pools and 1ES Images.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CloudTest/*/read\",\"Microsoft.CloudTest/hostedpools/write\",\"Microsoft.CloudTest/hostedpools/delete\",\"Microsoft.CloudTest/images/write\",\"Microsoft.CloudTest/images/delete\",\"Microsoft.CloudTest/images/cancel/action\",\"Microsoft.CloudTest/images/refresh/action\",\"Microsoft.CloudTest/pools/write\",\"Microsoft.CloudTest/pools/delete\",\"Microsoft.CloudTest/accounts/write\",\"Microsoft.CloudTest/accounts/delete\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-09-11T15:31:21.7257585Z\",\"updatedOn\":\"2024-10-03T16:47:55.6838934Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4e9d0bd4-5aab-4f91-92df-9def33fe287c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4e9d0bd4-5aab-4f91-92df-9def33fe287c\"},{\"properties\":{\"roleName\":\"Azure + Automanage Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Azure + Automanage Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Automanage/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-09-11T15:31:21.7247588Z\",\"updatedOn\":\"2024-09-11T15:31:21.7247588Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8d6517c1-e434-405c-9f3f-e0ae65085d76\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8d6517c1-e434-405c-9f3f-e0ae65085d76\"},{\"properties\":{\"roleName\":\"Azure + Bot Service Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"To + perform actions on the bots by copilot studio platform and extensibility team\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.BotService/listAuthServiceProviders/action\",\"Microsoft.BotService/listauthserviceproviders/providers/Microsoft.Insights/diagnosticSettings/write\",\"Microsoft.BotService/botServices/read\",\"Microsoft.BotService/botServices/write\",\"Microsoft.BotService/botServices/delete\",\"Microsoft.BotService/botServices/channels/write\",\"Microsoft.BotService/botServices/channels/read\",\"Microsoft.BotService/botServices/channels/listchannelwithkeys/action\",\"Microsoft.BotService/botServices/channels/delete\",\"Microsoft.BotService/botServices/channels/providers/Microsoft.Insights/diagnosticSettings/write\",\"Microsoft.BotService/botServices/connections/read\",\"Microsoft.BotService/botServices/connections/write\",\"Microsoft.BotService/botServices/connections/delete\",\"Microsoft.BotService/botServices/connections/listwithsecrets/write\",\"Microsoft.BotService/botServices/connections/providers/Microsoft.Insights/diagnosticSettings/write\",\"Microsoft.BotService/botServices/createemailsigninurl/action\",\"Microsoft.BotService/botServices/privateEndpointConnectionsApproval/action\",\"Microsoft.BotService/botServices/joinPerimeter/action\",\"Microsoft.BotService/botServices/providers/Microsoft.Insights/diagnosticSettings/write\",\"Microsoft.BotService/checknameavailability/providers/Microsoft.Insights/diagnosticSettings/write\",\"Microsoft.BotService/hostsettings/providers/Microsoft.Insights/diagnosticSettings/write\",\"Microsoft.BotService/botServices/privateEndpointConnectionProxies/write\",\"Microsoft.BotService/botServices/privateEndpointConnectionProxies/delete\",\"Microsoft.BotService/botServices/privateEndpointConnectionProxies/validate/action\",\"Microsoft.BotService/botServices/privateEndpointConnections/write\",\"Microsoft.BotService/botServices/privateEndpointConnections/delete\",\"Microsoft.BotService/listqnamakerendpointkeys/providers/Microsoft.Insights/diagnosticSettings/write\",\"Microsoft.BotService/botServices/networkSecurityPerimeterConfigurations/reconcile/action\",\"Microsoft.BotService/botServices/networkSecurityPerimeterAssociationProxies/write\",\"Microsoft.BotService/botServices/networkSecurityPerimeterAssociationProxies/delete\",\"Microsoft.BotService/locations/notifyNetworkSecurityPerimeterUpdatesAvailable/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.BotService/botServices/channels/regeneratekeys/action\",\"Microsoft.BotService/botServices/Connections/listWithSecrets/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-09-13T05:43:35.3471462Z\",\"updatedOn\":\"2025-01-31T16:56:52.7807707Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9fc6112f-f48e-4e27-8b09-72a5c94e4ae9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9fc6112f-f48e-4e27-8b09-72a5c94e4ae9\"},{\"properties\":{\"roleName\":\"App + Configuration Reader\",\"type\":\"BuiltInRole\",\"description\":\"Grants permission + for read operations for App Configuration resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AppConfiguration/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-09-16T15:00:44.1461191Z\",\"updatedOn\":\"2024-09-16T15:00:44.1461191Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/175b81b9-6e0d-490a-85e4-0d422273c10c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"175b81b9-6e0d-490a-85e4-0d422273c10c\"},{\"properties\":{\"roleName\":\"App + Configuration Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants + permission for all management operations, except purge, for App Configuration + resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AppConfiguration/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[\"Microsoft.AppConfiguration/locations/deletedConfigurationStores/purge/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-09-16T15:00:44.4010948Z\",\"updatedOn\":\"2024-09-16T15:00:44.4010948Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fe86443c-f201-4fc4-9d2a-ac61149fbda0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fe86443c-f201-4fc4-9d2a-ac61149fbda0\"},{\"properties\":{\"roleName\":\"Service + Fabric Managed Cluster Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Deploy + and manage your Service Fabric Managed Cluster resources. Includes managed + clusters, node types, application types, application type versions, applications, + and services.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceFabric/managedclusters/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-09-18T15:11:06.7941600Z\",\"updatedOn\":\"2024-10-08T15:25:11.4963141Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/83f80186-3729-438c-ad2d-39e94d718838\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"83f80186-3729-438c-ad2d-39e94d718838\"},{\"properties\":{\"roleName\":\"Container + Registry Data Importer and Data Reader\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/importImage/action\",\"Microsoft.ContainerRegistry/registries/read\",\"Microsoft.ContainerRegistry/registries/pull/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-09-20T02:52:09.7821852Z\",\"updatedOn\":\"2024-09-20T02:52:09.7821852Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/577a9874-89fd-4f24-9dbd-b5034d0ad23a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"577a9874-89fd-4f24-9dbd-b5034d0ad23a\"},{\"properties\":{\"roleName\":\"Azure + Batch Service Orchestration Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants + the required permissions to Azure Batch Resource Provider to manage compute + and other backing resources in the subscription.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Security/assessments/read\",\"Microsoft.AzureFleet/fleets/write\",\"Microsoft.AzureFleet/fleets/read\",\"Microsoft.AzureFleet/fleets/delete\",\"Microsoft.Compute/locations/DiskOperations/read\",\"Microsoft.Compute/locations/operations/read\",\"Microsoft.Compute/virtualMachineScaleSets/approveRollingUpgrade/action\",\"Microsoft.Compute/virtualMachineScaleSets/deallocate/action\",\"Microsoft.Compute/virtualMachineScaleSets/delete\",\"Microsoft.Compute/virtualMachineScaleSets/delete/action\",\"Microsoft.Compute/VirtualMachineScaleSets/read\",\"Microsoft.Compute/virtualMachineScaleSets/reimage/action\",\"Microsoft.Compute/virtualMachineScaleSets/reimageall/action\",\"Microsoft.Compute/virtualMachineScaleSets/restart/action\",\"Microsoft.Compute/virtualMachineScaleSets/start/action\",\"Microsoft.Compute/virtualMachineScaleSets/write\",\"Microsoft.Compute/virtualMachineScaleSets/extensions/read\",\"microsoft.Compute/virtualMachineScaleSets/networkInterfaces/read\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\"Microsoft.Compute/virtualMachineScaleSets/virtualmachines/restart/action\",\"Microsoft.Compute/diskEncryptionSets/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/dataCollectionRuleAssociations/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/delete\",\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Network/networkWatchers/read\",\"Microsoft.Network/virtualNetworks/delete\",\"Microsoft.Network/virtualNetworks/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-09-23T15:05:04.8272481Z\",\"updatedOn\":\"2025-02-13T16:18:49.5107096Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a35466a1-cfd6-450a-b35e-683fcdf30363\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a35466a1-cfd6-450a-b35e-683fcdf30363\"},{\"properties\":{\"roleName\":\"Microsoft + PowerBI Tenant Operations Role\",\"type\":\"BuiltInRole\",\"description\":\"Allows + management of tenant operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.PowerBI/tenants/workspaces/read\",\"Microsoft.PowerBI/tenants/workspaces/delete\",\"Microsoft.PowerBI/tenants/read\",\"Microsoft.PowerBI/tenants/delete\",\"Microsoft.PowerBI/tenants/write\",\"Microsoft.PowerBI/tenants/workspaces/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-09-23T15:05:04.8262456Z\",\"updatedOn\":\"2024-09-23T15:05:04.8262456Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8c87871d-6201-42da-abb1-1c0c985ff71c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8c87871d-6201-42da-abb1-1c0c985ff71c\"},{\"properties\":{\"roleName\":\"Service + Fabric Cluster Contributor\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceFabric/clusters/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-02T15:19:07.1483126Z\",\"updatedOn\":\"2024-10-08T15:25:12.0748061Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b6efc156-f0da-4e90-a50a-8c000140b017\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b6efc156-f0da-4e90-a50a-8c000140b017\"},{\"properties\":{\"roleName\":\"Stream + Analytics Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor + access to Clusters and Streaming Jobs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.StreamAnalytics/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-03T16:47:55.6818914Z\",\"updatedOn\":\"2024-10-03T16:47:55.6818914Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6e0c8711-85a0-4490-8365-8ec13c4560b4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6e0c8711-85a0-4490-8365-8ec13c4560b4\"},{\"properties\":{\"roleName\":\"Stream + Analytics Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read-only access + to Clusters and Streaming Jobs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.StreamAnalytics/streamingjobs/Read\",\"Microsoft.StreamAnalytics/streamingjobs/*/Read\",\"Microsoft.StreamAnalytics/clusters/Read\",\"Microsoft.StreamAnalytics/clusters/*/Read\",\"Microsoft.StreamAnalytics/clusters/ListStreamingJobs/action\",\"Microsoft.StreamAnalytics/locations/*/Read\",\"Microsoft.StreamAnalytics/operations/Read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-03T16:47:55.6818914Z\",\"updatedOn\":\"2024-10-03T16:47:55.6818914Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1dfc38e8-6ce7-447f-807c-029c65262c5f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1dfc38e8-6ce7-447f-807c-029c65262c5f\"},{\"properties\":{\"roleName\":\"Durable + Task Worker\",\"type\":\"BuiltInRole\",\"description\":\"Used by worker applications + to interact with the Durable Task service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DurableTask/orchestrations/execute/action\",\"Microsoft.DurableTask/schedulers/taskhubs/orchestrations/execute/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-10-07T15:14:27.4184150Z\",\"updatedOn\":\"2025-03-21T22:56:18.4331437Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/80d0d6b0-f522-40a4-8886-a5a11720c375\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"80d0d6b0-f522-40a4-8886-a5a11720c375\"},{\"properties\":{\"roleName\":\"Portal + Dashboard Writer Service Role\",\"type\":\"BuiltInRole\",\"description\":\"Can + write an Azure Portal Dashboard\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Portal/dashboards/read\",\"Microsoft.Portal/dashboards/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"1.0\",\"condition\":\"@Resource[HasObotoken] + boolequals true\"}],\"createdOn\":\"2024-10-09T15:31:49.3691696Z\",\"updatedOn\":\"2025-01-17T21:39:31.0521260Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/78eacb5e-e318-4560-85a9-e6a724ca60c9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"78eacb5e-e318-4560-85a9-e6a724ca60c9\"},{\"properties\":{\"roleName\":\"Microsoft.Windows365.CloudPcDelegatedMsis + Writer User\",\"type\":\"BuiltInRole\",\"description\":\"Built in role to + perform Write operations on CloudPcDelegatedMsis resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Windows365/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-15T15:28:55.9466167Z\",\"updatedOn\":\"2024-10-15T15:28:55.9466167Z\",\"createdBy\":\"dipakmahajan\",\"updatedBy\":\"dipakmahajan\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21bffb94-04c0-4ed0-b676-68bb926e832b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21bffb94-04c0-4ed0-b676-68bb926e832b\"},{\"properties\":{\"roleName\":\"Landing + Zone Account Owner\",\"type\":\"BuiltInRole\",\"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).\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Sovereign/landingZoneAccounts/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-15T15:28:55.9476171Z\",\"updatedOn\":\"2024-10-15T15:28:55.9476171Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bf2b6809-e9a5-4aea-a6e1-40a9dc8c43a7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bf2b6809-e9a5-4aea-a6e1-40a9dc8c43a7\"},{\"properties\":{\"roleName\":\"Landing + Zone Account Reader\",\"type\":\"BuiltInRole\",\"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).\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Sovereign/landingZoneAccounts/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-15T15:28:55.9476171Z\",\"updatedOn\":\"2024-10-15T15:28:55.9476171Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2718b1f7-eb07-424e-8868-0137541392a1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2718b1f7-eb07-424e-8868-0137541392a1\"},{\"properties\":{\"roleName\":\"Defender + CSPM Storage Data Scanner\",\"type\":\"BuiltInRole\",\"description\":\"Grants + access to read blobs and files. This role is used by the data scanner of Dfender + CSPM.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/fileServices/shares/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"],\"notDataActions\":[]}],\"createdOn\":\"2024-10-17T15:43:50.3319289Z\",\"updatedOn\":\"2024-11-07T16:11:40.6980357Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0b6ca2e8-2cdc-4bd6-b896-aa3d8c21fc35\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0b6ca2e8-2cdc-4bd6-b896-aa3d8c21fc35\"},{\"properties\":{\"roleName\":\"Azure + Batch Account Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + view all resources including pools and jobs in the Batch account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Batch/batchAccounts/read\",\"Microsoft.Batch/batchAccounts/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Batch/batchAccounts/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2024-10-17T15:43:50.3319289Z\",\"updatedOn\":\"2024-10-17T15:43:50.3319289Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/11076f67-66f6-4be0-8f6b-f0609fd05cc9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"11076f67-66f6-4be0-8f6b-f0609fd05cc9\"},{\"properties\":{\"roleName\":\"Azure + Batch Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants + full access to manage all Batch resources, including Batch accounts, pools + and jobs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Batch/batchAccounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Batch/batchAccounts/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-10-17T15:43:50.3319289Z\",\"updatedOn\":\"2024-10-17T15:43:50.3319289Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/29fe4964-1e60-436b-bd3a-77fd4c178b3c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"29fe4964-1e60-436b-bd3a-77fd4c178b3c\"},{\"properties\":{\"roleName\":\"Azure + Batch Job Submitter\",\"type\":\"BuiltInRole\",\"description\":\"Lets you + submit and manage jobs in the Batch account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Batch/batchAccounts/applications/read\",\"Microsoft.Batch/batchAccounts/applications/versions/read\",\"Microsoft.Batch/batchAccounts/pools/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Batch/batchAccounts/jobSchedules/*\",\"Microsoft.Batch/batchAccounts/jobs/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-10-17T15:43:50.3319289Z\",\"updatedOn\":\"2024-10-17T15:43:50.3319289Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/48e5e92e-a480-4e71-aa9c-2778f4c13781\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"48e5e92e-a480-4e71-aa9c-2778f4c13781\"},{\"properties\":{\"roleName\":\"Azure + Batch Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants + permissions to manage Batch pools and jobs but not to modify accounts.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Batch/batchAccounts/read\",\"Microsoft.Batch/batchAccounts/applications/*\",\"Microsoft.Batch/batchAccounts/certificates/*\",\"Microsoft.Batch/batchAccounts/certificateOperationResults/*\",\"Microsoft.Batch/batchAccounts/pools/*\",\"Microsoft.Batch/batchAccounts/poolOperationResults/*\",\"Microsoft.Batch/locations/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Batch/batchAccounts/jobSchedules/*\",\"Microsoft.Batch/batchAccounts/jobs/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-10-17T15:43:50.3319289Z\",\"updatedOn\":\"2024-10-17T15:43:50.3319289Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6aaa78f1-f7de-44ca-8722-c64a23943cae\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6aaa78f1-f7de-44ca-8722-c64a23943cae\"},{\"properties\":{\"roleName\":\"Azure + Managed Grafana Workspace Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can + manage Azure Managed Grafana resources, without providing access to the workspaces + themselves.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Dashboard/grafana/write\",\"Microsoft.Dashboard/grafana/delete\",\"Microsoft.Dashboard/grafana/PrivateEndpointConnectionsApproval/action\",\"Microsoft.Dashboard/grafana/managedPrivateEndpoints/action\",\"Microsoft.Dashboard/locations/operationStatuses/write\",\"Microsoft.Dashboard/grafana/privateEndpointConnectionProxies/validate/action\",\"Microsoft.Dashboard/grafana/privateEndpointConnectionProxies/write\",\"Microsoft.Dashboard/grafana/privateEndpointConnectionProxies/delete\",\"Microsoft.Dashboard/grafana/privateEndpointConnections/write\",\"Microsoft.Dashboard/grafana/privateEndpointConnections/delete\",\"Microsoft.Dashboard/grafana/managedPrivateEndpoints/write\",\"Microsoft.Dashboard/grafana/managedPrivateEndpoints/delete\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-17T19:17:56.6677871Z\",\"updatedOn\":\"2024-10-17T19:17:56.6677871Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5c2d7e57-b7c2-4d8a-be4f-82afa42c6e95\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5c2d7e57-b7c2-4d8a-be4f-82afa42c6e95\"},{\"properties\":{\"roleName\":\"Service + Group Reader\",\"type\":\"BuiltInRole\",\"description\":\"Role Definition + for reader of a Service Group\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Management/serviceGroups/read\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-18T18:43:56.1898722Z\",\"updatedOn\":\"2024-10-18T18:43:56.1898722Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de754d53-652d-4c75-a67f-1e48d8b49c97\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"de754d53-652d-4c75-a67f-1e48d8b49c97\"},{\"properties\":{\"roleName\":\"Container + Apps ConnectedEnvironments Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read + access to Container Apps ConnectedEnvironments.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.App/connectedEnvironments/read\",\"Microsoft.App/connectedEnvironments/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-21T15:04:46.4162795Z\",\"updatedOn\":\"2024-10-21T15:04:46.4162795Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5adeb5b-107f-4aca-99ea-4e3f4fc008d5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d5adeb5b-107f-4aca-99ea-4e3f4fc008d5\"},{\"properties\":{\"roleName\":\"Cognitive + Services Data Contributor (Preview)\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-10-21T15:04:45.9033454Z\",\"updatedOn\":\"2024-10-21T15:04:45.9033454Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/19c28022-e58e-450d-a464-0b2a53034789\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"19c28022-e58e-450d-a464-0b2a53034789\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Fleet Manager RBAC Cluster Reader\",\"type\":\"BuiltInRole\",\"description\":\"Grants + read-only access to most Kubernetes cluster-scoped resources in the fleet-managed + hub cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/apiextensions.k8s.io/customresourcedefinitions/read\",\"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\"Microsoft.ContainerService/fleets/apps/deployments/read\",\"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\"Microsoft.ContainerService/fleets/batch/jobs/read\",\"Microsoft.ContainerService/fleets/configmaps/read\",\"Microsoft.ContainerService/fleets/endpoints/read\",\"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\"Microsoft.ContainerService/fleets/events/read\",\"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\"Microsoft.ContainerService/fleets/extensions/deployments/read\",\"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\"Microsoft.ContainerService/fleets/limitranges/read\",\"Microsoft.ContainerService/fleets/namespaces/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\"Microsoft.ContainerService/fleets/nodes/read\",\"Microsoft.ContainerService/fleets/persistentvolumes/read\",\"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\"Microsoft.ContainerService/fleets/resourcequotas/read\",\"Microsoft.ContainerService/fleets/serviceaccounts/read\",\"Microsoft.ContainerService/fleets/services/read\",\"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/memberclusters/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceplacements/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourcebindings/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourcesnapshots/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterschedulingpolicysnapshots/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverrides/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverridesnapshots/read\"],\"notDataActions\":[]}],\"createdOn\":\"2024-10-22T15:14:09.1287923Z\",\"updatedOn\":\"2024-10-22T15:14:09.1287923Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bd80684d-2f5f-4130-892a-0955546282de\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bd80684d-2f5f-4130-892a-0955546282de\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Fleet Manager RBAC Cluster Writer\",\"type\":\"BuiltInRole\",\"description\":\"Grants + read/write access to most Kubernetes cluster-scoped resources in the fleet-managed + hub cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/apiextensions.k8s.io/customresourcedefinitions/read\",\"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\"Microsoft.ContainerService/fleets/apps/daemonsets/write\",\"Microsoft.ContainerService/fleets/apps/deployments/read\",\"Microsoft.ContainerService/fleets/apps/deployments/write\",\"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\"Microsoft.ContainerService/fleets/apps/statefulsets/write\",\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/write\",\"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\"Microsoft.ContainerService/fleets/batch/cronjobs/write\",\"Microsoft.ContainerService/fleets/batch/jobs/read\",\"Microsoft.ContainerService/fleets/batch/jobs/write\",\"Microsoft.ContainerService/fleets/configmaps/read\",\"Microsoft.ContainerService/fleets/configmaps/write\",\"Microsoft.ContainerService/fleets/endpoints/read\",\"Microsoft.ContainerService/fleets/endpoints/write\",\"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\"Microsoft.ContainerService/fleets/events/read\",\"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\"Microsoft.ContainerService/fleets/extensions/daemonsets/write\",\"Microsoft.ContainerService/fleets/extensions/deployments/read\",\"Microsoft.ContainerService/fleets/extensions/deployments/write\",\"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\"Microsoft.ContainerService/fleets/extensions/ingresses/write\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/write\",\"Microsoft.ContainerService/fleets/limitranges/read\",\"Microsoft.ContainerService/fleets/namespaces/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/write\",\"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/write\",\"Microsoft.ContainerService/fleets/nodes/read\",\"Microsoft.ContainerService/fleets/nodes/write\",\"Microsoft.ContainerService/fleets/persistentvolumes/read\",\"Microsoft.ContainerService/fleets/persistentvolumes/write\",\"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\"Microsoft.ContainerService/fleets/persistentvolumeclaims/write\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/write\",\"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\"Microsoft.ContainerService/fleets/replicationcontrollers/write\",\"Microsoft.ContainerService/fleets/resourcequotas/read\",\"Microsoft.ContainerService/fleets/secrets/read\",\"Microsoft.ContainerService/fleets/secrets/write\",\"Microsoft.ContainerService/fleets/serviceaccounts/read\",\"Microsoft.ContainerService/fleets/serviceaccounts/write\",\"Microsoft.ContainerService/fleets/services/read\",\"Microsoft.ContainerService/fleets/services/write\",\"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/memberclusters/read\",\"Microsoft.ContainerService/fleets/cluster.kubernetes-fleet.io/memberclusters/write\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceplacements/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceplacements/write\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourcebindings/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourcesnapshots/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterschedulingpolicysnapshots/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverrides/read\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverrides/write\",\"Microsoft.ContainerService/fleets/placement.kubernetes-fleet.io/clusterresourceoverridesnapshots/read\"],\"notDataActions\":[]}],\"createdOn\":\"2024-10-22T15:14:09.1287923Z\",\"updatedOn\":\"2024-10-22T15:14:09.1287923Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1dc4cd5a-de51-4ee4-bc8e-b40e9c17e320\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1dc4cd5a-de51-4ee4-bc8e-b40e9c17e320\"},{\"properties\":{\"roleName\":\"Chaos + Studio Operator\",\"type\":\"BuiltInRole\",\"description\":\"Can run and see + details for experiments but cannot create experiments or manage targets and + capabilities.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Chaos/*/read\",\"Microsoft.Chaos/experiments/start/action\",\"Microsoft.Chaos/experiments/cancel/action\",\"Microsoft.Chaos/experiments/executions/getExecutionDetails/action\",\"Microsoft.Chaos/locations/operationResults/read\",\"Microsoft.Chaos/locations/operationStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-23T15:16:12.9511529Z\",\"updatedOn\":\"2025-01-09T19:24:51.6852764Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1a40e87e-6645-48e0-b27a-0b115d849a20\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1a40e87e-6645-48e0-b27a-0b115d849a20\"},{\"properties\":{\"roleName\":\"Chaos + Studio Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view targets, + capabilities, experiments, and experiment details.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Chaos/*/read\",\"Microsoft.Chaos/experiments/executions/getExecutionDetails/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-23T15:16:12.9956373Z\",\"updatedOn\":\"2025-01-09T19:24:51.6852764Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/29e2da8a-229c-4157-8ae8-cc72fc506b74\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"29e2da8a-229c-4157-8ae8-cc72fc506b74\"},{\"properties\":{\"roleName\":\"Chaos + Studio Experiment Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can + create, run, and see details for experiments, onboard targets, and manage + capabilities.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Chaos/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-23T15:16:12.9946346Z\",\"updatedOn\":\"2025-01-09T19:24:51.6842763Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7c2e40b7-25eb-482a-82cb-78ba06cb46d5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7c2e40b7-25eb-482a-82cb-78ba06cb46d5\"},{\"properties\":{\"roleName\":\"Container + Apps ConnectedEnvironments Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Full + management of Container Apps ConnectedEnvironments, including creation, deletion, + and updates.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.App/connectedEnvironments/*\",\"Microsoft.App/connectedEnvironments/*/read\",\"Microsoft.App/connectedEnvironments/*/write\",\"Microsoft.App/connectedEnvironments/*/delete\",\"Microsoft.App/connectedEnvironments/*/action\",\"Microsoft.App/connectedEnvironments/daprComponents/listSecrets/action\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-24T15:25:05.8876197Z\",\"updatedOn\":\"2024-10-24T15:25:05.8876197Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6f4fe6fc-f04f-4d97-8528-8bc18c848dca\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6f4fe6fc-f04f-4d97-8528-8bc18c848dca\"},{\"properties\":{\"roleName\":\"Azure + Messaging Connectors Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for full access to Azure Messaging Connectors resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MessagingConnectors/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.MessagingConnectors/*\"],\"notDataActions\":[]}],\"createdOn\":\"2024-10-24T15:25:05.8876197Z\",\"updatedOn\":\"2024-10-24T15:25:05.8876197Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ff478a4e-8633-416e-91bc-ec33ce7c9516\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ff478a4e-8633-416e-91bc-ec33ce7c9516\"},{\"properties\":{\"roleName\":\"Container + Registry Contributor and Data Access Configuration Administrator\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerRegistry/registries/operationStatuses/read\",\"Microsoft.ContainerRegistry/registries/read\",\"Microsoft.ContainerRegistry/registries/write\",\"Microsoft.ContainerRegistry/registries/delete\",\"Microsoft.ContainerRegistry/registries/listCredentials/action\",\"Microsoft.ContainerRegistry/registries/regenerateCredential/action\",\"Microsoft.ContainerRegistry/registries/generateCredentials/action\",\"Microsoft.ContainerRegistry/registries/replications/read\",\"Microsoft.ContainerRegistry/registries/replications/write\",\"Microsoft.ContainerRegistry/registries/replications/delete\",\"Microsoft.ContainerRegistry/registries/replications/operationStatuses/read\",\"Microsoft.ContainerRegistry/registries/privateEndpointConnectionsApproval/action\",\"Microsoft.ContainerRegistry/registries/privateEndpointConnections/read\",\"Microsoft.ContainerRegistry/registries/privateEndpointConnections/write\",\"Microsoft.ContainerRegistry/registries/privateEndpointConnections/delete\",\"Microsoft.ContainerRegistry/registries/privateEndpointConnections/operationStatuses/read\",\"Microsoft.ContainerRegistry/registries/tokens/read\",\"Microsoft.ContainerRegistry/registries/tokens/write\",\"Microsoft.ContainerRegistry/registries/tokens/delete\",\"Microsoft.ContainerRegistry/registries/tokens/operationStatuses/read\",\"Microsoft.ContainerRegistry/registries/scopeMaps/read\",\"Microsoft.ContainerRegistry/registries/scopeMaps/write\",\"Microsoft.ContainerRegistry/registries/scopeMaps/delete\",\"Microsoft.ContainerRegistry/registries/scopeMaps/operationStatuses/read\",\"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/diagnosticSettings/write\",\"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/logDefinitions/read\",\"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.ContainerRegistry/registries/connectedRegistries/read\",\"Microsoft.ContainerRegistry/registries/connectedRegistries/write\",\"Microsoft.ContainerRegistry/registries/connectedRegistries/delete\",\"Microsoft.ContainerRegistry/registries/connectedRegistries/deactivate/action\",\"Microsoft.ContainerRegistry/registries/webhooks/read\",\"Microsoft.ContainerRegistry/registries/webhooks/write\",\"Microsoft.ContainerRegistry/registries/webhooks/delete\",\"Microsoft.ContainerRegistry/registries/webhooks/getCallbackConfig/action\",\"Microsoft.ContainerRegistry/registries/webhooks/ping/action\",\"Microsoft.ContainerRegistry/registries/webhooks/listEvents/action\",\"Microsoft.ContainerRegistry/registries/webhooks/operationStatuses/read\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.ContainerRegistry/locations/operationResults/read\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/privateEndpoints/privateLinkServiceProxies/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-24T22:47:56.9675921Z\",\"updatedOn\":\"2024-10-24T22:47:56.9675921Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3bc748fc-213d-45c1-8d91-9da5725539b9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3bc748fc-213d-45c1-8d91-9da5725539b9\"},{\"properties\":{\"roleName\":\"App + Configuration Data SAS User\",\"type\":\"BuiltInRole\",\"description\":\"Allows + the usage of SAS tokens for authentication.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/useSasAuth/action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-10-28T15:14:04.6453674Z\",\"updatedOn\":\"2024-10-28T15:14:04.6453674Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7fd69092-c9bc-4b59-9e2e-bca63317e147\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7fd69092-c9bc-4b59-9e2e-bca63317e147\"},{\"properties\":{\"roleName\":\"Health + Safeguards Data User\",\"type\":\"BuiltInRole\",\"description\":\"Allows processing + of health data in all available Health Safeguards\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalAnchoring/Process/Action\",\"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalCodesValidation/Process/Action\",\"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalConflictDetection/Process/Action\",\"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalEvidenceVerification/Process/Action\",\"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalProvenance/Process/Action\",\"Microsoft.HealthBot/healthBots/HealthSafeguards/ClinicalSemanticValidation/Process/Action\",\"Microsoft.HealthBot/healthBots/HealthSafeguards/DetectHallucinationsAndOmissions/Process/Action\",\"Microsoft.HealthBot/healthBots/HealthSafeguards/HealthAdaptedFiltering/Process/Action\"],\"notDataActions\":[]}],\"createdOn\":\"2024-10-28T15:14:04.6443673Z\",\"updatedOn\":\"2024-12-10T16:13:44.7172543Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/566f0da3-e2a5-4393-9089-763f8bab8fb6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"566f0da3-e2a5-4393-9089-763f8bab8fb6\"},{\"properties\":{\"roleName\":\"Container + Registry Configuration Reader and Data Access Configuration Reader\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/operationStatuses/read\",\"Microsoft.ContainerRegistry/registries/read\",\"Microsoft.ContainerRegistry/registries/privateEndpointConnections/read\",\"Microsoft.ContainerRegistry/registries/privateEndpointConnections/operationStatuses/read\",\"Microsoft.ContainerRegistry/registries/listCredentials/action\",\"Microsoft.ContainerRegistry/registries/tokens/read\",\"Microsoft.ContainerRegistry/registries/tokens/operationStatuses/read\",\"Microsoft.ContainerRegistry/registries/scopeMaps/read\",\"Microsoft.ContainerRegistry/registries/scopeMaps/operationStatuses/read\",\"Microsoft.ContainerRegistry/registries/webhooks/read\",\"Microsoft.ContainerRegistry/registries/webhooks/getCallbackConfig/action\",\"Microsoft.ContainerRegistry/registries/webhooks/listEvents/action\",\"Microsoft.ContainerRegistry/registries/webhooks/operationStatuses/read\",\"Microsoft.ContainerRegistry/registries/replications/read\",\"Microsoft.ContainerRegistry/registries/replications/operationStatuses/read\",\"Microsoft.ContainerRegistry/registries/connectedRegistries/read\",\"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/diagnosticSettings/write\",\"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/logDefinitions/read\",\"Microsoft.ContainerRegistry/registries/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-10-31T23:06:21.1173941Z\",\"updatedOn\":\"2024-10-31T23:06:21.1173941Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/69b07be0-09bf-439a-b9a6-e73de851bd59\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"69b07be0-09bf-439a-b9a6-e73de851bd59\"},{\"properties\":{\"roleName\":\"Container + Registry Transfer Pipeline Contributor\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/exportPipelines/read\",\"Microsoft.ContainerRegistry/registries/exportPipelines/write\",\"Microsoft.ContainerRegistry/registries/exportPipelines/delete\",\"Microsoft.ContainerRegistry/registries/importPipelines/read\",\"Microsoft.ContainerRegistry/registries/importPipelines/write\",\"Microsoft.ContainerRegistry/registries/importPipelines/delete\",\"Microsoft.ContainerRegistry/registries/pipelineRuns/read\",\"Microsoft.ContainerRegistry/registries/pipelineRuns/write\",\"Microsoft.ContainerRegistry/registries/pipelineRuns/delete\",\"Microsoft.ContainerRegistry/registries/pipelineRuns/operationStatuses/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-11-07T16:11:39.6645356Z\",\"updatedOn\":\"2024-11-07T16:11:39.6645356Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bf94e731-3a51-4a7c-8c54-a1ab9971dfc1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bf94e731-3a51-4a7c-8c54-a1ab9971dfc1\"},{\"properties\":{\"roleName\":\"Desktop + Virtualization App Attach Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provide + permission to manage app attach resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.DesktopVirtualization/appattachpackages/read\",\"Microsoft.DesktopVirtualization/appattachpackages/write\",\"Microsoft.DesktopVirtualization/appattachpackages/delete\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-11-08T16:19:16.0184548Z\",\"updatedOn\":\"2024-11-08T16:19:16.0184548Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/97dfb3ce-e936-462c-9425-9cdb67e66d45\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"97dfb3ce-e936-462c-9425-9cdb67e66d45\"},{\"properties\":{\"roleName\":\"HybridCompute + Machine ListAccessDetails Action In-Built Role\",\"type\":\"BuiltInRole\",\"description\":\"In-Built + Role definition that grants permissions to execute the listAccessDetails action + on HybridCompute Machines\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/listAccessDetails/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-11-11T16:02:05.0085385Z\",\"updatedOn\":\"2025-03-13T16:14:43.6460465Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e9701b4d-e6e7-4657-91cd-360a0881d224\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e9701b4d-e6e7-4657-91cd-360a0881d224\"},{\"properties\":{\"roleName\":\"App + Service Environment Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Manage + App Service Environments but not the App Service Plans or Websites that it + hosts.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Web/hostingEnvironments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-11-12T16:08:18.3404035Z\",\"updatedOn\":\"2024-11-12T16:08:18.3404035Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8ea85a25-eb16-4e29-ab4d-6f2a26c711a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8ea85a25-eb16-4e29-ab4d-6f2a26c711a2\"},{\"properties\":{\"roleName\":\"Kubernetes + Agent Subscription Level Operator\",\"type\":\"BuiltInRole\",\"description\":\"Grants + Microsoft Defender for Cloud subscription level permissions needed to activate + Containers plan\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/read\",\"Microsoft.OperationalInsights/workspaces/listKeys/action\",\"Microsoft.OperationalInsights/workspaces/sharedkeys/action\",\"Microsoft.OperationalInsights/workspaces/sharedkeys/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-11-15T10:04:56.4175374Z\",\"updatedOn\":\"2024-12-13T11:27:18.3550673Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ada52afe-776a-4b4d-a8f2-55670d3d8178\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ada52afe-776a-4b4d-a8f2-55670d3d8178\"},{\"properties\":{\"roleName\":\"Quantum + Workspace Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Create, + read, and modify jobs and other Workspace data. This role is in preview and + subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Quantum/Workspaces/read\",\"Microsoft.Quantum/locations/offerings/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Quantum/Workspaces/jobs/read\",\"Microsoft.Quantum/Workspaces/jobs/write\"],\"notDataActions\":[]}],\"createdOn\":\"2024-11-19T16:16:06.9625778Z\",\"updatedOn\":\"2024-11-19T16:16:06.9625778Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c1410b24-3e69-4857-8f86-4d0a2e603250\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c1410b24-3e69-4857-8f86-4d0a2e603250\"},{\"properties\":{\"roleName\":\"Communication + and Email Service Owner\",\"type\":\"BuiltInRole\",\"description\":\"Create, + read, modify, and delete Communications and Email Service resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Communication/CheckNameAvailability/action\",\"Microsoft.Communication/Locations/OperationStatuses/read\",\"Microsoft.Communication/Locations/OperationStatuses/write\",\"Microsoft.Communication/Operations/read\",\"Microsoft.Communication/CommunicationServices/read\",\"Microsoft.Communication/CommunicationServices/write\",\"Microsoft.Communication/CommunicationServices/delete\",\"Microsoft.Communication/CommunicationServices/ListKeys/action\",\"Microsoft.Communication/CommunicationServices/RegenerateKey/action\",\"Microsoft.Communication/CommunicationServices/LinkNotificationHub/action\",\"Microsoft.Communication/CommunicationServices/EventGridFilters/read\",\"Microsoft.Communication/CommunicationServices/EventGridFilters/write\",\"Microsoft.Communication/CommunicationServices/EventGridFilters/delete\",\"Microsoft.Communication/EmailServices/read\",\"Microsoft.Communication/EmailServices/write\",\"Microsoft.Communication/EmailServices/delete\",\"Microsoft.Communication/EmailServices/Domains/read\",\"Microsoft.Communication/EmailServices/Domains/write\",\"Microsoft.Communication/EmailServices/Domains/delete\",\"Microsoft.Communication/EmailServices/Domains/SenderUsernames/read\",\"Microsoft.Communication/EmailServices/Domains/SenderUsernames/write\",\"Microsoft.Communication/EmailServices/Domains/SenderUsernames/delete\",\"Microsoft.Communication/EmailServices/Domains/SuppressionLists/read\",\"Microsoft.Communication/EmailServices/Domains/SuppressionLists/write\",\"Microsoft.Communication/EmailServices/Domains/SuppressionLists/delete\",\"Microsoft.Communication/EmailServices/Domains/SuppressionLists/SuppressionListAddresses/read\",\"Microsoft.Communication/EmailServices/Domains/SuppressionLists/SuppressionListAddresses/write\",\"Microsoft.Communication/EmailServices/Domains/SuppressionLists/SuppressionListAddresses/delete\",\"Microsoft.Communication/EmailServices/Domains/InitiateVerification/action\",\"Microsoft.Communication/EmailServices/Domains/CancelVerification/action\",\"Microsoft.Communication/EmailServices/Domains/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-11-20T16:26:51.8504583Z\",\"updatedOn\":\"2024-11-20T16:26:51.8504583Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/09976791-48a7-449e-bb21-39d1a415f350\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"09976791-48a7-449e-bb21-39d1a415f350\"},{\"properties\":{\"roleName\":\"Oracle.Database + Autonomous Database Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Grants + full access to manage all Autonomous Database resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Oracle.Database/autonomousDatabases/*/read\",\"Oracle.Database/autonomousDatabases/*/write\",\"Oracle.Database/autonomousDatabases/*/delete\",\"Oracle.Database/autonomousDatabases/*/action\",\"Oracle.Database/Locations/*/read\",\"Oracle.Database/Locations/*/write\",\"Oracle.Database/Operations/read\",\"Oracle.Database/oracleSubscriptions/*/read\",\"Oracle.Database/oracleSubscriptions/*/action\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/locations/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-12-04T16:02:04.8857247Z\",\"updatedOn\":\"2024-12-04T16:02:04.8857247Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/59c05558-2358-462d-ba19-afbd7118936d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"59c05558-2358-462d-ba19-afbd7118936d\"},{\"properties\":{\"roleName\":\"Azure + AI Safety Evaluator\",\"type\":\"BuiltInRole\",\"description\":\"This role + can perform all actions under workspace evaluations and simulations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/evaluations/*\",\"Microsoft.MachineLearningServices/workspaces/simulations/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2024-12-18T16:29:45.1650072Z\",\"updatedOn\":\"2024-12-18T16:29:45.1650072Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/11102f94-c441-49e6-a78b-ef80e0188abc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"11102f94-c441-49e6-a78b-ef80e0188abc\"},{\"properties\":{\"roleName\":\"Container + Registry Tasks Contributor\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/agentpools/read\",\"Microsoft.ContainerRegistry/registries/agentpools/write\",\"Microsoft.ContainerRegistry/registries/agentpools/delete\",\"Microsoft.ContainerRegistry/registries/agentpools/listQueueStatus/action\",\"Microsoft.ContainerRegistry/registries/agentpools/operationResults/status/read\",\"Microsoft.ContainerRegistry/registries/agentpools/operationStatuses/read\",\"Microsoft.ContainerRegistry/registries/tasks/read\",\"Microsoft.ContainerRegistry/registries/tasks/write\",\"Microsoft.ContainerRegistry/registries/tasks/delete\",\"Microsoft.ContainerRegistry/registries/tasks/listDetails/action\",\"Microsoft.ContainerRegistry/registries/scheduleRun/action\",\"Microsoft.ContainerRegistry/registries/listBuildSourceUploadUrl/action\",\"Microsoft.ContainerRegistry/registries/runs/read\",\"Microsoft.ContainerRegistry/registries/runs/write\",\"Microsoft.ContainerRegistry/registries/runs/listLogSasUrl/action\",\"Microsoft.ContainerRegistry/registries/runs/cancel/action\",\"Microsoft.ContainerRegistry/registries/taskruns/read\",\"Microsoft.ContainerRegistry/registries/taskruns/write\",\"Microsoft.ContainerRegistry/registries/taskruns/delete\",\"Microsoft.ContainerRegistry/registries/taskruns/listDetails/action\",\"Microsoft.ContainerRegistry/registries/taskruns/operationStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerRegistry/registries/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-01-13T16:06:06.8277690Z\",\"updatedOn\":\"2025-01-13T16:06:06.8277690Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb382eab-e894-4461-af04-94435c366c3f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fb382eab-e894-4461-af04-94435c366c3f\"},{\"properties\":{\"roleName\":\"Azure + Backup Snapshot Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provide + permissions to backup identity to manage RPC snapshots\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/restorePointCollections/read\",\"Microsoft.Compute/restorePointCollections/write\",\"Microsoft.Compute/restorePointCollections/restorePoints/write\",\"Microsoft.Compute/restorePointCollections/restorePoints/read\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/delete\",\"Microsoft.Compute/disks/beginGetAccess/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-01-13T16:06:06.8277690Z\",\"updatedOn\":\"2025-03-18T15:18:48.6509612Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/afc680e2-a938-412d-b213-9a49efa7fb83\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"afc680e2-a938-412d-b213-9a49efa7fb83\"},{\"properties\":{\"roleName\":\"AVS + on Fleet VIS Role\",\"type\":\"BuiltInRole\",\"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.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/write\",\"Microsoft.Network/virtualNetworks/peer/action\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Network/serviceEndpointPolicies/join/action\",\"Microsoft.Network/natGateways/join/action\",\"Microsoft.Network/networkIntentPolicies/join/action\",\"Microsoft.Network/ddosProtectionPlans/join/action\",\"Microsoft.Network/networkManagers/ipamPools/associateResourcesToPool/action\",\"Microsoft.BareMetal/peeringSettings/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/roleAssignments/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[],\"conditionVersion\":\"2.0\",\"condition\":\"(!(ActionMatches{'Microsoft.Authorization/roleAssignments/delete'})) + OR @Resource[Microsoft.Authorization/roleAssignments:RoleDefinitionId] ForAnyOfAnyValues:GuidEquals{49fc33c1886f4b21a00e1d9993234734}\"}],\"createdOn\":\"2025-01-14T16:18:32.7067643Z\",\"updatedOn\":\"2025-03-11T15:14:12.4278695Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49fc33c1-886f-4b21-a00e-1d9993234734\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49fc33c1-886f-4b21-a00e-1d9993234734\"},{\"properties\":{\"roleName\":\"Edge + Management Copilot User\",\"type\":\"BuiltInRole\",\"description\":\"Enables + users access to Edge Management Copilot.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EdgeManagement/locations/chat/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-01-24T02:55:55.2627422Z\",\"updatedOn\":\"2025-01-24T02:55:55.2627422Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/53e48117-a530-4075-bcbe-d91913e3bdb8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"53e48117-a530-4075-bcbe-d91913e3bdb8\"},{\"properties\":{\"roleName\":\"Durable + Task Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read all Durable + Task Scheduler data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DurableTask/orchestrations/read\",\"Microsoft.DurableTask/orchestrations/metadata/read\"],\"notDataActions\":[]}],\"createdOn\":\"2025-01-24T21:41:35.9328305Z\",\"updatedOn\":\"2025-01-24T21:41:35.9328305Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d6a5505f-6ebb-45a4-896e-ac8274cfc0ac\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d6a5505f-6ebb-45a4-896e-ac8274cfc0ac\"},{\"properties\":{\"roleName\":\"Azure + Stack HCI Edge Machine Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft.AzureStackHCI + Edge Machine Contributor Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureStackHCI/EdgeMachines/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-01-31T17:57:03.7837888Z\",\"updatedOn\":\"2025-01-31T17:57:03.7837888Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1a6f9009-515c-4455-b170-143e4c9ce229\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1a6f9009-515c-4455-b170-143e4c9ce229\"},{\"properties\":{\"roleName\":\"Online + Experimentation Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows + full access to Online Experimentation data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.OnlineExperimentation/workspaces/read\",\"Microsoft.OnlineExperimentation/workspaces/write\",\"Microsoft.OnlineExperimentation/workspaces/delete\",\"Microsoft.OnlineExperimentation/workspaces/action\"],\"notDataActions\":[]}],\"createdOn\":\"2025-01-31T18:42:14.0945842Z\",\"updatedOn\":\"2025-02-17T16:06:31.7759474Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/53747cdd-e97c-477a-948c-b587d0e514b2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"53747cdd-e97c-477a-948c-b587d0e514b2\"},{\"properties\":{\"roleName\":\"Online + Experimentation Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows + read access to Online Experimentation data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.OnlineExperimentation/workspaces/read\"],\"notDataActions\":[]}],\"createdOn\":\"2025-01-31T18:42:14.0945842Z\",\"updatedOn\":\"2025-01-31T18:42:14.0945842Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1363e94d-546f-4fe9-8434-b0eefb292d59\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1363e94d-546f-4fe9-8434-b0eefb292d59\"},{\"properties\":{\"roleName\":\"Chaos + Studio Target Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can + onboard targets and manage capabilities but cannot create, run, or see details + for experiments\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Chaos/targets/write\",\"Microsoft.Chaos/targets/delete\",\"Microsoft.Chaos/targets/read\",\"Microsoft.Chaos/targets/capabilities/write\",\"Microsoft.Chaos/targets/capabilities/delete\",\"Microsoft.Chaos/targets/capabilities/read\",\"Microsoft.Chaos/locations/targetTypes/read\",\"Microsoft.Chaos/locations/targetTypes/capabilityTypes/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-02-17T16:06:31.7689460Z\",\"updatedOn\":\"2025-02-17T16:06:31.7689460Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/59a618e3-3c9a-406e-9f03-1a20dd1c55f1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"59a618e3-3c9a-406e-9f03-1a20dd1c55f1\"},{\"properties\":{\"roleName\":\"Auto + Actions Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows users + to manage Auto Actions resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ComputeSchedule/locations/OperationStatuses/write\",\"Microsoft.ComputeSchedule/autoActions/write\",\"Microsoft.ComputeSchedule/autoActions/delete\",\"Microsoft.ComputeSchedule/autoActions/attachResources/action\",\"Microsoft.ComputeSchedule/autoActions/cancelNextOccurrence/action\",\"Microsoft.ComputeSchedule/autoActions/detachResources/action\",\"Microsoft.ComputeSchedule/autoActions/disable/action\",\"Microsoft.ComputeSchedule/autoActions/enable/action\",\"Microsoft.ComputeSchedule/autoActions/listResources/action\",\"Microsoft.ComputeSchedule/autoActions/patchResources/action\",\"Microsoft.ComputeSchedule/autoActions/triggerManualOccurrence/action\",\"Microsoft.ComputeSchedule/autoActions/occurrences/cancel/action\",\"Microsoft.ComputeSchedule/autoActions/occurrences/delay/action\",\"Microsoft.ComputeSchedule/autoActions/occurrences/listResources/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-02-19T16:26:40.4653211Z\",\"updatedOn\":\"2025-02-19T16:26:40.4653211Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a8d01690-9418-4783-8ca2-9f0f1791783d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a8d01690-9418-4783-8ca2-9f0f1791783d\"},{\"properties\":{\"roleName\":\"Azure + Device Onboarding Discovery Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can + read, write or delete the discovery and it's child resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DeviceOnboarding/discoveryServices/*\",\"Microsoft.DeviceOnboarding/locations/operationStatuses/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-02-21T23:06:48.1932019Z\",\"updatedOn\":\"2025-02-21T23:06:48.1932019Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a227fb39-f479-404b-96fd-0176f5d88ab4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a227fb39-f479-404b-96fd-0176f5d88ab4\"},{\"properties\":{\"roleName\":\"SSH + PublicKeys Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"This is + the role created for SSH PublicKeys Reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/sshpublickeys/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-02-25T16:07:58.8393898Z\",\"updatedOn\":\"2025-02-25T16:07:58.8393898Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/31ef6312-5b0c-4ce9-8c5d-587a91344fe7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"31ef6312-5b0c-4ce9-8c5d-587a91344fe7\"},{\"properties\":{\"roleName\":\"SSH + PublicKeys Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"This + is the role created for SSH PublicKeys Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/sshpublickeys/read\",\"Microsoft.Compute/sshpublickeys/write\",\"Microsoft.Compute/sshpublickeys/delete\",\"Microsoft.Compute/sshpublickeys/generatekeypair/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-02-25T16:07:59.0006525Z\",\"updatedOn\":\"2025-02-25T16:07:59.0006525Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fc6e3395-6a8c-4527-bb4c-d0abd41e8e74\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fc6e3395-6a8c-4527-bb4c-d0abd41e8e74\"},{\"properties\":{\"roleName\":\"Azure + Kubernetes Service Agent Pool Manager Role\",\"type\":\"BuiltInRole\",\"description\":\"Role + for agentpool related actions\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/managedClusters/agentPools/read\",\"Microsoft.ContainerService/managedClusters/agentPools/write\",\"Microsoft.ContainerService/managedClusters/agentPools/delete\",\"Microsoft.ContainerService/managedClusters/agentPools/upgradeNodeImageVersion/action\",\"Microsoft.ContainerService/managedClusters/agentPools/abort/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-03-07T01:22:11.2026443Z\",\"updatedOn\":\"2025-03-07T01:22:11.2026443Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1b7f3653-4324-473a-9165-bc55e4d04ba8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1b7f3653-4324-473a-9165-bc55e4d04ba8\"},{\"properties\":{\"roleName\":\"Dedicated + Host Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"This is + the role created for DedicatedHosts Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/hostGroups/read\",\"Microsoft.Compute/hostGroups/write\",\"Microsoft.Compute/hostGroups/delete\",\"Microsoft.Compute/hostGroups/hosts/read\",\"Microsoft.Compute/hostGroups/hosts/write\",\"Microsoft.Compute/hostGroups/hosts/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-03-12T15:15:43.6782429Z\",\"updatedOn\":\"2025-03-12T15:15:43.6782429Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/96ebd254-ecc7-4590-aff5-e9af3ff5f3b3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"96ebd254-ecc7-4590-aff5-e9af3ff5f3b3\"},{\"properties\":{\"roleName\":\"Compute + Fleet Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows users + to manage Compute Fleet resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureFleet/fleets/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-03-19T15:21:17.4592440Z\",\"updatedOn\":\"2025-03-19T15:21:17.4592440Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2bed379c-9fba-455b-99e4-6b911073bcf2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2bed379c-9fba-455b-99e4-6b911073bcf2\"},{\"properties\":{\"roleName\":\"Azure + API Center Credential Access Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows + for access to Azure API Center data plane get credentials operations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.ApiCenter/services/workspaces/apis/versions/securityRequirements/read\",\"Microsoft.ApiCenter/services/workspaces/apis/versions/securityRequirements/getCredentials/action\"],\"notDataActions\":[]}],\"createdOn\":\"2025-03-21T17:38:36.0006049Z\",\"updatedOn\":\"2025-03-21T17:38:36.0006049Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1df7cd83-1d3f-41df-95b0-53b30d963369\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1df7cd83-1d3f-41df-95b0-53b30d963369\"},{\"properties\":{\"roleName\":\"Managed + Identity Federated Identity Credential Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Create, + Read, Update, and Delete User Assigned Identity Federated Identity Credentials(FIC)\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/write\",\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/read\",\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials/delete\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2025-03-24T15:12:43.4865666Z\",\"updatedOn\":\"2025-03-24T15:12:43.4865666Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7e559ce2-48d7-4b27-9128-fa1b247f1308\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7e559ce2-48d7-4b27-9128-fa1b247f1308\"}]}" + headers: + cache-control: + - no-cache + content-length: + - '815145' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 27 Mar 2025 05:45:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=0d504196-1423-4569-9a6e-15149656f0ee/southeastasia/580a28cb-d05c-4875-8f1c-d2b6e94a3fff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 34E9BEFAD4AE4FFF81D663F50402BFDB Ref B: MAA201060513047 Ref C: 2025-03-27T05:45:50Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/role/tests/latest/test_role.py b/src/azure-cli/azure/cli/command_modules/role/tests/latest/test_role.py index 1a70801e628..3249fc33fb0 100644 --- a/src/azure-cli/azure/cli/command_modules/role/tests/latest/test_role.py +++ b/src/azure-cli/azure/cli/command_modules/role/tests/latest/test_role.py @@ -689,6 +689,31 @@ def check_changelogs(): finally: self.cmd('ad user delete --id {upn}') + @ResourceGroupPreparer(name_prefix='cli_role_assign') + @AllowLargeResponse() + def test_role_assignment_no_graph(self, resource_group): + with mock.patch('azure.cli.command_modules.role.custom._gen_guid', side_effect=self.create_guid): + self.kwargs.update({ + 'uami': self.create_random_name('clitest', 15), # user-assigned managed identity + # https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles + 'role_reader_guid': 'acdd72a7-3385-48ef-bd42-f606fba81ae7' + }) + self._prepare_scope_kwargs() + + uami = self.cmd('identity create -g {rg} -n {uami} --location westus').get_output_in_json() + self.kwargs['uami_object_id'] = uami['principalId'] + + self.cmd('role assignment create ' + '--assignee-object-id {uami_object_id} --assignee-principal-type ServicePrincipal ' + '--role {role_reader_guid} --scope {rg_id}') + # Verify '--fill-principal-name false' skips the Graph query for filling principalName. + self.cmd('role assignment list --scope {rg_id} --fill-principal-name false', + checks=[ + self.check("length([])", 1), + self.not_exists("[0].principalName") + ]) + # Manually verify the recording file that no HTTP request to https://graph.microsoft.com is made + class RoleAssignmentWithConfigScenarioTest(RoleScenarioTestBase):