diff --git a/linter_exclusions.yml b/linter_exclusions.yml
index cc9aa0ce584..52813468951 100644
--- a/linter_exclusions.yml
+++ b/linter_exclusions.yml
@@ -463,6 +463,26 @@ datafactory pipeline create-run:
reference_pipeline_run_id:
rule_exclusions:
- option_length_too_long
+dataprotection backup-instance restore initialize-for-data-recovery-as-files:
+ parameters:
+ target_blob_container_url:
+ rule_exclusions:
+ - option_length_too_long
+dataprotection backup-vault create:
+ parameters:
+ alerts_for_all_job_failures:
+ rule_exclusions:
+ - option_length_too_long
+dataprotection backup-vault update:
+ parameters:
+ alerts_for_all_job_failures:
+ rule_exclusions:
+ - option_length_too_long
+dataprotection resource-guard update:
+ parameters:
+ critical_operation_exclusion_list:
+ rule_exclusions:
+ - option_length_too_long
datashare consumer dataset-mapping create:
parameters:
share_subscription_name:
diff --git a/src/dataprotection/HISTORY.rst b/src/dataprotection/HISTORY.rst
index 1687e06a6f6..5bec40fb466 100644
--- a/src/dataprotection/HISTORY.rst
+++ b/src/dataprotection/HISTORY.rst
@@ -3,6 +3,11 @@
Release History
===============
+0.4.0
+++++++
+* `az dataprotection resource-guard`: Onboard ResourceGuard to dataprotection extension
+* `az dataprotection backup-vault create/update`: Add support for Azure Monitor based alerts
+
0.3.0
++++++
* API version upgrade with bug fixes
diff --git a/src/dataprotection/azext_dataprotection/generated/_client_factory.py b/src/dataprotection/azext_dataprotection/generated/_client_factory.py
index 6c4facdd237..a603018eeed 100644
--- a/src/dataprotection/azext_dataprotection/generated/_client_factory.py
+++ b/src/dataprotection/azext_dataprotection/generated/_client_factory.py
@@ -38,3 +38,7 @@ def cf_job(cli_ctx, *_):
def cf_restorable_time_range(cli_ctx, *_):
return cf_dataprotection_cl(cli_ctx).restorable_time_ranges
+
+
+def cf_resource_guard(cli_ctx, *_):
+ return cf_dataprotection_cl(cli_ctx).resource_guards
diff --git a/src/dataprotection/azext_dataprotection/generated/_help.py b/src/dataprotection/azext_dataprotection/generated/_help.py
index 057ef443874..379d16faab5 100644
--- a/src/dataprotection/azext_dataprotection/generated/_help.py
+++ b/src/dataprotection/azext_dataprotection/generated/_help.py
@@ -52,14 +52,14 @@
examples:
- name: Create BackupVault
text: |-
- az dataprotection backup-vault create --type "None" --location "WestUS" --storage-settings \
-type="LocallyRedundant" datastore-type="VaultStore" --tags key1="val1" --resource-group "SampleResourceGroup" \
---vault-name "swaggerExample"
+ az dataprotection backup-vault create --type "None" --location "WestUS" --azure-monitor-alerts-for-job-f\
+ailures "Enabled" --storage-settings type="LocallyRedundant" datastore-type="VaultStore" --tags key1="val1" \
+--resource-group "SampleResourceGroup" --vault-name "swaggerExample"
- name: Create BackupVault With MSI
text: |-
- az dataprotection backup-vault create --type "systemAssigned" --location "WestUS" --storage-settings \
-type="LocallyRedundant" datastore-type="VaultStore" --tags key1="val1" --resource-group "SampleResourceGroup" \
---vault-name "swaggerExample"
+ az dataprotection backup-vault create --type "systemAssigned" --location "WestUS" \
+--azure-monitor-alerts-for-job-failures "Enabled" --storage-settings type="LocallyRedundant" \
+datastore-type="VaultStore" --tags key1="val1" --resource-group "SampleResourceGroup" --vault-name "swaggerExample"
"""
helps['dataprotection backup-vault update'] = """
@@ -69,8 +69,8 @@
examples:
- name: Patch BackupVault
text: |-
- az dataprotection backup-vault update --tags newKey="newVal" --resource-group "SampleResourceGroup" \
---vault-name "swaggerExample"
+ az dataprotection backup-vault update --azure-monitor-alerts-for-job-failures "Enabled" --tags \
+newKey="newVal" --resource-group "SampleResourceGroup" --vault-name "swaggerExample"
"""
helps['dataprotection backup-vault delete'] = """
@@ -527,3 +527,38 @@
"2021-02-24T00:35:17.6829685Z" --source-data-store-type "OperationalStore" --start-time "2020-10-17T23:28:17.6829685Z" \
--resource-group "Blob-Backup" --vault-name "ZBlobBackupVaultBVTD3"
"""
+
+helps['dataprotection resource-guard'] = """
+ type: group
+ short-summary: Manage resource guard with dataprotection
+"""
+
+helps['dataprotection resource-guard show'] = """
+ type: command
+ short-summary: "Returns a ResourceGuard belonging to a resource group."
+ examples:
+ - name: Get ResourceGuard
+ text: |-
+ az dataprotection resource-guard show --resource-group "SampleResourceGroup" --resource-guard-name \
+"swaggerExample"
+"""
+
+helps['dataprotection resource-guard create'] = """
+ type: command
+ short-summary: "Creates or updates a ResourceGuard resource belonging to a resource group."
+ examples:
+ - name: Create ResourceGuard
+ text: |-
+ az dataprotection resource-guard create --location "WestUS" --tags key1="val1" --resource-group \
+"SampleResourceGroup" --resource-guard-name "swaggerExample"
+"""
+
+helps['dataprotection resource-guard delete'] = """
+ type: command
+ short-summary: "Deletes a ResourceGuard resource from the resource group."
+ examples:
+ - name: Delete ResourceGuard
+ text: |-
+ az dataprotection resource-guard delete --resource-group "SampleResourceGroup" --resource-guard-name \
+"swaggerExample"
+"""
diff --git a/src/dataprotection/azext_dataprotection/generated/_params.py b/src/dataprotection/azext_dataprotection/generated/_params.py
index dae4ecd1aac..d9366854c56 100644
--- a/src/dataprotection/azext_dataprotection/generated/_params.py
+++ b/src/dataprotection/azext_dataprotection/generated/_params.py
@@ -46,11 +46,19 @@ def load_arguments(self, _):
c.argument('type_', options_list=['--type'], type=str, help='The identityType which can be either '
'SystemAssigned or None', arg_group='Identity')
c.argument('storage_settings', action=AddStorageSettings, nargs='+', help='Storage Settings')
+ c.argument('alerts_for_all_job_failures', options_list=['--azure-monitor-alerts-for-job-failures'],
+ arg_type=get_enum_type(['Enabled', 'Disabled']), help='Property that specifies whether built-in '
+ 'Azure Monitor alerts should be fired for all failed jobs', arg_group='Monitoring Settings Azure '
+ 'Monitor Alert Settings')
with self.argument_context('dataprotection backup-vault update') as c:
c.argument('resource_group_name', resource_group_name_type)
c.argument('vault_name', type=str, help='The name of the backup vault.', id_part='name')
c.argument('tags', tags_type)
+ c.argument('alerts_for_all_job_failures', options_list=['--azure-monitor-alerts-for-job-failures'],
+ arg_type=get_enum_type(['Enabled', 'Disabled']), help='Property that specifies whether built-in '
+ 'Azure Monitor alerts should be fired for all failed jobs', arg_group='Monitoring Settings Azure '
+ 'Monitor Alert Settings')
c.argument('type_', options_list=['--type'], type=str, help='The identityType which can be either '
'SystemAssigned or None', arg_group='Identity')
@@ -221,3 +229,26 @@ def load_arguments(self, _):
arg_type=get_enum_type(['OperationalStore', 'VaultStore', 'ArchiveStore']))
c.argument('start_time', type=str, help='Start time for the List Restore Ranges request. ISO 8601 format.')
c.argument('end_time', type=str, help='End time for the List Restore Ranges request. ISO 8601 format.')
+
+ with self.argument_context('dataprotection resource-guard show') as c:
+ c.argument('resource_group_name', resource_group_name_type)
+ c.argument('resource_guards_name', options_list=['--resource-guard-name', '--name', '-n'], type=str, help='The '
+ 'name of ResourceGuard', id_part='name')
+
+ with self.argument_context('dataprotection resource-guard create') as c:
+ c.argument('resource_group_name', resource_group_name_type)
+ c.argument('resource_guards_name', options_list=['--resource-guard-name', '--name', '-n'], type=str, help='The '
+ 'name of ResourceGuard')
+ c.argument('e_tag', type=str, help='Optional ETag.')
+ c.argument('location', arg_type=get_location_type(self.cli_ctx), required=False,
+ validator=get_default_location_from_resource_group)
+ c.argument('tags', tags_type)
+ c.argument('type_', options_list=['--type'], type=str, help='The identityType which can be either '
+ 'SystemAssigned or None', arg_group='Identity')
+ c.argument('vault_critical_operation_exclusion_list', nargs='+', help='List of critical operations which are '
+ 'not protected by this resourceGuard')
+
+ with self.argument_context('dataprotection resource-guard delete') as c:
+ c.argument('resource_group_name', resource_group_name_type)
+ c.argument('resource_guards_name', options_list=['--resource-guard-name', '--name', '-n'], type=str, help='The '
+ 'name of ResourceGuard', id_part='name')
diff --git a/src/dataprotection/azext_dataprotection/generated/commands.py b/src/dataprotection/azext_dataprotection/generated/commands.py
index acff6594689..9b4da4add48 100644
--- a/src/dataprotection/azext_dataprotection/generated/commands.py
+++ b/src/dataprotection/azext_dataprotection/generated/commands.py
@@ -20,6 +20,7 @@
cf_recovery_point,
cf_job,
cf_restorable_time_range,
+ cf_resource_guard,
)
@@ -59,6 +60,12 @@
)
+dataprotection_resource_guard = CliCommandType(
+ operations_tmpl='azext_dataprotection.vendored_sdks.dataprotection.operations._resource_guards_operations#ResourceGuardsOperations.{}',
+ client_factory=cf_resource_guard,
+)
+
+
def load_command_table(self, _):
with self.command_group(
@@ -115,5 +122,12 @@ def load_command_table(self, _):
) as g:
g.custom_command('find', 'dataprotection_restorable_time_range_find')
+ with self.command_group(
+ 'dataprotection resource-guard', dataprotection_resource_guard, client_factory=cf_resource_guard
+ ) as g:
+ g.custom_show_command('show', 'dataprotection_resource_guard_show')
+ g.custom_command('create', 'dataprotection_resource_guard_create')
+ g.custom_command('delete', 'dataprotection_resource_guard_delete', confirmation=True)
+
with self.command_group('dataprotection', is_experimental=True):
pass
diff --git a/src/dataprotection/azext_dataprotection/generated/custom.py b/src/dataprotection/azext_dataprotection/generated/custom.py
index 0b170174722..955623367f5 100644
--- a/src/dataprotection/azext_dataprotection/generated/custom.py
+++ b/src/dataprotection/azext_dataprotection/generated/custom.py
@@ -7,6 +7,7 @@
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
+# pylint: disable=line-too-long
# pylint: disable=too-many-lines
from knack.util import CLIError
@@ -28,6 +29,7 @@ def dataprotection_backup_vault_create(client,
location=None,
tags=None,
type_=None,
+ alerts_for_all_job_failures=None,
no_wait=False):
parameters = {}
parameters['e_tag'] = e_tag
@@ -37,6 +39,8 @@ def dataprotection_backup_vault_create(client,
parameters['identity']['type'] = type_
parameters['properties'] = {}
parameters['properties']['storage_settings'] = storage_settings
+ parameters['properties']['azure_monitor_alert_settings'] = {}
+ parameters['properties']['azure_monitor_alert_settings']['alerts_for_all_job_failures'] = alerts_for_all_job_failures
return sdk_no_wait(no_wait,
client.begin_create_or_update,
resource_group_name=resource_group_name,
@@ -48,10 +52,13 @@ def dataprotection_backup_vault_update(client,
resource_group_name,
vault_name,
tags=None,
+ alerts_for_all_job_failures=None,
type_=None,
no_wait=False):
parameters = {}
parameters['tags'] = tags
+ parameters['azure_monitor_alert_settings'] = {}
+ parameters['azure_monitor_alert_settings']['alerts_for_all_job_failures'] = alerts_for_all_job_failures
parameters['identity'] = {}
parameters['identity']['type'] = type_
return sdk_no_wait(no_wait,
@@ -357,3 +364,38 @@ def dataprotection_restorable_time_range_find(client,
vault_name=vault_name,
backup_instance_name=backup_instance_name,
parameters=parameters)
+
+
+def dataprotection_resource_guard_show(client,
+ resource_group_name,
+ resource_guards_name):
+ return client.get(resource_group_name=resource_group_name,
+ resource_guards_name=resource_guards_name)
+
+
+def dataprotection_resource_guard_create(client,
+ resource_group_name,
+ resource_guards_name,
+ e_tag=None,
+ location=None,
+ tags=None,
+ type_=None,
+ vault_critical_operation_exclusion_list=None):
+ parameters = {}
+ parameters['e_tag'] = e_tag
+ parameters['location'] = location
+ parameters['tags'] = tags
+ parameters['identity'] = {}
+ parameters['identity']['type'] = type_
+ parameters['properties'] = {}
+ parameters['properties']['vault_critical_operation_exclusion_list'] = vault_critical_operation_exclusion_list
+ return client.put(resource_group_name=resource_group_name,
+ resource_guards_name=resource_guards_name,
+ parameters=parameters)
+
+
+def dataprotection_resource_guard_delete(client,
+ resource_group_name,
+ resource_guards_name):
+ return client.delete(resource_group_name=resource_group_name,
+ resource_guards_name=resource_guards_name)
diff --git a/src/dataprotection/azext_dataprotection/manual/_help.py b/src/dataprotection/azext_dataprotection/manual/_help.py
index 833b64ce2a7..3693ec403a6 100644
--- a/src/dataprotection/azext_dataprotection/manual/_help.py
+++ b/src/dataprotection/azext_dataprotection/manual/_help.py
@@ -207,6 +207,32 @@
text: az dataprotection backup-vault list -g sarath-rg
"""
+helps['dataprotection resource-guard list'] = """
+ type: command
+ short-summary: Gets list of ResourceGuards in a subscription or in a resource group.
+ examples:
+ - name: List ResourceGuards in a subscription
+ text: az dataprotection resource-guard list
+ - name: List ResourceGuards in a resource group
+ text: az dataprotection resource-guard list -g sarath-rg
+"""
+
+helps['dataprotection resource-guard list-protected-operations'] = """
+ type: command
+ short-summary: Lists protected operations associated with a ResourceGuard .
+ examples:
+ - name: List ResourceGuard protected operations
+ text: az dataprotection resource-guard list-protected-operations --resource-group "SampleResourceGroup" --resource-guard-name "swaggerExample" --resource-type "Microsoft.RecoveryServices/vaults"
+"""
+
+helps['dataprotection resource-guard update'] = """
+ type: command
+ short-summary: Updates protected operations associated with a ResourceGuard .
+ examples:
+ - name: Update ResourceGuard
+ text: az dataprotection resource-guard update --resource-group "SampleResourceGroup" --resource-guard-name "swaggerExample" --resource-type "Microsoft.RecoveryServices/vaults" --critical-operation-exclusion-list deleteProtection getSecurityPIN updatePolicy
+"""
+
helps['dataprotection backup-instance restore trigger'] = """
type: command
short-summary: Triggers restore for a BackupInstance.
diff --git a/src/dataprotection/azext_dataprotection/manual/_params.py b/src/dataprotection/azext_dataprotection/manual/_params.py
index 818e059219b..545b8b363af 100644
--- a/src/dataprotection/azext_dataprotection/manual/_params.py
+++ b/src/dataprotection/azext_dataprotection/manual/_params.py
@@ -8,6 +8,7 @@
# pylint: disable=too-many-statements
from azure.cli.core.commands.parameters import (
+ tags_type,
get_enum_type,
resource_group_name_type,
get_location_type
@@ -33,7 +34,9 @@
get_job_operation_values,
get_datasource_types,
get_rehydration_priority_values,
- get_secret_store_type_values
+ get_secret_store_type_values,
+ get_resource_type_values,
+ get_critical_operation_values
)
@@ -171,3 +174,23 @@ def load_arguments(self, _):
with self.argument_context('dataprotection backup-vault list') as c:
c.argument('resource_group_name', resource_group_name_type)
+
+ with self.argument_context('dataprotection resource-guard list') as c:
+ c.argument('resource_group_name', resource_group_name_type)
+
+ with self.argument_context('dataprotection resource-guard list-protected-operations') as c:
+ c.argument('resource_group_name', resource_group_name_type)
+ c.argument('resource_guards_name', options_list=['--resource-guard-name', '--name', '-n'], type=str, help='The name of '
+ 'ResourceGuard', id_part='name')
+ c.argument('resource_type', arg_type=get_enum_type(get_resource_type_values()), help='Type of the resource associated with the protected operations')
+
+ with self.argument_context('dataprotection resource-guard update') as c:
+ c.argument('resource_group_name', resource_group_name_type)
+ c.argument('resource_guards_name', options_list=['--resource-guard-name', '--name', '-n'], type=str, help='The name of '
+ 'ResourceGuard', id_part='name')
+ c.argument('tags', tags_type)
+ c.argument('type_', options_list=['--type'], type=str, help='The identityType which can be either '
+ 'SystemAssigned or None', arg_group='Identity')
+ c.argument('resource_type', arg_type=get_enum_type(get_resource_type_values()), help='Type of the resource associated with the protected operations')
+ c.argument('critical_operation_exclusion_list', arg_type=get_enum_type(get_critical_operation_values()), nargs='+', help='List of critical operations which are '
+ 'not protected by this resourceGuard')
diff --git a/src/dataprotection/azext_dataprotection/manual/commands.py b/src/dataprotection/azext_dataprotection/manual/commands.py
index b67014bf0c1..a6cb5bd4e47 100644
--- a/src/dataprotection/azext_dataprotection/manual/commands.py
+++ b/src/dataprotection/azext_dataprotection/manual/commands.py
@@ -9,7 +9,7 @@
from azure.cli.core.commands import CliCommandType
from azext_dataprotection.generated._client_factory import (
- cf_backup_instance, cf_backup_vault, cf_backup_policy
+ cf_backup_instance, cf_backup_vault, cf_backup_policy, cf_resource_guard
)
from azext_dataprotection.manual._client_factory import cf_resource_graph_client
@@ -67,3 +67,8 @@ def load_command_table(self, _):
g.custom_command('list', 'dataprotection_backup_vault_list')
g.custom_command('create', 'dataprotection_backup_vault_create', supports_no_wait=True)
g.custom_command('update', 'dataprotection_backup_vault_update', supports_no_wait=True)
+
+ with self.command_group('dataprotection resource-guard', exception_handler=exception_handler, client_factory=cf_resource_guard) as g:
+ g.custom_command('list', 'dataprotection_resource_guard_list')
+ g.custom_command('list-protected-operations', 'resource_guard_list_protected_operations')
+ g.custom_command('update', 'dataprotection_resource_guard_update')
diff --git a/src/dataprotection/azext_dataprotection/manual/custom.py b/src/dataprotection/azext_dataprotection/manual/custom.py
index e3adf54357c..380d33c563f 100644
--- a/src/dataprotection/azext_dataprotection/manual/custom.py
+++ b/src/dataprotection/azext_dataprotection/manual/custom.py
@@ -27,6 +27,122 @@ def dataprotection_backup_vault_list(client, resource_group_name=None):
return client.get_in_subscription()
+def dataprotection_backup_vault_create(client,
+ resource_group_name,
+ vault_name,
+ storage_settings,
+ e_tag=None,
+ location=None,
+ tags=None,
+ type_=None,
+ alerts_for_all_job_failures=None,
+ no_wait=False):
+ parameters = {}
+ parameters['e_tag'] = e_tag
+ parameters['location'] = location
+ parameters['tags'] = tags
+ if type_ is not None:
+ parameters['identity'] = {}
+ parameters['identity']['type'] = type_
+ parameters['properties'] = {}
+ parameters['properties']['storage_settings'] = storage_settings
+ if alerts_for_all_job_failures is not None:
+ parameters['properties']['monitoring_settings'] = {}
+ parameters['properties']['monitoring_settings']['azure_monitor_alert_settings'] = {}
+ parameters['properties']['monitoring_settings']['azure_monitor_alert_settings']['alerts_for_all_job_failures'] = alerts_for_all_job_failures
+ return sdk_no_wait(no_wait,
+ client.begin_create_or_update,
+ resource_group_name=resource_group_name,
+ vault_name=vault_name,
+ parameters=parameters)
+
+
+def dataprotection_backup_vault_update(client,
+ resource_group_name,
+ vault_name,
+ tags=None,
+ alerts_for_all_job_failures=None,
+ type_=None,
+ no_wait=False):
+ parameters = {}
+ parameters['tags'] = tags
+ if alerts_for_all_job_failures is not None:
+ parameters['properties'] = {}
+ parameters['properties']['monitoring_settings'] = {}
+ parameters['properties']['monitoring_settings']['azure_monitor_alert_settings'] = {}
+ parameters['properties']['monitoring_settings']['azure_monitor_alert_settings']['alerts_for_all_job_failures'] = alerts_for_all_job_failures
+ if type_ is not None:
+ parameters['identity'] = {}
+ parameters['identity']['type'] = type_
+ return sdk_no_wait(no_wait,
+ client.begin_update,
+ resource_group_name=resource_group_name,
+ vault_name=vault_name,
+ parameters=parameters)
+
+
+def dataprotection_resource_guard_list(client, resource_group_name=None):
+ if resource_group_name is not None:
+ return client.get_resources_in_resource_group(resource_group_name=resource_group_name)
+ return client.get_resources_in_subscription()
+
+
+def resource_guard_list_protected_operations(client, resource_group_name, resource_guards_name, resource_type):
+ resource_guard_object = client.get(resource_group_name, resource_guards_name)
+ protected_operations = resource_guard_object.properties.resource_guard_operations
+ resource_type_protected_operation = []
+ for protected_operation in protected_operations:
+ if resource_type in protected_operation.vault_critical_operation:
+ resource_type_protected_operation.append(protected_operation)
+ return resource_type_protected_operation
+
+
+def dataprotection_resource_guard_create(client,
+ resource_group_name,
+ resource_guards_name,
+ e_tag=None,
+ location=None,
+ tags=None,
+ type_=None):
+ parameters = {}
+ parameters['e_tag'] = e_tag
+ parameters['location'] = location
+ parameters['tags'] = tags
+ if type_ is not None:
+ parameters['identity'] = {}
+ parameters['identity']['type'] = type_
+ parameters['properties'] = {}
+ return client.put(resource_group_name=resource_group_name,
+ resource_guards_name=resource_guards_name,
+ parameters=parameters)
+
+
+def dataprotection_resource_guard_update(client,
+ resource_group_name,
+ resource_guards_name,
+ tags=None,
+ type_=None,
+ resource_type=None,
+ critical_operation_exclusion_list=None):
+ resource_guard_object = client.get(resource_group_name, resource_guards_name)
+ parameters = {}
+ parameters['e_tag'] = resource_guard_object.e_tag
+ parameters['location'] = resource_guard_object.location
+ parameters['tags'] = tags
+ if type_ is not None:
+ parameters['identity'] = {}
+ parameters['identity']['type'] = type_
+ if resource_type is not None and critical_operation_exclusion_list is not None:
+ critical_operation_list = []
+ for critical_operation in critical_operation_exclusion_list:
+ critical_operation_list.append(resource_type + helper.critical_operation_map[critical_operation])
+ parameters['properties'] = {}
+ parameters['properties']['vault_critical_operation_exclusion_list'] = critical_operation_list
+ return client.put(resource_group_name=resource_group_name,
+ resource_guards_name=resource_guards_name,
+ parameters=parameters)
+
+
def dataprotection_backup_instance_create(client, vault_name, resource_group_name, backup_instance, no_wait=False):
backup_instance_name = backup_instance["backup_instance_name"]
validate_backup_instance = copy.deepcopy(backup_instance)
diff --git a/src/dataprotection/azext_dataprotection/manual/enums.py b/src/dataprotection/azext_dataprotection/manual/enums.py
index 086f15ae248..150fbced70b 100644
--- a/src/dataprotection/azext_dataprotection/manual/enums.py
+++ b/src/dataprotection/azext_dataprotection/manual/enums.py
@@ -65,6 +65,14 @@ def get_secret_store_type_values():
return ['AzureKeyVault']
+def get_resource_type_values():
+ return ['Microsoft.RecoveryServices/vaults']
+
+
+def get_critical_operation_values():
+ return ['deleteProtection', 'updateProtection', 'updatePolicy', 'getSecurityPIN']
+
+
def get_datasource_types():
from azext_dataprotection.manual import helpers
return helpers.get_supported_datasource_types()
diff --git a/src/dataprotection/azext_dataprotection/manual/helpers.py b/src/dataprotection/azext_dataprotection/manual/helpers.py
index 48c05b3053f..d4cabec91ca 100644
--- a/src/dataprotection/azext_dataprotection/manual/helpers.py
+++ b/src/dataprotection/azext_dataprotection/manual/helpers.py
@@ -7,6 +7,13 @@
from importlib import import_module
from knack.util import CLIError
+critical_operation_map = {"deleteProtection": "/backupFabrics/protectionContainers/protectedItems/delete",
+ "updateProtection": "/backupFabrics/protectionContainers/protectedItems/write",
+ "updatePolicy": "/backupPolicies/write",
+ "deleteRGMapping": "/backupResourceGuardProxies/delete",
+ "getSecurityPIN": "/backupSecurityPIN/action",
+ "disableSoftDelete": "/backupconfig/write"}
+
def load_manifest(datasource_type):
module = import_module('azext_dataprotection.manual.Manifests.' + datasource_type)
diff --git a/src/dataprotection/azext_dataprotection/manual/tests/latest/test_dataprotection_scenario.py b/src/dataprotection/azext_dataprotection/manual/tests/latest/test_dataprotection_scenario.py
index 7fdc1dfb55a..bcf82e209da 100644
--- a/src/dataprotection/azext_dataprotection/manual/tests/latest/test_dataprotection_scenario.py
+++ b/src/dataprotection/azext_dataprotection/manual/tests/latest/test_dataprotection_scenario.py
@@ -13,7 +13,8 @@ def setup(test):
"rg": "sarath-rg",
"diskname": "cli-test-disk-new",
"restorediskname": "cli-test-disk-new-restored",
- "policyname": "diskpolicy"
+ "policyname": "diskpolicy",
+ "resourceGuardName": "cli-test-resource-guard"
})
account_res = test.cmd('az account show').get_output_in_json()
vault_res = test.cmd('az dataprotection backup-vault create '
@@ -21,6 +22,15 @@ def setup(test):
'--storage-settings datastore-type="VaultStore" type="LocallyRedundant" --type SystemAssigned',
checks=[]).get_output_in_json()
+ # Update DPP Alerts
+ test.cmd('az dataprotection backup-vault update -g "{rg}" --vault-name "{vaultName}" --azure-monitor-alerts-for-job-failures enabled',checks=[
+ test.check('properties.monitoringSettings.azureMonitorAlertSettings.alertsForAllJobFailures', 'Enabled')
+ ])
+
+ test.cmd('az dataprotection backup-vault update -g "{rg}" --vault-name "{vaultName}" --azure-monitor-alerts-for-job-failures disabled',checks=[
+ test.check('properties.monitoringSettings.azureMonitorAlertSettings.alertsForAllJobFailures', 'Disabled')
+ ])
+
disk_response = test.cmd('az disk create -g "{rg}" -n "{diskname}" --size-gb 4').get_output_in_json()
test.kwargs.update({
"principalId": vault_res["identity"]["principalId"],
@@ -35,6 +45,25 @@ def setup(test):
# test.cmd('az role assignment create --assignee "{principalId}" --role "Disk Restore Operator" --scope "{rgid}"')
+def test_resource_guard(test):
+ test.cmd('az dataprotection resource-guard create -g "{rg}" -n "{resourceGuardName}"', checks=[
+ test.check('name', "{resourceGuardName}")
+ ])
+
+ test.cmd('az dataprotection resource-guard list -g "{rg}"', checks=[
+ test.check("length([?name == '{resourceGuardName}'])", 1)
+ ])
+
+ test.cmd('az dataprotection resource-guard update -g "{rg}" -n "{resourceGuardName}" --resource-type "Microsoft.RecoveryServices/vaults" --critical-operation-exclusion-list deleteProtection getSecurityPIN', checks=[
+ test.check('name', "{resourceGuardName}"),
+ test.check('length(properties.vaultCriticalOperationExclusionList)', 2)
+ ])
+
+ test.cmd('az dataprotection resource-guard list-protected-operations -g "{rg}" -n "{resourceGuardName}" --resource-type "Microsoft.RecoveryServices/vaults"', checks=[
+ test.check('length(@)', 4)
+ ])
+
+
def create_policy(test):
policy_json = test.cmd('az dataprotection backup-policy get-default-policy-template --datasource-type AzureDisk').get_output_in_json()
test.kwargs.update({"policyjson": policy_json})
@@ -162,6 +191,7 @@ def delete_backup(test):
def cleanup(test):
delete_backup(test)
+ test.cmd('az dataprotection resource-guard delete -g "{rg}" -n "{resourceGuardName}" -y')
test.cmd('az dataprotection backup-vault delete '
' -g "{rg}" --vault-name "{vaultName}" --yes')
test.cmd('az disk delete --name "{diskname}" --resource-group "{rg}" --yes')
@@ -172,6 +202,7 @@ def cleanup(test):
def call_scenario(test):
setup(test)
try:
+ test_resource_guard(test)
create_policy(test)
configure_backup(test)
stop_resume_protection(test)
diff --git a/src/dataprotection/azext_dataprotection/tests/latest/example_steps.py b/src/dataprotection/azext_dataprotection/tests/latest/example_steps.py
index 1b889ff5193..da7d3447696 100644
--- a/src/dataprotection/azext_dataprotection/tests/latest/example_steps.py
+++ b/src/dataprotection/azext_dataprotection/tests/latest/example_steps.py
@@ -96,18 +96,6 @@ def step_backup_instance_create(test, checks=None):
checks=checks)
-# EXAMPLE: /BackupInstances/post/StopProtection
-@try_manual
-def step_backup_instance_stop_protection(test, checks=None):
- if checks is None:
- checks = []
- test.cmd('az dataprotection backup-instance stop-protection '
- '--name "{myBackupInstance2}" '
- '--resource-group "{rg_4}" '
- '--vault-name "testvault"',
- checks=checks)
-
-
# EXAMPLE: /BackupInstances/post/SuspendBackups
@try_manual
def step_backup_instance_suspend_backup(test, checks=None):
@@ -277,6 +265,7 @@ def step_backup_vault_create(test, checks=None):
test.cmd('az dataprotection backup-vault create '
'--type "None" '
'--location "WestUS" '
+ '--azure-monitor-alerts-for-job-failures "Enabled" '
'--storage-settings type="LocallyRedundant" datastore-type="VaultStore" '
'--tags key1="val1" '
'--resource-group "{rg}" '
@@ -292,6 +281,7 @@ def step_backup_vault_create2(test, checks=None):
test.cmd('az dataprotection backup-vault create '
'--type "systemAssigned" '
'--location "WestUS" '
+ '--azure-monitor-alerts-for-job-failures "Enabled" '
'--storage-settings type="LocallyRedundant" datastore-type="VaultStore" '
'--tags key1="val1" '
'--resource-group "{rg}" '
@@ -322,6 +312,7 @@ def step_backup_vault_update(test, checks=None):
if checks is None:
checks = []
test.cmd('az dataprotection backup-vault update '
+ '--azure-monitor-alerts-for-job-failures "Enabled" '
'--tags newKey="newVal" '
'--resource-group "{rg}" '
'--vault-name "swaggerExample"',
@@ -363,6 +354,18 @@ def step_backup_instance_resume_protection(test, checks=None):
checks=checks)
+# EXAMPLE: /BackupInstances/post/StopProtection
+@try_manual
+def step_backup_instance_stop_protection(test, checks=None):
+ if checks is None:
+ checks = []
+ test.cmd('az dataprotection backup-instance stop-protection '
+ '--name "{myBackupInstance2}" '
+ '--resource-group "{rg_4}" '
+ '--vault-name "testvault"',
+ checks=checks)
+
+
# EXAMPLE: /BackupInstances/delete/Delete BackupInstance
@try_manual
def step_backup_instance_delete(test, checks=None):
@@ -434,6 +437,41 @@ def step_recovery_point_list(test, checks=None):
checks=checks)
+# EXAMPLE: /ResourceGuards/put/Create ResourceGuard
+@try_manual
+def step_resource_guard_create(test, checks=None):
+ if checks is None:
+ checks = []
+ test.cmd('az dataprotection resource-guard create '
+ '--location "WestUS" '
+ '--tags key1="val1" '
+ '--resource-group "{rg}" '
+ '--resource-guard-name "swaggerExample"',
+ checks=checks)
+
+
+# EXAMPLE: /ResourceGuards/get/Get ResourceGuard
+@try_manual
+def step_resource_guard_show(test, checks=None):
+ if checks is None:
+ checks = []
+ test.cmd('az dataprotection resource-guard show '
+ '--resource-group "{rg}" '
+ '--resource-guard-name "swaggerExample"',
+ checks=checks)
+
+
+# EXAMPLE: /ResourceGuards/delete/Delete ResourceGuard
+@try_manual
+def step_resource_guard_delete(test, checks=None):
+ if checks is None:
+ checks = []
+ test.cmd('az dataprotection resource-guard delete -y '
+ '--resource-group "{rg}" '
+ '--resource-guard-name "swaggerExample"',
+ checks=checks)
+
+
# EXAMPLE: /RestorableTimeRanges/post/Find Restorable Time Ranges
@try_manual
def step_restorable_time_range_find(test, checks=None):
diff --git a/src/dataprotection/azext_dataprotection/tests/latest/recordings/test_dataprotection_Scenario.yaml b/src/dataprotection/azext_dataprotection/tests/latest/recordings/test_dataprotection_Scenario.yaml
index 4dd0dced7d3..6dfc7c1a228 100644
--- a/src/dataprotection/azext_dataprotection/tests/latest/recordings/test_dataprotection_Scenario.yaml
+++ b/src/dataprotection/azext_dataprotection/tests/latest/recordings/test_dataprotection_Scenario.yaml
@@ -18,23 +18,174 @@ interactions:
ParameterSetName:
- -g --vault-name -l --storage-settings --type
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault?api-version=2022-04-01
response:
body:
- string: '{"location":"centraluseuap","properties":{"provisioningState":"Provisioning","storageSettings":[{"datastoreType":"VaultStore","type":"LocallyRedundant"}],"isVaultProtectedByResourceGuard":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault","name":"cli-test-new-vault","type":"Microsoft.DataProtection/backupVaults"}'
+ string: '{"location":"centraluseuap","identity":{"type":"SystemAssigned","principalId":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","storageSettings":[{"datastoreType":"VaultStore","type":"LocallyRedundant"}],"isVaultProtectedByResourceGuard":false,"monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault","name":"cli-test-new-vault","type":"Microsoft.DataProtection/backupVaults"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '648'
+ content-type:
+ - application/json
+ date:
+ - Tue, 24 May 2022 12:08:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-resource-system-data:
+ - '{"lastModifiedBy":"akneema@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-24T12:08:22.3508236Z"}'
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"monitoringSettings": {"azureMonitorAlertSettings": {"alertsForAllJobFailures":
+ "Enabled"}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - dataprotection backup-vault update
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '109'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --vault-name --azure-monitor-alerts-for-job-failures
+ User-Agent:
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: PATCH
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault?api-version=2022-04-01
+ response:
+ body:
+ string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzI3ZDFiN2JjLThhYmQtNGUzMS04NWQzLWI5MTU0YzY5NTgwZQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzExZGU2ODAxLWFkNjctNDc3ZS04ODZmLTBhYzVlNjkwODhjZg==?api-version=2022-04-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Tue, 24 May 2022 12:08:33 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzExZGU2ODAxLWFkNjctNDc3ZS04ODZmLTBhYzVlNjkwODhjZg==?api-version=2022-04-01
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-resource-system-data:
+ - '{"lastModifiedBy":"akneema@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-24T12:08:31.2991454Z"}'
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - dataprotection backup-vault update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --vault-name --azure-monitor-alerts-for-job-failures
+ User-Agent:
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzExZGU2ODAxLWFkNjctNDc3ZS04ODZmLTBhYzVlNjkwODhjZg==?api-version=2022-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzExZGU2ODAxLWFkNjctNDc3ZS04ODZmLTBhYzVlNjkwODhjZg==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzExZGU2ODAxLWFkNjctNDc3ZS04ODZmLTBhYzVlNjkwODhjZg==","status":"Succeeded","startTime":"2022-05-24T12:08:32.9773222Z","endTime":"2022-05-24T12:08:33Z"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '476'
+ content-type:
+ - application/json
+ date:
+ - Tue, 24 May 2022 12:08:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - dataprotection backup-vault update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --vault-name --azure-monitor-alerts-for-job-failures
+ User-Agent:
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault?api-version=2022-04-01
+ response:
+ body:
+ string: '{"location":"centraluseuap","identity":{"type":"SystemAssigned","principalId":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","storageSettings":[{"datastoreType":"VaultStore","type":"LocallyRedundant"}],"isVaultProtectedByResourceGuard":false,"monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault","name":"cli-test-new-vault","type":"Microsoft.DataProtection/backupVaults"}'
+ headers:
cache-control:
- no-cache
content-length:
- - '421'
+ - '647'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:53:38 GMT
+ - Tue, 24 May 2022 12:08:47 GMT
expires:
- '-1'
pragma:
@@ -43,15 +194,70 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"monitoringSettings": {"azureMonitorAlertSettings": {"alertsForAllJobFailures":
+ "Disabled"}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - dataprotection backup-vault update
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '110'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --vault-name --azure-monitor-alerts-for-job-failures
+ User-Agent:
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: PATCH
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault?api-version=2022-04-01
+ response:
+ body:
+ string: ''
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzYxYzcyNWM2LTJmZDktNDZmMS05ODIyLWQ0NTgyMWM3YWE2Zg==?api-version=2022-04-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Tue, 24 May 2022 12:08:51 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzYxYzcyNWM2LTJmZDktNDZmMS05ODIyLWQ0NTgyMWM3YWE2Zg==?api-version=2022-04-01
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
x-content-type-options:
- nosniff
+ x-ms-arm-resource-system-data:
+ - '{"lastModifiedBy":"akneema@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-24T12:08:49.6066339Z"}'
x-ms-ratelimit-remaining-subscription-resource-requests:
- '99'
x-powered-by:
- ASP.NET
status:
- code: 201
- message: Created
+ code: 202
+ message: Accepted
- request:
body: null
headers:
@@ -60,18 +266,18 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-vault create
+ - dataprotection backup-vault update
Connection:
- keep-alive
ParameterSetName:
- - -g --vault-name -l --storage-settings --type
+ - -g --vault-name --azure-monitor-alerts-for-job-failures
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzI3ZDFiN2JjLThhYmQtNGUzMS04NWQzLWI5MTU0YzY5NTgwZQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzYxYzcyNWM2LTJmZDktNDZmMS05ODIyLWQ0NTgyMWM3YWE2Zg==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzI3ZDFiN2JjLThhYmQtNGUzMS04NWQzLWI5MTU0YzY5NTgwZQ==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzI3ZDFiN2JjLThhYmQtNGUzMS04NWQzLWI5MTU0YzY5NTgwZQ==","status":"Succeeded","startTime":"2022-04-21T06:53:37.6745108Z","endTime":"2022-04-21T06:53:38Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzYxYzcyNWM2LTJmZDktNDZmMS05ODIyLWQ0NTgyMWM3YWE2Zg==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzYxYzcyNWM2LTJmZDktNDZmMS05ODIyLWQ0NTgyMWM3YWE2Zg==","status":"Succeeded","startTime":"2022-05-24T12:08:51.1342655Z","endTime":"2022-05-24T12:08:51Z"}'
headers:
cache-control:
- no-cache
@@ -80,7 +286,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:53:49 GMT
+ - Tue, 24 May 2022 12:09:02 GMT
expires:
- '-1'
pragma:
@@ -108,27 +314,27 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-vault create
+ - dataprotection backup-vault update
Connection:
- keep-alive
ParameterSetName:
- - -g --vault-name -l --storage-settings --type
+ - -g --vault-name --azure-monitor-alerts-for-job-failures
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault?api-version=2022-04-01
response:
body:
- string: '{"location":"centraluseuap","identity":{"type":"SystemAssigned","principalId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","storageSettings":[{"datastoreType":"VaultStore","type":"LocallyRedundant"}],"isVaultProtectedByResourceGuard":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault","name":"cli-test-new-vault","type":"Microsoft.DataProtection/backupVaults"}'
+ string: '{"location":"centraluseuap","identity":{"type":"SystemAssigned","principalId":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","storageSettings":[{"datastoreType":"VaultStore","type":"LocallyRedundant"}],"isVaultProtectedByResourceGuard":false,"monitoringSettings":{"azureMonitorAlertSettings":{"alertsForAllJobFailures":"Disabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault","name":"cli-test-new-vault","type":"Microsoft.DataProtection/backupVaults"}'
headers:
cache-control:
- no-cache
content-length:
- - '558'
+ - '648'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:53:50 GMT
+ - Tue, 24 May 2022 12:09:03 GMT
expires:
- '-1'
pragma:
@@ -162,7 +368,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg?api-version=2021-04-01
response:
@@ -176,7 +382,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 21 Apr 2022 06:53:52 GMT
+ - Tue, 24 May 2022 12:09:04 GMT
expires:
- '-1'
pragma:
@@ -210,7 +416,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new?api-version=2021-12-01
response:
@@ -219,23 +425,23 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n
\ \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\":
{\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 4,\r\n
- \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
- \ }\r\n}"
+ \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n
+ \ \"colocationConstraints\": {},\r\n \"tier\": \"P1\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/94df9106-1ad3-496b-bf27-dd69a0f334fb?p=814d4482-f746-4961-be2b-b822c13856d2&api-version=2021-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8701b797-6318-46f3-91c7-2e51136e843b?p=814d4482-f746-4961-be2b-b822c13856d2&api-version=2021-12-01
cache-control:
- no-cache
content-length:
- - '332'
+ - '385'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 21 Apr 2022 06:54:01 GMT
+ - Tue, 24 May 2022 12:09:08 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/94df9106-1ad3-496b-bf27-dd69a0f334fb?p=814d4482-f746-4961-be2b-b822c13856d2&monitor=true&api-version=2021-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8701b797-6318-46f3-91c7-2e51136e843b?p=814d4482-f746-4961-be2b-b822c13856d2&monitor=true&api-version=2021-12-01
pragma:
- no-cache
server:
@@ -246,9 +452,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999
+ - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7998
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
status:
code: 202
message: Accepted
@@ -266,13 +472,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/94df9106-1ad3-496b-bf27-dd69a0f334fb?p=814d4482-f746-4961-be2b-b822c13856d2&api-version=2021-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8701b797-6318-46f3-91c7-2e51136e843b?p=814d4482-f746-4961-be2b-b822c13856d2&api-version=2021-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2022-04-21T06:54:02.1860175+00:00\",\r\n \"endTime\":
- \"2022-04-21T06:54:02.2953722+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2022-05-24T12:09:09.0797793+00:00\",\r\n \"endTime\":
+ \"2022-05-24T12:09:09.2203897+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"cli-test-disk-new\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n
@@ -282,10 +488,10 @@ interactions:
\ \"diskSizeGB\": 4,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
\ },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\":
- \"Enabled\",\r\n \"timeCreated\": \"2022-04-21T06:54:02.1860175+00:00\",\r\n
+ \"Enabled\",\r\n \"timeCreated\": \"2022-05-24T11:51:06.8517906+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 4294967296,\r\n \"uniqueId\": \"7cbd8170-fdc6-4cda-801f-69940f97114f\",\r\n
- \ \"tier\": \"P1\"\r\n }\r\n}\r\n },\r\n \"name\": \"94df9106-1ad3-496b-bf27-dd69a0f334fb\"\r\n}"
+ \ \"diskSizeBytes\": 4294967296,\r\n \"uniqueId\": \"cb847622-272d-4844-94ad-9d077d7b8c32\",\r\n
+ \ \"tier\": \"P1\"\r\n }\r\n}\r\n },\r\n \"name\": \"8701b797-6318-46f3-91c7-2e51136e843b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -294,7 +500,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 21 Apr 2022 06:54:04 GMT
+ - Tue, 24 May 2022 12:09:11 GMT
expires:
- '-1'
pragma:
@@ -311,7 +517,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399997
+ - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399993
status:
code: 200
message: OK
@@ -329,7 +535,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new?api-version=2021-12-01
response:
@@ -342,9 +548,9 @@ interactions:
\ \"diskSizeGB\": 4,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
\ },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\":
- \"Enabled\",\r\n \"timeCreated\": \"2022-04-21T06:54:02.1860175+00:00\",\r\n
+ \"Enabled\",\r\n \"timeCreated\": \"2022-05-24T11:51:06.8517906+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 4294967296,\r\n \"uniqueId\": \"7cbd8170-fdc6-4cda-801f-69940f97114f\",\r\n
+ \ \"diskSizeBytes\": 4294967296,\r\n \"uniqueId\": \"cb847622-272d-4844-94ad-9d077d7b8c32\",\r\n
\ \"tier\": \"P1\"\r\n }\r\n}"
headers:
cache-control:
@@ -354,7 +560,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 21 Apr 2022 06:54:04 GMT
+ - Tue, 24 May 2022 12:09:12 GMT
expires:
- '-1'
pragma:
@@ -371,7 +577,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119990
+ - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119972
status:
code: 200
message: OK
@@ -379,7 +585,7 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -389,59 +595,44 @@ interactions:
ParameterSetName:
- --assignee --role --scope
User-Agent:
- - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.35.0
- accept-language:
- - en-US
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273f74f5b7-f4f6-4b65-a45d-f1c60467e115%27%29&api-version=1.6
+ uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7')
response:
body:
- string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}'
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}'
headers:
- access-control-allow-origin:
- - '*'
cache-control:
- no-cache
content-length:
- - '121'
+ - '92'
content-type:
- - application/json; odata=minimalmetadata; streaming=true; charset=utf-8
- dataserviceversion:
- - 3.0;
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
date:
- - Thu, 21 Apr 2022 06:57:06 GMT
- duration:
- - '1610546'
- expires:
- - '-1'
- ocp-aad-diagnostics-server-name:
- - H9wqgBk5T764p1bhnhS4LUFMHLqWn+FkAl26X54MTBY=
- ocp-aad-session-key:
- - XEWXc8YfTguwJpItdp2k-RzpU1JVyATbDkG6iYv7TIcI_zpOj0HLQzpJQLJ6WVsJN3sLXniaYDBabI0X-hUK2mV7TjSqKpeYy9ocE9qjqEkV79MhYQR-Z3g6wtmpZGx0.qa-rTKrhlZ0VmPJQ8Z7eo3bCtuDdpFa5AwMipUA1J3U
- pragma:
- - no-cache
+ - Tue, 24 May 2022 12:12:12 GMT
+ odata-version:
+ - '4.0'
request-id:
- - f703ac8a-f1c7-4dfb-b062-392e4d0be07b
+ - 4b54db15-65a5-4e66-80f7-899e8d9bc364
strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-ms-dirapi-data-contract-version:
- - '1.6'
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00002515"}}'
x-ms-resource-unit:
- '1'
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
- request:
- body: '{"objectIds": ["3f74f5b7-f4f6-4b65-a45d-f1c60467e115"], "includeDirectoryObjectReferences":
- true}'
+ body: '{"ids": ["0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7"], "types": ["user", "group",
+ "servicePrincipal", "directoryObjectPartnerReference"]}'
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -449,56 +640,43 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '97'
+ - '132'
Content-Type:
- - application/json; charset=utf-8
+ - application/json
ParameterSetName:
- --assignee --role --scope
User-Agent:
- - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.35.0
- accept-language:
- - en-US
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
method: POST
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6
+ uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds
response:
body:
- string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.DataProtection/BackupVaults/cli-test-new-vault"],"appDisplayName":null,"appId":"11178d7e-5551-46cb-adf5-2782e3019a13","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-test-new-vault","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"D886F465C472D419959F04DC751DF29CE73F3F3D","endDate":"2022-07-20T06:48:00Z","keyId":"25a11a64-631b-48d8-b433-1cc62584fddd","startDate":"2022-04-21T06:48:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["11178d7e-5551-46cb-adf5-2782e3019a13","https://identity.azure.net/yHvRErNNmOMZ4EezrAqFKc6Ca0cDdhCvjeK23cGv1hE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}'
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.DataProtection/BackupVaults/cli-test-new-vault"],"appDisplayName":null,"appDescription":null,"appId":"e9a0c741-6333-46f7-86fe-5192f5d4bbc5","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-05-24T11:50:03Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"cli-test-new-vault","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["e9a0c741-6333-46f7-86fe-5192f5d4bbc5","https://identity.azure.net/yHvRErNNmOMZ4EezrAqFKc6Ca0cDdhCvjeK23cGv1hE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null},"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"7DC4E6931C5F85E71F4A5BEB5A59EE2FA1D9FA86","displayName":"CN=e9a0c741-6333-46f7-86fe-5192f5d4bbc5","endDateTime":"2022-08-22T11:45:00Z","key":null,"keyId":"77543e9f-1f8a-416d-948a-0e477d25855d","startDateTime":"2022-05-24T11:45:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[]}]}'
headers:
- access-control-allow-origin:
- - '*'
cache-control:
- no-cache
content-length:
- - '1576'
+ - '1730'
content-type:
- - application/json; odata=minimalmetadata; streaming=true; charset=utf-8
- dataserviceversion:
- - 3.0;
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
date:
- - Thu, 21 Apr 2022 06:57:07 GMT
- duration:
- - '1124191'
- expires:
- - '-1'
- ocp-aad-diagnostics-server-name:
- - RFfPSvNPaBZMoJu8uZOMB3DgNkyK4PZkkYhkanmn/Ak=
- ocp-aad-session-key:
- - 1Sv1OXU_vzjSwdKt-qa2k0icbeB9eNXoi-kNbuyH673VMByzKTo_I_1gcx0jl58GR5WaiybHM0xJ75TamXI2rSD9YxIq6p1aeubAhAyvvAah_1gYdcpjmIeva4dGslyd.Os-ewPfuSCzETeRBaCrfLaJPc3t1qCUOlPyfg7C_gdE
- pragma:
- - no-cache
+ - Tue, 24 May 2022 12:12:12 GMT
+ location:
+ - https://graph.microsoft.com
+ odata-version:
+ - '4.0'
request-id:
- - 8eb58a39-0c37-418c-ad14-b8283997ec07
+ - ce836c61-cfb7-4f09-98ce-c53f792d551d
strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-ms-dirapi-data-contract-version:
- - '1.6'
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00002972"}}'
x-ms-resource-unit:
- '3'
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
@@ -517,7 +695,7 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
accept-language:
- en-US
method: GET
@@ -534,7 +712,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 21 Apr 2022 06:57:07 GMT
+ - Tue, 24 May 2022 12:12:12 GMT
expires:
- '-1'
pragma:
@@ -554,7 +732,7 @@ interactions:
message: OK
- request:
body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e5e47e6-65f7-47ef-90b5-e5dd4d455f24",
- "principalId": "3f74f5b7-f4f6-4b65-a45d-f1c60467e115", "principalType": "ServicePrincipal"}}'
+ "principalId": "0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7", "principalType": "ServicePrincipal"}}'
headers:
Accept:
- application/json
@@ -574,23 +752,24 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new/providers/Microsoft.Authorization/roleAssignments/160dc893-5581-4360-b69e-9123921d7470?api-version=2020-04-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new/providers/Microsoft.Authorization/roleAssignments/0c7d146b-87cf-4812-accf-134b2f9029e9?api-version=2020-04-01-preview
response:
body:
- string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e5e47e6-65f7-47ef-90b5-e5dd4d455f24","principalId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T06:57:08.2847935Z","updatedOn":"2022-04-21T06:57:08.9098056Z","createdBy":null,"updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new/providers/Microsoft.Authorization/roleAssignments/160dc893-5581-4360-b69e-9123921d7470","type":"Microsoft.Authorization/roleAssignments","name":"160dc893-5581-4360-b69e-9123921d7470"}'
+ string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment
+ already exists."}}'
headers:
cache-control:
- no-cache
content-length:
- - '977'
+ - '89'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 21 Apr 2022 06:57:15 GMT
+ - Tue, 24 May 2022 12:12:14 GMT
expires:
- '-1'
pragma:
@@ -602,15 +781,15 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1197'
status:
- code: 201
- message: Created
+ code: 409
+ message: Conflict
- request:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -620,59 +799,44 @@ interactions:
ParameterSetName:
- --assignee --role --scope
User-Agent:
- - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.35.0
- accept-language:
- - en-US
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273f74f5b7-f4f6-4b65-a45d-f1c60467e115%27%29&api-version=1.6
+ uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7')
response:
body:
- string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}'
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}'
headers:
- access-control-allow-origin:
- - '*'
cache-control:
- no-cache
content-length:
- - '121'
+ - '92'
content-type:
- - application/json; odata=minimalmetadata; streaming=true; charset=utf-8
- dataserviceversion:
- - 3.0;
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
date:
- - Thu, 21 Apr 2022 06:57:15 GMT
- duration:
- - '874949'
- expires:
- - '-1'
- ocp-aad-diagnostics-server-name:
- - H9wqgBk5T764p1bhnhS4LUFMHLqWn+FkAl26X54MTBY=
- ocp-aad-session-key:
- - GYK8Qis6FJNk2aqmYnBVKLiNe8rhoE7-_cxw6jpPj01OL84KLadFsJcch6jrE_V3roKQvhnsaEm8Vx_EUQjD0coXi6dEm6NZfGx2xssq3vcc9eSLUpsapE_wlpo0M1-T._f2fOUk8zolkHnVsdXAnC98vN1OEBkFSD3-Fn5G3hqY
- pragma:
- - no-cache
+ - Tue, 24 May 2022 12:12:15 GMT
+ odata-version:
+ - '4.0'
request-id:
- - 44bde867-d22d-4218-b5ec-14968bcbb2ab
+ - c3524bed-38df-4f26-904b-f1fe64f09c06
strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-ms-dirapi-data-contract-version:
- - '1.6'
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF0000298C"}}'
x-ms-resource-unit:
- '1'
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
- request:
- body: '{"objectIds": ["3f74f5b7-f4f6-4b65-a45d-f1c60467e115"], "includeDirectoryObjectReferences":
- true}'
+ body: '{"ids": ["0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7"], "types": ["user", "group",
+ "servicePrincipal", "directoryObjectPartnerReference"]}'
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -680,56 +844,43 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '97'
+ - '132'
Content-Type:
- - application/json; charset=utf-8
+ - application/json
ParameterSetName:
- --assignee --role --scope
User-Agent:
- - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.35.0
- accept-language:
- - en-US
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
method: POST
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6
+ uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds
response:
body:
- string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.DataProtection/BackupVaults/cli-test-new-vault"],"appDisplayName":null,"appId":"11178d7e-5551-46cb-adf5-2782e3019a13","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-test-new-vault","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"D886F465C472D419959F04DC751DF29CE73F3F3D","endDate":"2022-07-20T06:48:00Z","keyId":"25a11a64-631b-48d8-b433-1cc62584fddd","startDate":"2022-04-21T06:48:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["11178d7e-5551-46cb-adf5-2782e3019a13","https://identity.azure.net/yHvRErNNmOMZ4EezrAqFKc6Ca0cDdhCvjeK23cGv1hE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}'
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.DataProtection/BackupVaults/cli-test-new-vault"],"appDisplayName":null,"appDescription":null,"appId":"e9a0c741-6333-46f7-86fe-5192f5d4bbc5","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-05-24T11:50:03Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"cli-test-new-vault","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["e9a0c741-6333-46f7-86fe-5192f5d4bbc5","https://identity.azure.net/yHvRErNNmOMZ4EezrAqFKc6Ca0cDdhCvjeK23cGv1hE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null},"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"7DC4E6931C5F85E71F4A5BEB5A59EE2FA1D9FA86","displayName":"CN=e9a0c741-6333-46f7-86fe-5192f5d4bbc5","endDateTime":"2022-08-22T11:45:00Z","key":null,"keyId":"77543e9f-1f8a-416d-948a-0e477d25855d","startDateTime":"2022-05-24T11:45:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[]}]}'
headers:
- access-control-allow-origin:
- - '*'
cache-control:
- no-cache
content-length:
- - '1576'
+ - '1730'
content-type:
- - application/json; odata=minimalmetadata; streaming=true; charset=utf-8
- dataserviceversion:
- - 3.0;
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
date:
- - Thu, 21 Apr 2022 06:57:16 GMT
- duration:
- - '961177'
- expires:
- - '-1'
- ocp-aad-diagnostics-server-name:
- - GhZOB7n+RLedqzpAabcxyh3ReuNAkldQvjJoNWT5Fow=
- ocp-aad-session-key:
- - g62Pr5Mg_yI4aK6vE_Lz_mPGco7Ob97liZcAUmLyX15fnC4D2ztPj1XkHvxqxB6PuPHh9Yznz0mRwVnNq35V_yINFlMSak6zxXuSrpvpIuFFOM0OlSTxcECmObqCU8nz.xp2A4wiLz6IPFyTgcibiBORDsYp_QB5CFi8EOjjo9Aw
- pragma:
- - no-cache
+ - Tue, 24 May 2022 12:12:15 GMT
+ location:
+ - https://graph.microsoft.com
+ odata-version:
+ - '4.0'
request-id:
- - 819df3ac-1983-4698-ab40-ffe80279c4b1
+ - 449635a1-a0a0-4e85-94d5-f27cf7dba0c3
strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-ms-dirapi-data-contract-version:
- - '1.6'
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF000014E4"}}'
x-ms-resource-unit:
- '3'
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
@@ -748,24 +899,24 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Disk%20Snapshot%20Contributor%27&api-version=2018-01-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29&api-version=2020-04-01-preview
response:
body:
- string: '{"value":[{"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"}]}'
+ string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"5c617d2b-99f8-4c90-98fe-dfe040fa33c1","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1d8b8d73-0cc6-4db8-b112-724b4a932253","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-26T12:22:13.7498923Z","updatedOn":"2019-08-26T12:22:13.7498923Z","createdBy":"1743392d-76d5-4611-94c2-448be522b83c","updatedBy":"1743392d-76d5-4611-94c2-448be522b83c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3a4de9-1ebd-47ce-9dd9-bebf87a4e28f","type":"Microsoft.Authorization/roleAssignments","name":"8c3a4de9-1ebd-47ce-9dd9-bebf87a4e28f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1e845bc3-37db-4639-be09-d0cf1e448221","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-05-24T11:02:27.8515917Z","updatedOn":"2019-05-24T11:02:27.8515917Z","createdBy":"d1f96755-9bcf-44b8-ab82-df67360496c4","updatedBy":"d1f96755-9bcf-44b8-ab82-df67360496c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5eee4d7-5f9f-4f63-8040-8aec158c289b","type":"Microsoft.Authorization/roleAssignments","name":"b5eee4d7-5f9f-4f63-8040-8aec158c289b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"235b2664-75e2-4741-bb6f-37e49babf6cd","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-12T11:34:59.7104212Z","updatedOn":"2020-02-12T11:34:59.7104212Z","createdBy":"1e845bc3-37db-4639-be09-d0cf1e448221","updatedBy":"1e845bc3-37db-4639-be09-d0cf1e448221","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0618702-8404-4858-9a26-e61f23e7d44f","type":"Microsoft.Authorization/roleAssignments","name":"f0618702-8404-4858-9a26-e61f23e7d44f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8bb5b214-1182-465c-892f-ca7235abe1e7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-11-14T08:52:42.2795010Z","updatedOn":"2019-11-14T08:52:42.2795010Z","createdBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","updatedBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77daac38-9839-4b00-921b-e5d5a03e728c","type":"Microsoft.Authorization/roleAssignments","name":"77daac38-9839-4b00-921b-e5d5a03e728c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9693df58-7f72-4974-9bd3-1c3ceb0382f1","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-29T09:40:04.3180033Z","updatedOn":"2018-11-29T09:40:04.3180033Z","createdBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","updatedBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed3bf874-9c97-43f9-a5e9-b4ee6f8982f7","type":"Microsoft.Authorization/roleAssignments","name":"ed3bf874-9c97-43f9-a5e9-b4ee6f8982f7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d1f96755-9bcf-44b8-ab82-df67360496c4","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T10:28:08.2854940Z","updatedOn":"2020-05-08T10:28:08.2854940Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfb3ca56-a0d4-44ce-ba35-b716c3fdab86","type":"Microsoft.Authorization/roleAssignments","name":"dfb3ca56-a0d4-44ce-ba35-b716c3fdab86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-12-31T09:26:43.6440415Z","updatedOn":"2018-12-31T09:26:43.6440415Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45744ea8-780f-4f3e-88aa-b73d7f6997b2","type":"Microsoft.Authorization/roleAssignments","name":"45744ea8-780f-4f3e-88aa-b73d7f6997b2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e65078fb-6b02-434a-9f11-d06bf9bc0600","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-25T23:42:36.3444507Z","updatedOn":"2018-10-25T23:42:36.3444507Z","createdBy":"66cb55a5-e2a8-44ef-ae4b-5ab8fa2ec8d9","updatedBy":"66cb55a5-e2a8-44ef-ae4b-5ab8fa2ec8d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7ce51e8-4109-41d7-bc10-538b089599db","type":"Microsoft.Authorization/roleAssignments","name":"e7ce51e8-4109-41d7-bc10-538b089599db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"a7782e0f-1f9a-4882-b2c9-11227aad244e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-16T04:32:50.9673703Z","updatedOn":"2020-06-16T04:32:50.9673703Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fa21f2f-81c3-47b6-b706-650b359b96c3","type":"Microsoft.Authorization/roleAssignments","name":"9fa21f2f-81c3-47b6-b706-650b359b96c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00b14177-f4d2-4a4b-94f6-6e80f75745c9","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T09:49:11.3750683Z","updatedOn":"2020-03-12T09:49:11.3750683Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fff0abf3-3cf7-46be-8bc7-1d1619a160fb","type":"Microsoft.Authorization/roleAssignments","name":"fff0abf3-3cf7-46be-8bc7-1d1619a160fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1d8b8d73-0cc6-4db8-b112-724b4a932253","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-26T10:28:45.4880023Z","updatedOn":"2019-08-26T10:28:45.4880023Z","createdBy":"1e845bc3-37db-4639-be09-d0cf1e448221","updatedBy":"1e845bc3-37db-4639-be09-d0cf1e448221","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/397a3c9c-c258-4d4e-834d-00cc08227796","type":"Microsoft.Authorization/roleAssignments","name":"397a3c9c-c258-4d4e-834d-00cc08227796"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"235b2664-75e2-4741-bb6f-37e49babf6cd","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-12-05T04:29:28.7359096Z","updatedOn":"2018-12-05T04:29:28.7359096Z","createdBy":"1743392d-76d5-4611-94c2-448be522b83c","updatedBy":"1743392d-76d5-4611-94c2-448be522b83c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3c830f42-5f89-4d8b-8f93-d3dc936f33bd","type":"Microsoft.Authorization/roleAssignments","name":"3c830f42-5f89-4d8b-8f93-d3dc936f33bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2d13e5e1-815b-45e7-be6f-3a2c36b407a8","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-08T08:38:50.1742930Z","updatedOn":"2020-04-08T08:38:50.1742930Z","createdBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","updatedBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5293a96b-830e-45f4-9e9e-22d7d020f0d8","type":"Microsoft.Authorization/roleAssignments","name":"5293a96b-830e-45f4-9e9e-22d7d020f0d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3421d717-ca60-44e7-a9a1-773acec4e503","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-10-23T09:40:14.7658272Z","updatedOn":"2019-10-23T09:40:14.7658272Z","createdBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","updatedBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/34b29558-faf9-43f0-a194-35ca0aa99fc5","type":"Microsoft.Authorization/roleAssignments","name":"34b29558-faf9-43f0-a194-35ca0aa99fc5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3dc88d41-4d03-4105-970d-937e56de3839","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-27T12:59:44.6557891Z","updatedOn":"2019-06-27T12:59:44.6557891Z","createdBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","updatedBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e57ab8d1-ce9a-4925-b09f-2567492d9b22","type":"Microsoft.Authorization/roleAssignments","name":"e57ab8d1-ce9a-4925-b09f-2567492d9b22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"62c799b8-9b54-4c3d-97c9-9490d16a6a9a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-08T13:01:20.9953919Z","updatedOn":"2019-08-08T13:01:20.9953919Z","createdBy":"1743392d-76d5-4611-94c2-448be522b83c","updatedBy":"1743392d-76d5-4611-94c2-448be522b83c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1b91810-0781-462d-9517-764e4a033822","type":"Microsoft.Authorization/roleAssignments","name":"e1b91810-0781-462d-9517-764e4a033822"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8bb5b214-1182-465c-892f-ca7235abe1e7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-10-23T08:03:15.6803676Z","updatedOn":"2019-10-23T08:03:15.6803676Z","createdBy":"1e845bc3-37db-4639-be09-d0cf1e448221","updatedBy":"1e845bc3-37db-4639-be09-d0cf1e448221","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/facbac06-ddab-437d-949a-207593fddfff","type":"Microsoft.Authorization/roleAssignments","name":"facbac06-ddab-437d-949a-207593fddfff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"978b254a-54be-42af-80f5-e2a37b2e40e5","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-07-08T06:57:57.0377373Z","updatedOn":"2019-07-08T06:57:57.0377373Z","createdBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","updatedBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89be5b0a-dfa8-4bdf-b667-c6f63f7f3f0e","type":"Microsoft.Authorization/roleAssignments","name":"89be5b0a-dfa8-4bdf-b667-c6f63f7f3f0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9c973a07-b207-473c-9687-bd693ba8e460","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-17T09:14:08.7913669Z","updatedOn":"2020-04-17T09:14:08.7913669Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/950c635a-23a5-4a0e-8eb6-c53e929c9699","type":"Microsoft.Authorization/roleAssignments","name":"950c635a-23a5-4a0e-8eb6-c53e929c9699"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a4eae46b-a9d0-4586-8ac9-ba91b29f1d57","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T10:05:44.6784242Z","updatedOn":"2022-02-01T10:05:44.6784242Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8af2fb3a-292c-42a8-a870-1751c4ec4870","type":"Microsoft.Authorization/roleAssignments","name":"8af2fb3a-292c-42a8-a870-1751c4ec4870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"662a0ec2-cfbc-45f9-ae31-2cc53070e765","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T12:46:49.6216206Z","updatedOn":"2022-04-12T12:46:49.6216206Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/85cc2dff-c5d4-42a3-acb6-255cd4208ef4","type":"Microsoft.Authorization/roleAssignments","name":"85cc2dff-c5d4-42a3-acb6-255cd4208ef4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"662a0ec2-cfbc-45f9-ae31-2cc53070e765","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T12:46:57.1459341Z","updatedOn":"2022-04-12T12:46:57.1459341Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/aba8e90d-d951-4cb5-a346-b71e478f4d1b","type":"Microsoft.Authorization/roleAssignments","name":"aba8e90d-d951-4cb5-a346-b71e478f4d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"30bc1f3b-ca1a-4c55-96ff-4c026f12eaa1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T13:09:28.3678603Z","updatedOn":"2022-04-12T13:09:28.3678603Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/79d87d90-f984-4f53-a169-2eca51c00104","type":"Microsoft.Authorization/roleAssignments","name":"79d87d90-f984-4f53-a169-2eca51c00104"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"30bc1f3b-ca1a-4c55-96ff-4c026f12eaa1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T13:09:33.3916295Z","updatedOn":"2022-04-12T13:09:33.3916295Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/5e185742-c91a-4efe-b0d8-db9524685ec5","type":"Microsoft.Authorization/roleAssignments","name":"5e185742-c91a-4efe-b0d8-db9524685ec5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"3c582fc7-e68a-4991-a2f6-3d8a7a1f23c1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:01:02.2689248Z","updatedOn":"2022-04-13T07:01:02.2689248Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/c9b4f9ab-d687-4a65-910a-5bcb2f974bfe","type":"Microsoft.Authorization/roleAssignments","name":"c9b4f9ab-d687-4a65-910a-5bcb2f974bfe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"3c582fc7-e68a-4991-a2f6-3d8a7a1f23c1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:01:09.3571703Z","updatedOn":"2022-04-13T07:01:09.3571703Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/8bedf13c-aa1a-4191-aa97-573f14fd97ee","type":"Microsoft.Authorization/roleAssignments","name":"8bedf13c-aa1a-4191-aa97-573f14fd97ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"a31004b5-ce06-49e1-8706-e8c7afe68695","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:43:04.6456354Z","updatedOn":"2022-04-13T07:43:04.6456354Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/bd0fc30a-6ccf-4c22-a26b-0e31aba16035","type":"Microsoft.Authorization/roleAssignments","name":"bd0fc30a-6ccf-4c22-a26b-0e31aba16035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"a31004b5-ce06-49e1-8706-e8c7afe68695","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:43:10.1186881Z","updatedOn":"2022-04-13T07:43:10.1186881Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/dadaa3cd-f442-4d5c-aed3-7cbab2fba3e0","type":"Microsoft.Authorization/roleAssignments","name":"dadaa3cd-f442-4d5c-aed3-7cbab2fba3e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"6f6a803e-4dc5-488a-8566-a4f0a984975e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T08:58:57.7706882Z","updatedOn":"2022-04-13T08:58:57.7706882Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/9e3d10bf-9bfa-4a97-9ab1-b972a348abd0","type":"Microsoft.Authorization/roleAssignments","name":"9e3d10bf-9bfa-4a97-9ab1-b972a348abd0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"6f6a803e-4dc5-488a-8566-a4f0a984975e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T08:59:03.2414961Z","updatedOn":"2022-04-13T08:59:03.2414961Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/66eefd94-4bda-46df-9c61-7e92f83d91e7","type":"Microsoft.Authorization/roleAssignments","name":"66eefd94-4bda-46df-9c61-7e92f83d91e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"829da4fd-a5f4-4ca7-bc3d-0679d104c5f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T10:17:35.8887781Z","updatedOn":"2022-04-13T10:17:35.8887781Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/77f4f7a3-a377-49f7-a094-945b82b2bfff","type":"Microsoft.Authorization/roleAssignments","name":"77f4f7a3-a377-49f7-a094-945b82b2bfff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"829da4fd-a5f4-4ca7-bc3d-0679d104c5f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T10:17:41.2233089Z","updatedOn":"2022-04-13T10:17:41.2233089Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/1a71aac6-e9ce-40ff-a39f-7594df2ea6e9","type":"Microsoft.Authorization/roleAssignments","name":"1a71aac6-e9ce-40ff-a39f-7594df2ea6e9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T06:57:19.4532093Z","updatedOn":"2022-04-21T06:57:19.4532093Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/eede4548-9f71-44b7-8077-c49aa44894b4","type":"Microsoft.Authorization/roleAssignments","name":"eede4548-9f71-44b7-8077-c49aa44894b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T06:57:24.3439247Z","updatedOn":"2022-04-21T06:57:24.3439247Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/c011acd2-8b5d-45d6-b6c1-4ffe1867ce31","type":"Microsoft.Authorization/roleAssignments","name":"c011acd2-8b5d-45d6-b6c1-4ffe1867ce31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"85c33f6f-5d69-4b0e-bc06-95a7d3193519","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-04T09:52:52.7340040Z","updatedOn":"2022-05-04T09:52:52.7340040Z","createdBy":"447bbed8-9839-4d6e-9e39-fb9aeee1ec1d","updatedBy":"447bbed8-9839-4d6e-9e39-fb9aeee1ec1d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a4f635c-309c-4a1d-8eea-86fb5aa91d80","type":"Microsoft.Authorization/roleAssignments","name":"6a4f635c-309c-4a1d-8eea-86fb5aa91d80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"5095196a-def9-4146-8d92-e38f24b6e378","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T06:55:02.8791003Z","updatedOn":"2022-05-12T06:55:02.8791003Z","createdBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","updatedBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/153c562d-6f8b-4872-86a7-84f10e177d8b","type":"Microsoft.Authorization/roleAssignments","name":"153c562d-6f8b-4872-86a7-84f10e177d8b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"e6234342-a3d7-4b04-9041-3e8526f5861a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T06:55:02.9137483Z","updatedOn":"2022-05-12T06:55:02.9137483Z","createdBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","updatedBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5bd1b6d-0084-40ec-9126-2250536b4778","type":"Microsoft.Authorization/roleAssignments","name":"a5bd1b6d-0084-40ec-9126-2250536b4778"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e5e47e6-65f7-47ef-90b5-e5dd4d455f24","principalId":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T11:54:16.3194737Z","updatedOn":"2022-05-24T11:54:16.3194737Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new/providers/Microsoft.Authorization/roleAssignments/c2d104aa-ee2c-4838-8e9a-8f2b34e7f9db","type":"Microsoft.Authorization/roleAssignments","name":"c2d104aa-ee2c-4838-8e9a-8f2b34e7f9db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T11:54:25.7258076Z","updatedOn":"2022-05-24T11:54:25.7258076Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/9a7dc348-d24e-438b-84b0-c7cda5bf92c4","type":"Microsoft.Authorization/roleAssignments","name":"9a7dc348-d24e-438b-84b0-c7cda5bf92c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T11:54:29.8931759Z","updatedOn":"2022-05-24T11:54:29.8931759Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/aeb54d04-84b8-4530-bd7e-fe01dafd82ab","type":"Microsoft.Authorization/roleAssignments","name":"aeb54d04-84b8-4530-bd7e-fe01dafd82ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a51d0ef9-9895-4b63-b3f8-354bb7d1a6bb","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-21T08:47:39.8177538Z","updatedOn":"2021-05-21T08:47:39.8177538Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17db6abb-bc45-4967-b313-e470ec9cbbd7","type":"Microsoft.Authorization/roleAssignments","name":"17db6abb-bc45-4967-b313-e470ec9cbbd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"7c567124-5292-4819-aa73-0224bf1c42e1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-05-23T13:38:54.7542852Z","updatedOn":"2021-05-23T13:38:54.7542852Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/0809d692-f58f-43f2-b597-7f115957407e","type":"Microsoft.Authorization/roleAssignments","name":"0809d692-f58f-43f2-b597-7f115957407e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"955c9d1b-0cb6-4ff6-91c9-f4aadf67ffe8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T16:45:08.3835615Z","updatedOn":"2021-05-24T16:45:08.3835615Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/1b1ac6ab-19e7-4c4f-91d2-5be73096da2c","type":"Microsoft.Authorization/roleAssignments","name":"1b1ac6ab-19e7-4c4f-91d2-5be73096da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"7221c906-782c-44a0-ab2f-f23d8a95ce25","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T16:56:16.2751421Z","updatedOn":"2021-05-24T16:56:16.2751421Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/ca8f2433-76dc-49fa-828d-9cd2861ec25c","type":"Microsoft.Authorization/roleAssignments","name":"ca8f2433-76dc-49fa-828d-9cd2861ec25c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"e1a3bbaa-4ffb-41a6-a154-b4870d9e86b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T06:40:53.5542743Z","updatedOn":"2021-06-04T06:40:53.5542743Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/9d9ac2a8-dbac-41bb-9f17-c473f02c6370","type":"Microsoft.Authorization/roleAssignments","name":"9d9ac2a8-dbac-41bb-9f17-c473f02c6370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"e1a3bbaa-4ffb-41a6-a154-b4870d9e86b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T06:40:57.1326805Z","updatedOn":"2021-06-04T06:40:57.1326805Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/14b1338c-95f6-44f9-ad22-395f8ebbb1fe","type":"Microsoft.Authorization/roleAssignments","name":"14b1338c-95f6-44f9-ad22-395f8ebbb1fe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"1da90707-df56-4d40-a805-2e646c9d95ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T07:02:18.2829699Z","updatedOn":"2021-06-04T07:02:18.2829699Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/bf5f4821-9baa-4dc6-9bd5-8c62f31c1a93","type":"Microsoft.Authorization/roleAssignments","name":"bf5f4821-9baa-4dc6-9bd5-8c62f31c1a93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"1da90707-df56-4d40-a805-2e646c9d95ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T07:02:22.4343547Z","updatedOn":"2021-06-04T07:02:22.4343547Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/26bab283-0772-4c03-8dc1-a50c8ffa597d","type":"Microsoft.Authorization/roleAssignments","name":"26bab283-0772-4c03-8dc1-a50c8ffa597d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"ab6b1184-ff37-4d3e-b460-fbe654f7ad5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T07:19:08.8293677Z","updatedOn":"2021-06-04T07:19:08.8293677Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/d972f611-a4bd-4b80-9e78-980984602450","type":"Microsoft.Authorization/roleAssignments","name":"d972f611-a4bd-4b80-9e78-980984602450"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"ab6b1184-ff37-4d3e-b460-fbe654f7ad5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T07:19:12.8400651Z","updatedOn":"2021-06-04T07:19:12.8400651Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/b9393755-f5ca-41ef-a631-fb62184c57a8","type":"Microsoft.Authorization/roleAssignments","name":"b9393755-f5ca-41ef-a631-fb62184c57a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"3ffa4e46-39a3-4002-9292-e2adf0d1a8c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T09:14:15.2633798Z","updatedOn":"2021-06-04T09:14:15.2633798Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/094981c0-d59c-4f5b-9581-72c08da65454","type":"Microsoft.Authorization/roleAssignments","name":"094981c0-d59c-4f5b-9581-72c08da65454"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"3ffa4e46-39a3-4002-9292-e2adf0d1a8c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T09:14:19.9554484Z","updatedOn":"2021-06-04T09:14:19.9554484Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/0cac59e0-0464-4bf6-9bef-f1fadc2b08f4","type":"Microsoft.Authorization/roleAssignments","name":"0cac59e0-0464-4bf6-9bef-f1fadc2b08f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1","principalId":"93e2b483-3ffa-44f8-9965-fdb104b541a2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T05:43:19.7216795Z","updatedOn":"2021-06-29T05:43:19.7216795Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6aff8c2-08b1-5b1a-9c80-d91164226985","type":"Microsoft.Authorization/roleAssignments","name":"c6aff8c2-08b1-5b1a-9c80-d91164226985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4f285ac8-5610-4d2f-854c-bfa3d16a2679","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-11T06:55:02.4909144Z","updatedOn":"2021-07-11T06:55:02.4909144Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0cec2ad2-d080-4126-a99f-f61c559b799c","type":"Microsoft.Authorization/roleAssignments","name":"0cec2ad2-d080-4126-a99f-f61c559b799c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"630db480-3ee6-47ec-ae72-5f917d466bad","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-13T10:16:28.8833400Z","updatedOn":"2021-07-13T10:16:28.8833400Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/37fe4b2d-0aca-4c27-8511-1e0d18063ec8","type":"Microsoft.Authorization/roleAssignments","name":"37fe4b2d-0aca-4c27-8511-1e0d18063ec8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"279982e7-46cf-4e40-9a3b-156c98285cb7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-13T10:18:48.5647062Z","updatedOn":"2021-07-13T10:18:48.5647062Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7907f38d-57a7-431d-82d7-5dfa2ef0a628","type":"Microsoft.Authorization/roleAssignments","name":"7907f38d-57a7-431d-82d7-5dfa2ef0a628"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"790004d0-0112-41ad-92e8-95c464c34476","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-13T10:18:48.6068337Z","updatedOn":"2021-07-13T10:18:48.6068337Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c9bda26-83c4-4d4c-b00b-c4b58301e539","type":"Microsoft.Authorization/roleAssignments","name":"8c9bda26-83c4-4d4c-b00b-c4b58301e539"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-21T06:38:43.9281998Z","updatedOn":"2021-07-21T06:38:43.9281998Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b553fa81-60dd-45d6-9781-8c2313d68b03","type":"Microsoft.Authorization/roleAssignments","name":"b553fa81-60dd-45d6-9781-8c2313d68b03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"a27f3bc9-abe0-404e-baa7-0949a258a204","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T04:31:20.4258578Z","updatedOn":"2021-07-27T04:31:20.4258578Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b2f7b08-f9ef-4fc1-b9c4-2bb34fdef258","type":"Microsoft.Authorization/roleAssignments","name":"4b2f7b08-f9ef-4fc1-b9c4-2bb34fdef258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"a27f3bc9-abe0-404e-baa7-0949a258a204","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T04:31:32.4566300Z","updatedOn":"2021-07-27T04:31:32.4566300Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8176bf09-8e96-448a-ab12-eeed360ecce2","type":"Microsoft.Authorization/roleAssignments","name":"8176bf09-8e96-448a-ab12-eeed360ecce2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb","principalId":"a27f3bc9-abe0-404e-baa7-0949a258a204","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T04:31:48.4577322Z","updatedOn":"2021-07-27T04:31:48.4577322Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45949217-58cc-4c18-93f3-f4c90710ae2d","type":"Microsoft.Authorization/roleAssignments","name":"45949217-58cc-4c18-93f3-f4c90710ae2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"53a2447a-3ec4-42e2-9194-66afe4fcea2b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T10:13:20.8138038Z","updatedOn":"2021-07-27T10:13:20.8138038Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2382b52f-1ec5-430e-ae2a-74f9ed331ced","type":"Microsoft.Authorization/roleAssignments","name":"2382b52f-1ec5-430e-ae2a-74f9ed331ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"53a2447a-3ec4-42e2-9194-66afe4fcea2b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T10:13:23.6551958Z","updatedOn":"2021-07-27T10:13:23.6551958Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5863947-0b21-41b7-9997-c0dfc73eec29","type":"Microsoft.Authorization/roleAssignments","name":"e5863947-0b21-41b7-9997-c0dfc73eec29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb","principalId":"53a2447a-3ec4-42e2-9194-66afe4fcea2b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T10:13:29.6985440Z","updatedOn":"2021-07-27T10:13:29.6985440Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28c1cefa-942f-44c5-a4d4-c33bb92abd45","type":"Microsoft.Authorization/roleAssignments","name":"28c1cefa-942f-44c5-a4d4-c33bb92abd45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8039a424-299a-4014-8b22-4f6d6cc60065","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T07:08:31.9935560Z","updatedOn":"2021-08-11T07:08:31.9935560Z","createdBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","updatedBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/69e0bcfc-b024-4d8b-a3d5-dac447f8986c","type":"Microsoft.Authorization/roleAssignments","name":"69e0bcfc-b024-4d8b-a3d5-dac447f8986c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1","principalId":"8f0340b8-4b70-412b-be19-c4612d49e353","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-20T11:58:29.6857641Z","updatedOn":"2021-08-20T11:58:29.6857641Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd88236f-eacb-5303-912f-ba1741cf02bd","type":"Microsoft.Authorization/roleAssignments","name":"fd88236f-eacb-5303-912f-ba1741cf02bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"0d8f6e68-d6c5-4a67-b6c4-3107609bbdbc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-20T12:31:58.7980661Z","updatedOn":"2021-08-20T12:31:58.7980661Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/146f4a11-8712-583d-89eb-a7b8b82dbaa9","type":"Microsoft.Authorization/roleAssignments","name":"146f4a11-8712-583d-89eb-a7b8b82dbaa9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"e2072d83-2379-4f36-ab51-b5df7460c61e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-21T14:40:08.5987892Z","updatedOn":"2021-08-21T14:40:10.5055205Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/842af679-0b58-5eb5-b94c-ff59e4105d7e","type":"Microsoft.Authorization/roleAssignments","name":"842af679-0b58-5eb5-b94c-ff59e4105d7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"0242778c-29df-4863-ac18-2fb8fd004135","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-08-30T06:31:52.6766200Z","updatedOn":"2021-08-30T06:31:52.6766200Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/f67c65e2-e609-4ffe-b504-294b00cbd2fd","type":"Microsoft.Authorization/roleAssignments","name":"f67c65e2-e609-4ffe-b504-294b00cbd2fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"0242778c-29df-4863-ac18-2fb8fd004135","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-08-30T06:31:57.1552781Z","updatedOn":"2021-08-30T06:31:57.1552781Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/aaeab926-d6e2-4bb6-9e9e-0607e75cc75f","type":"Microsoft.Authorization/roleAssignments","name":"aaeab926-d6e2-4bb6-9e9e-0607e75cc75f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"2ab5fb95-b72e-4d12-948b-4223754d8ffa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-09-08T08:24:19.3547440Z","updatedOn":"2021-09-08T08:24:19.3547440Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/43ee13b8-5abd-51e0-88e3-ae84049da70e","type":"Microsoft.Authorization/roleAssignments","name":"43ee13b8-5abd-51e0-88e3-ae84049da70e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"2d13e5e1-815b-45e7-be6f-3a2c36b407a8","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T09:41:38.5634940Z","updatedOn":"2021-09-17T09:41:38.5634940Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":"for
+ temp testing purpose"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98fe0117-1e9c-4e37-b8a7-c4a1031d6916","type":"Microsoft.Authorization/roleAssignments","name":"98fe0117-1e9c-4e37-b8a7-c4a1031d6916"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9c973a07-b207-473c-9687-bd693ba8e460","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-25T15:23:32.6168771Z","updatedOn":"2021-09-25T15:23:32.6168771Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d852f084-bc9f-4258-9e2c-fcf48b9eaf85","type":"Microsoft.Authorization/roleAssignments","name":"d852f084-bc9f-4258-9e2c-fcf48b9eaf85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1","principalId":"2778738c-452b-45ca-b8d6-f085836a1458","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-30T07:51:25.2399474Z","updatedOn":"2021-09-30T07:51:25.2399474Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b04a3bdf-b6a6-5ffb-9394-ee5743741597","type":"Microsoft.Authorization/roleAssignments","name":"b04a3bdf-b6a6-5ffb-9394-ee5743741597"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ac1f52a-325b-486a-a095-f46ffdd6a9e4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T01:59:18.6998395Z","updatedOn":"2021-10-26T01:59:18.6998395Z","createdBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","updatedBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53a3b238-b4b0-4d3f-b416-8d6dc8d755f6","type":"Microsoft.Authorization/roleAssignments","name":"53a3b238-b4b0-4d3f-b416-8d6dc8d755f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1","principalId":"c3c0d020-16f0-44d8-9950-0250120a33ff","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T06:11:03.5575284Z","updatedOn":"2021-11-02T06:11:03.5575284Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d017732-f67e-5aa1-a4a6-47570078d9f3","type":"Microsoft.Authorization/roleAssignments","name":"1d017732-f67e-5aa1-a4a6-47570078d9f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-10T08:59:19.7285159Z","updatedOn":"2021-11-10T08:59:19.7285159Z","createdBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","updatedBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a60357fa-dc0a-4479-a2a9-4329c2d0ae89","type":"Microsoft.Authorization/roleAssignments","name":"a60357fa-dc0a-4479-a2a9-4329c2d0ae89"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8dd77695-d6a5-450d-a43c-67ca01be9fbc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-12T10:55:38.3698246Z","updatedOn":"2021-11-12T10:55:38.3698246Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dda5bb75-b74a-4430-975f-5bc9611c4b2d","type":"Microsoft.Authorization/roleAssignments","name":"dda5bb75-b74a-4430-975f-5bc9611c4b2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"2152c794-9ca2-41fe-a313-2d0e1ee3eb80","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-18T06:28:12.0181010Z","updatedOn":"2021-02-18T06:28:12.0181010Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/804f6223-03eb-4091-b460-82160fc5f818","type":"Microsoft.Authorization/roleAssignments","name":"804f6223-03eb-4091-b460-82160fc5f818"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2152c794-9ca2-41fe-a313-2d0e1ee3eb80","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-18T06:28:12.0168587Z","updatedOn":"2021-02-18T06:28:12.0168587Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d80e2d6-315c-495c-ab2c-91ddf75edf41","type":"Microsoft.Authorization/roleAssignments","name":"8d80e2d6-315c-495c-ab2c-91ddf75edf41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cf46d636-b6c1-406c-aba7-b2c3d9ed07da","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-26T13:53:53.1151640Z","updatedOn":"2021-02-26T13:53:53.1151640Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/735e98ed-f4b8-4b7d-9cc9-af4f8ae77252","type":"Microsoft.Authorization/roleAssignments","name":"735e98ed-f4b8-4b7d-9cc9-af4f8ae77252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8505e3f4-1ee7-427c-a175-a06595231d46","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-26T13:54:27.5624477Z","updatedOn":"2021-02-26T13:54:27.5624477Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98c87a9f-b9e7-414b-8b59-bf3ec62dbc74","type":"Microsoft.Authorization/roleAssignments","name":"98c87a9f-b9e7-414b-8b59-bf3ec62dbc74"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-25T12:25:27.2277610Z","updatedOn":"2020-07-25T12:25:27.2277610Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6b8ff4-9edb-43f5-aa2a-32133fa09b1d","type":"Microsoft.Authorization/roleAssignments","name":"fd6b8ff4-9edb-43f5-aa2a-32133fa09b1d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"21ae6127-c385-4ae0-b895-a8559e9aa574","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-31T08:35:35.2993523Z","updatedOn":"2020-07-31T08:35:35.2993523Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6af9fbf3-7085-4bcb-b399-88b89fac16d3","type":"Microsoft.Authorization/roleAssignments","name":"6af9fbf3-7085-4bcb-b399-88b89fac16d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1e845bc3-37db-4639-be09-d0cf1e448221","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-31T08:44:16.2909420Z","updatedOn":"2020-07-31T08:44:16.2909420Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65080390-e9b5-4566-b362-d1e96c23dae2","type":"Microsoft.Authorization/roleAssignments","name":"65080390-e9b5-4566-b362-d1e96c23dae2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T06:12:01.6760584Z","updatedOn":"2020-11-03T06:12:01.6760584Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7a12420-2dce-4a47-822e-68cadf239da3","type":"Microsoft.Authorization/roleAssignments","name":"a7a12420-2dce-4a47-822e-68cadf239da3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3282af51-433d-47e8-b2b5-633fbe0fecc0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T06:25:32.6790913Z","updatedOn":"2020-11-03T06:25:32.6790913Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36da831d-10ce-4f42-ba28-362960f6ea36","type":"Microsoft.Authorization/roleAssignments","name":"36da831d-10ce-4f42-ba28-362960f6ea36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupFlaggedSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-10-04T07:35:39.6626948Z","updatedOn":"2019-10-04T07:35:39.6626948Z","createdBy":"8031e009-cc05-4950-8a8d-78942c4492ac","updatedBy":"8031e009-cc05-4950-8a8d-78942c4492ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupFlaggedSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/730fa65e-c74c-4c3d-9cc3-9457f9b97274","type":"Microsoft.Authorization/roleAssignments","name":"730fa65e-c74c-4c3d-9cc3-9457f9b97274"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupFlaggedSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2021-04-08T01:03:29.8241478Z","updatedOn":"2021-04-08T01:03:29.8241478Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupFlaggedSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/63818ccb-a05c-4083-9e1d-64b4c7c0e1cd","type":"Microsoft.Authorization/roleAssignments","name":"63818ccb-a05c-4083-9e1d-64b4c7c0e1cd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c87d9afe-4463-41d5-81e3-3bd162af9183","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-07-10T09:38:17.4348497Z","updatedOn":"2019-07-10T09:38:17.4348497Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/ebc56c6d-c5de-4d99-b166-89d4ac815acd","type":"Microsoft.Authorization/roleAssignments","name":"ebc56c6d-c5de-4d99-b166-89d4ac815acd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-03-15T11:01:18.6794974Z","updatedOn":"2019-03-15T11:01:18.6794974Z","createdBy":"809e610d-9130-4b22-8c3a-5e6c64adc2c7","updatedBy":"809e610d-9130-4b22-8c3a-5e6c64adc2c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/9fb9b151-1d53-4eff-9336-75cf634e1e3d","type":"Microsoft.Authorization/roleAssignments","name":"9fb9b151-1d53-4eff-9336-75cf634e1e3d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f87f6638-3a1b-4562-8603-aacd59537149","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-05-03T06:47:05.1411825Z","updatedOn":"2019-05-03T06:47:05.1411825Z","createdBy":"809e610d-9130-4b22-8c3a-5e6c64adc2c7","updatedBy":"809e610d-9130-4b22-8c3a-5e6c64adc2c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/24ffbb29-061f-4b1d-8c26-c6e90ef53303","type":"Microsoft.Authorization/roleAssignments","name":"24ffbb29-061f-4b1d-8c26-c6e90ef53303"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"becb4b6b-fe16-413b-a5c3-90355e0b2982","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-06-26T06:33:50.1123976Z","updatedOn":"2019-06-26T06:33:50.1123976Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/4c3721e8-06f4-4115-a2d8-90c4a9a57d56","type":"Microsoft.Authorization/roleAssignments","name":"4c3721e8-06f4-4115-a2d8-90c4a9a57d56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T16:59:19.6098216Z","updatedOn":"2021-04-07T16:59:19.6098216Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/9d2de631-e451-450b-8237-e5bc19624eee","type":"Microsoft.Authorization/roleAssignments","name":"9d2de631-e451-450b-8237-e5bc19624eee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"b1b96a90-235c-4668-a931-ee1c08db7681","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2021-02-01T04:47:38.5676012Z","updatedOn":"2021-02-01T04:47:38.5676012Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/a9e38032-c21b-4c41-8960-1c9c982d98e2","type":"Microsoft.Authorization/roleAssignments","name":"a9e38032-c21b-4c41-8960-1c9c982d98e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a51d0ef9-9895-4b63-b3f8-354bb7d1a6bb","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2021-03-03T05:31:57.4716459Z","updatedOn":"2021-03-03T05:31:57.4716459Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/77aa0ff2-42c2-4e01-a51d-01cf2dd7ce04","type":"Microsoft.Authorization/roleAssignments","name":"77aa0ff2-42c2-4e01-a51d-01cf2dd7ce04"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ce2366a6-64d7-441b-939c-c9d23f91cccd","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"}]}'
headers:
cache-control:
- no-cache
content-length:
- - '1160'
+ - '85747'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 21 Apr 2022 06:57:16 GMT
+ - Tue, 24 May 2022 12:12:20 GMT
expires:
- '-1'
pragma:
@@ -784,8 +935,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce",
- "principalId": "3f74f5b7-f4f6-4b65-a45d-f1c60467e115", "principalType": "ServicePrincipal"}}'
+ body: null
headers:
Accept:
- application/json
@@ -795,7 +945,1099 @@ interactions:
- role assignment create
Connection:
- keep-alive
- Content-Length:
+ Cookie:
+ - x-ms-gateway-slice=Production
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Disk%20Backup%20Reader%27&api-version=2018-01-01-preview
+ response:
+ body:
+ string: '{"value":[{"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"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '738'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ set-cookie:
+ - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Cookie:
+ - x-ms-gateway-slice=Production
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new/providers/Microsoft.Authorization/roleDefinitions?api-version=2018-01-01-preview
+ response:
+ body:
+ string: "{\"value\":[{\"properties\":{\"roleName\":\"Avere Cluster Create\",\"type\":\"CustomRole\",\"description\":\"Avere
+ cluster create role used by the Avere controller to create a vFXT cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.Authorization/roleDefinitions/*\",\"Microsoft.Compute/*/read\",\"Microsoft.Compute/availabilitySets/*\",\"Microsoft.Compute/virtualMachines/*\",\"Microsoft.Network/*/read\",\"Microsoft.Network/networkInterfaces/*\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Storage/*/read\",\"Microsoft.Storage/storageAccounts/listKeys/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-11-29T18:46:55.0492387Z\",\"updatedOn\":\"2018-11-29T18:46:55.0492387Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\"},{\"properties\":{\"roleName\":\"Avere
+ Cluster Runtime Operator\",\"type\":\"CustomRole\",\"description\":\"Avere
+ cluster runtime role used by Avere clusters running in subscriptions, for
+ the purpose of failing over IP addresses, accessing BLOB storage, etc\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/routeTables/read\",\"Microsoft.Network/routeTables/routes/*\",\"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\":\"2018-08-26T00:41:26.2170858Z\",\"updatedOn\":\"2018-08-26T00:41:26.2170858Z\",\"createdBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\"updatedBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e078ab98-ef3a-4c9a-aba7-12f5172b45d0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e078ab98-ef3a-4c9a-aba7-12f5172b45d0\"},{\"properties\":{\"roleName\":\"Azure
+ Service Deploy Release Management Contributor\",\"type\":\"CustomRole\",\"description\":\"Contributor
+ role for services deploying through Azure Service Deploy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-02-04T02:26:31.5413362Z\",\"updatedOn\":\"2018-01-08T20:20:16.3660174Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21d96096-b162-414a-8302-d8354f9d91b2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21d96096-b162-414a-8302-d8354f9d91b2\"},{\"properties\":{\"roleName\":\"CAL-Custom-Role\",\"type\":\"CustomRole\",\"description\":\"Lets
+ SAP Cloud Appliance Library application manage Network and Compute services,
+ manage Resource Groups and Management locks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/locks/*\",\"Microsoft.Authorization/roleDefinitions/*\",\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.Compute/*\",\"Microsoft.Network/*\",\"Microsoft.Resources/*\",\"Microsoft.Storage/*\",\"Microsoft.ContainerService/*\",\"Microsoft.ContainerRegistry/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-05-14T19:30:51.0664585Z\",\"updatedOn\":\"2019-02-19T19:11:57.5963229Z\",\"createdBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7b266cd7-0bba-4ae2-8423-90ede5e1e898\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7b266cd7-0bba-4ae2-8423-90ede5e1e898\"},{\"properties\":{\"roleName\":\"Dsms
+ Role (deprecated)\",\"type\":\"CustomRole\",\"description\":\"Custom role
+ used by Dsms to perform operations. Can list and regnerate storage account
+ keys.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-17T18:02:11.1225951Z\",\"updatedOn\":\"2018-01-13T00:21:52.7211696Z\",\"createdBy\":\"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\",\"updatedBy\":\"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\"},{\"properties\":{\"roleName\":\"Dsms
+ Role (do not use)\",\"type\":\"CustomRole\",\"description\":\"Custom role
+ used by Dsms to perform operations. Can list and regnerate storage account
+ keys.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-02-01T07:56:12.5880222Z\",\"updatedOn\":\"2018-08-09T17:53:48.5432297Z\",\"createdBy\":\"becb4b6b-fe16-413b-a5c3-90355e0b2982\",\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7aff565e-6c55-448d-83db-ccf482c6da2f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7aff565e-6c55-448d-83db-ccf482c6da2f\"},{\"properties\":{\"roleName\":\"ExpressRoute
+ Administrator\",\"type\":\"CustomRole\",\"description\":\"Can create, delete
+ and manage ExpressRoutes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/locks/*\",\"Microsoft.Authorization/policyAssignments/*\",\"Microsoft.Authorization/policyDefinitions/*\",\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.ClassicNetwork/*\",\"Microsoft.EventGrid/*\",\"Microsoft.Insights/*\",\"Microsoft.Network/*\",\"Microsoft.Resources/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-08-31T03:51:32.2843055Z\",\"updatedOn\":\"2019-03-20T22:55:18.8222085Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a48d7896-14b4-4889-afef-fbb65a96e5a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a48d7896-14b4-4889-afef-fbb65a96e5a2\"},{\"properties\":{\"roleName\":\"GenevaWarmPathResourceContributor\",\"type\":\"CustomRole\",\"description\":\"Can
+ manage service bus and storage accounts.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/namespaces/*\",\"Microsoft.Resources/subscriptions/resourceGroups/*\",\"Microsoft.ServiceBus/namespaces/*\",\"Microsoft.Storage/storageAccounts/*\",\"Microsoft.Storage/storageAccounts/managementPolicies/write\",\"Microsoft.Storage/storageAccounts/managementPolicies/read\",\"Microsoft.Storage/storageAccounts/managementPolicies/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-03-14T22:30:10.1999436Z\",\"updatedOn\":\"2022-02-28T23:26:40.0052537Z\",\"createdBy\":null,\"updatedBy\":\"acis\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\"},{\"properties\":{\"roleName\":\"masterreader\",\"type\":\"CustomRole\",\"description\":\"Lets
+ you view everything, but not make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-11-14T23:38:05.3353858Z\",\"updatedOn\":\"2017-11-14T23:38:05.3353858Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a48d7796-14b4-4889-afef-fbb65a93e5a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a48d7796-14b4-4889-afef-fbb65a93e5a2\"},{\"properties\":{\"roleName\":\"Microsoft
+ OneAsset Reader\",\"type\":\"CustomRole\",\"description\":\"This role is for
+ Microsoft OneAsset team (CSEO) to track internal security compliance and resource
+ utilization.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-27T23:51:08.6333052Z\",\"updatedOn\":\"2019-04-02T20:35:43.3396263Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd1bb084-1503-4bd2-99c0-630220046786\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd1bb084-1503-4bd2-99c0-630220046786\"},{\"properties\":{\"roleName\":\"Office
+ DevOps\",\"type\":\"CustomRole\",\"description\":\"Custom access for developers
+ to operations but not secrets.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachineScaleSets/restart/action\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/restart/action\",\"Microsoft.Sql/servers/databases/replicationLinks/delete\",\"Microsoft.Sql/servers/databases/replicationLinks/failover/action\",\"Microsoft.Sql/servers/databases/replicationLinks/forceFailoverAllowDataLoss/action\",\"Microsoft.Sql/servers/databases/replicationLinks/operationResults/read\",\"Microsoft.Sql/servers/databases/replicationLinks/read\",\"Microsoft.Sql/servers/databases/replicationLinks/unlink/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-10-07T08:11:46.1639398Z\",\"updatedOn\":\"2017-03-16T18:43:08.3234306Z\",\"createdBy\":\"25aea6be-b605-4347-a92d-33e178e412ec\",\"updatedBy\":\"25aea6be-b605-4347-a92d-33e178e412ec\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7fd64851-3279-459b-b614-e2b2ba760f5b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7fd64851-3279-459b-b614-e2b2ba760f5b\"},{\"properties\":{\"roleName\":\"GenevaWarmPathStorageBlobContributor\",\"type\":\"CustomRole\",\"description\":\"Geneva
+ Warm Path Storage Blob Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/lease/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/lock/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/extend/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/delete\",\"Microsoft.Storage/storageAccounts/managementPolicies/write\",\"Microsoft.Storage/storageAccounts/managementPolicies/read\",\"Microsoft.Storage/storageAccounts/managementPolicies/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-12-06T22:46:27.1365630Z\",\"updatedOn\":\"2022-02-28T23:26:40.4152515Z\",\"createdBy\":null,\"updatedBy\":\"acis\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a16c43ca-2d67-4dcd-9ded-6412f5edc51a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a16c43ca-2d67-4dcd-9ded-6412f5edc51a\"},{\"properties\":{\"roleName\":\"Azure
+ Service Deploy Release Management Restricted Owner\",\"type\":\"CustomRole\",\"description\":\"Restricted
+ owner role for services deploying through Azure Service Deploy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\"],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/locks/write\",\"Microsoft.Authorization/policyassignments/write\",\"Microsoft.Authorization/policydefinitions/write\",\"Microsoft.Authorization/policysetdefinitions/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-03-07T22:16:06.8803898Z\",\"updatedOn\":\"2022-03-07T22:16:06.8803898Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"94ddc4bc-25f5-4f3e-b527-c587da93cfe4\"},{\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-25T19:42:59.1576710Z\",\"updatedOn\":\"2021-11-11T20:13:13.3634724Z\",\"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-16T21:40:14.0457546Z\",\"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 backup
+ service,but can't create 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/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/backupInstances/backup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/restore/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/write\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/read\",\"Microsoft.DataProtection/locations/checkNameAvailability/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/providers/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:12:15.7321344Z\",\"updatedOn\":\"2021-11-11T20:13:24.3657611Z\",\"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
+ 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/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/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/locations/operationStatus/read\",\"Microsoft.DataProtection/locations/operationResults/read\",\"Microsoft.DataProtection/providers/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:21:11.8947640Z\",\"updatedOn\":\"2021-12-16T12:53:00.0624003Z\",\"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\":\"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/backupInstances/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/findRestorableTimeRanges/action\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/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/providers/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:18:41.3893065Z\",\"updatedOn\":\"2021-11-11T20:13:24.8792711Z\",\"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\u2019t 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\":\"2021-11-11T20:13:25.4059314Z\",\"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
+ Endpoint Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view CDN
+ endpoints, but can\u2019t 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\":\"2022-01-26T19:51:29.2636610Z\",\"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\":\"CDN
+ Profile Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage
+ CDN profiles and their endpoints, but can\u2019t 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\":\"2021-11-11T20:13:25.9224344Z\",\"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\u2019t 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.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2021-11-11T20:13:26.0983652Z\",\"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 (Preview)\",\"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\":\"2021-11-11T20:13:27.7138054Z\",\"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\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:28.6061853Z\",\"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.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\":\"2021-11-11T20:13:39.3023761Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-06-22T00:28:29.0523964Z\",\"updatedOn\":\"2021-11-11T20:13:39.6573851Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-06-22T00:31:03.4295347Z\",\"updatedOn\":\"2021-11-11T20:13:39.8274007Z\",\"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
+ 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\":\"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\":\"2021-11-11T20:13:44.4578442Z\",\"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\":\"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.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationalInsights/workspaces/search/action\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\"Microsoft.Support/*\",\"Microsoft.WorkloadMonitor/monitors/*\",\"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\"Microsoft.AlertsManagement/actionRules/*\",\"Microsoft.AlertsManagement/smartGroups/*\",\"Microsoft.AlertsManagement/migrateFromSmartDetection/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-09-21T19:21:08.4345976Z\",\"updatedOn\":\"2022-03-11T00:34:18.2670392Z\",\"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\":\"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/policysetdefinitions/*\",\"Microsoft.PolicyInsights/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-08-25T19:08:01.3861639Z\",\"updatedOn\":\"2021-11-11T20:13:49.6679217Z\",\"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
+ 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.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-03T07:51:23.0917487Z\",\"updatedOn\":\"2021-11-15T06:42:49.8263550Z\",\"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\":\"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/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/databases/transparentDataEncryption/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/read\",\"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/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/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/externalPolicyBasedAuthorizations/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-16T18:44:40.4607572Z\",\"updatedOn\":\"2022-04-27T21:08:08.4474437Z\",\"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-28T19:00:53.9963035Z\",\"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\":\"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\":\"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 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 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.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\":\"2021-11-11T20:13:58.3176075Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:58.4926099Z\",\"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/serverFarms/join/action\",\"Microsoft.Web/serverFarms/read\",\"Microsoft.Web/sites/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-05-12T23:10:23.6193952Z\",\"updatedOn\":\"2021-11-11T20:13:58.6655647Z\",\"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/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\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-26T17:01:17.0169383Z\",\"updatedOn\":\"2021-11-11T20:14:00.0802032Z\",\"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\"],\"notDataActions\":[]}],\"createdOn\":\"2019-08-07T00:29:03.8727621Z\",\"updatedOn\":\"2021-11-11T20:14:05.9821791Z\",\"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\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:39:03.8725173Z\",\"updatedOn\":\"2021-11-11T20:14:07.2371450Z\",\"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/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.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\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:54:07.6467264Z\",\"updatedOn\":\"2021-11-11T20:14:07.4171916Z\",\"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\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:58:50.1132117Z\",\"updatedOn\":\"2022-05-06T20:39:57.5331324Z\",\"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\":\"Workbook
+ Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read workbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.insights/workbooks/read\",\"microsoft.insights/workbooktemplates/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:56:17.6808140Z\",\"updatedOn\":\"2022-01-03T19:15:12.6968428Z\",\"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\":\"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/workbooktemplates/write\",\"Microsoft.Insights/workbooktemplates/delete\",\"Microsoft.Insights/workbooktemplates/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:59:42.4820277Z\",\"updatedOn\":\"2022-01-03T19:14:31.2372561Z\",\"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\":\"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/privateLinkScopes/read\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:15:07.1372870Z\",\"updatedOn\":\"2021-11-11T20:14:10.8735219Z\",\"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\":\"Azure
+ Connected Machine Resource Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Can
+ read, write, delete and re-onboard Azure Connected Machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/privateLinkScopes/*\",\"Microsoft.HybridCompute/*/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:24:59.1474607Z\",\"updatedOn\":\"2021-12-15T16:10:25.5898511Z\",\"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\":\"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\"],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:41:40.1185063Z\",\"updatedOn\":\"2021-11-11T20:14:11.4035314Z\",\"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.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-11-18T17:00:02.2087147Z\",\"updatedOn\":\"2021-11-11T20:14:12.4685303Z\",\"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.ContainerService/managedClusters/read\",\"Microsoft.ContainerService/managedClusters/write\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-27T19:27:15.0739970Z\",\"updatedOn\":\"2021-11-11T20:14:21.2621727Z\",\"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/models/read\",\"Microsoft.DigitalTwins/query/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:48:14.7057381Z\",\"updatedOn\":\"2021-11-11T20:14:22.3621788Z\",\"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/eventroutes/*\",\"Microsoft.DigitalTwins/digitaltwins/*\",\"Microsoft.DigitalTwins/digitaltwins/commands/*\",\"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\"Microsoft.DigitalTwins/models/*\",\"Microsoft.DigitalTwins/query/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:49:33.7821930Z\",\"updatedOn\":\"2021-11-11T20:14:22.5471888Z\",\"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\":[]}],\"createdOn\":\"2020-03-17T18:35:04.4949547Z\",\"updatedOn\":\"2021-11-11T20:14:23.6235473Z\",\"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/*\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/*\"],\"notDataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/hardDelete/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/hardDelete/action\"]}],\"createdOn\":\"2020-03-17T18:55:35.2413335Z\",\"updatedOn\":\"2021-11-11T20:14:24.1442783Z\",\"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 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\":\"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/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.2499247Z\",\"updatedOn\":\"2021-11-11T20:14:31.1292967Z\",\"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.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:47:24.4071415Z\",\"updatedOn\":\"2021-11-11T20:14:35.5993607Z\",\"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.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"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\":\"2021-11-11T20:14:35.7743651Z\",\"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.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.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/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/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/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\":\"2021-11-11T20:14:35.9544048Z\",\"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.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.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/batch/jobs/*\",\"Microsoft.ContainerService/managedClusters/configmaps/*\",\"Microsoft.ContainerService/managedClusters/endpoints/*\",\"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\"Microsoft.ContainerService/managedClusters/events/read\",\"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/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/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\":\"2021-11-11T20:14:36.1293406Z\",\"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\":\"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\":\"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\":\"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/send/action\",\"Microsoft.SignalRService/SignalR/group/send/action\",\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/group/write\",\"Microsoft.SignalRService/SignalR/clientConnection/send/action\",\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/clientConnection/write\",\"Microsoft.SignalRService/SignalR/user/send/action\",\"Microsoft.SignalRService/SignalR/user/read\",\"Microsoft.SignalRService/SignalR/user/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-29T09:35:32.2764751Z\",\"updatedOn\":\"2021-11-11T20:14:38.8028020Z\",\"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 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\":\"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 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/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-14T10:21:08.9138820Z\",\"updatedOn\":\"2021-11-11T20:14:45.0056815Z\",\"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/farmers/write\",\"Microsoft.AgFoodPlatform/deletionJobs/*/write\"]}],\"createdOn\":\"2020-09-14T10:21:09.7239169Z\",\"updatedOn\":\"2021-11-11T20:14:45.1806787Z\",\"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-07T20:20:03.1782149Z\",\"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/auth/accessKey/action\",\"Microsoft.SignalRService/SignalR/auth/clientToken/action\",\"Microsoft.SignalRService/SignalR/hub/send/action\",\"Microsoft.SignalRService/SignalR/group/send/action\",\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/group/write\",\"Microsoft.SignalRService/SignalR/clientConnection/send/action\",\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/clientConnection/write\",\"Microsoft.SignalRService/SignalR/serverConnection/write\",\"Microsoft.SignalRService/SignalR/user/send/action\",\"Microsoft.SignalRService/SignalR/user/read\",\"Microsoft.SignalRService/SignalR/user/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-10-13T09:20:32.1501410Z\",\"updatedOn\":\"2021-11-11T20:14:48.9653162Z\",\"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-25T20:55:26.9790121Z\",\"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-20T01:44:53.5887074Z\",\"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\":\"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 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\":\"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\":\"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 Uesr 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\":\"2021-11-11T20:14:54.5657970Z\",\"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\":\"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/discoveries/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/uploads/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/*\",\"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-01-04T13:19:41.5458536Z\",\"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 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\":\"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\":\"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\":\"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\":\"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.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\":\"2021-11-11T20:15:00.9583919Z\",\"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\":\"Web
+ PubSub Service Owner (Preview)\",\"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\":\"2021-11-16T05:16:52.6491279Z\",\"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 (Preview)\",\"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\":\"2021-11-16T05:17:12.8340953Z\",\"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\":\"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 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/*/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/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/files/read\",\"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/utterances/read\"]}],\"createdOn\":\"2021-03-30T11:28:27.4339032Z\",\"updatedOn\":\"2022-05-23T15:08:46.2082116Z\",\"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\":\"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/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-30T11:28:49.7826633Z\",\"updatedOn\":\"2022-05-23T15:08:46.1925859Z\",\"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\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-31T01:51:41.3557295Z\",\"updatedOn\":\"2021-11-11T20:15:05.8818362Z\",\"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\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventGrid/events/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-02T21:55:40.4847495Z\",\"updatedOn\":\"2021-11-11T20:15:13.5605134Z\",\"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\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-07-14T21:51:06.0361218Z\",\"updatedOn\":\"2021-11-11T20:15:14.6405263Z\",\"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\":\"Built-in Grafana admin
+ role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaAdmin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-15T21:32:35.3802340Z\",\"updatedOn\":\"2021-11-11T20:15:14.8104670Z\",\"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\":\"Built-in Grafana Viewer
+ role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaViewer/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-05T16:36:18.7737511Z\",\"updatedOn\":\"2021-11-11T20:15:16.9904932Z\",\"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\":\"Built-in Grafana Editor
+ role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaEditor/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-05T16:37:32.5299593Z\",\"updatedOn\":\"2021-11-11T20:15:17.1805426Z\",\"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\":\"CodeSigning
+ 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.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\":\"2021-11-11T20:15:18.6105679Z\",\"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.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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-18T20:19:53.0087024Z\",\"updatedOn\":\"2021-11-11T20:15:23.8706020Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-18T20:20:46.5105444Z\",\"updatedOn\":\"2021-11-11T20:15:24.0456080Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-01T17:12:42.6172725Z\",\"updatedOn\":\"2021-11-11T20:15:25.1275776Z\",\"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\":\"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.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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-01T22:18:08.4480747Z\",\"updatedOn\":\"2022-01-14T02:51:08.7237156Z\",\"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\":\"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-knowledgebases/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"]}],\"createdOn\":\"2021-11-04T03:29:14.7643336Z\",\"updatedOn\":\"2022-03-29T18:02:09.1378280Z\",\"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-29T18:03:23.4902754Z\",\"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-29T18:03:46.5617184Z\",\"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/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-09T08:11:21.0936461Z\",\"updatedOn\":\"2021-11-11T20:15:27.1189225Z\",\"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\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-10T06:14:08.3903105Z\",\"updatedOn\":\"2021-11-11T20:15:28.2297181Z\",\"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\":\"Chamber
+ User\",\"type\":\"BuiltInRole\",\"description\":\"Lets you view everything
+ under your HPC Workbench chamber, but not make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HpcWorkbench/instances/chambers/*/read\",\"Microsoft.HpcWorkbench/instances/chambers/workloads/*\",\"Microsoft.HpcWorkbench/instances/chambers/getUploadUri/action\",\"Microsoft.HpcWorkbench/instances/consortiums/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-12-15T20:51:06.2119764Z\",\"updatedOn\":\"2022-01-27T04:54:22.9559555Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4447db05-44ed-4da3-ae60-6cbece780e32\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4447db05-44ed-4da3-ae60-6cbece780e32\"},{\"properties\":{\"roleName\":\"Chamber
+ Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage everything
+ under your HPC Workbench chamber.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HpcWorkbench/*/read\",\"Microsoft.HpcWorkbench/instances/chambers/*\",\"Microsoft.HpcWorkbench/instances/consortiums/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-12-15T20:53:14.4428297Z\",\"updatedOn\":\"2022-01-20T05:04:48.3694000Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4e9b8407-af2e-495b-ae54-bb60a55b1b5a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4e9b8407-af2e-495b-ae54-bb60a55b1b5a\"},{\"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/listManagedProxyDetails/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.HybridCompute/machines/WACLoginAsAdmin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-01-12T00:51:19.5581155Z\",\"updatedOn\":\"2022-05-03T20:59:23.1425428Z\",\"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\":\"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\":\"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-15T19:19:25.6182575Z\",\"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\":\"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.AAD/domainServices/read\",\"Microsoft.AAD/domainServices/oucontainer/read\",\"Microsoft.AAD/domainServices/OutboundNetworkDependenciesEndpoints/read\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/logDefinitions/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-02-23T00:41:52.2906373Z\",\"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.AAD/register/action\",\"Microsoft.AAD/unregister/action\",\"Microsoft.AAD/domainServices/read\",\"Microsoft.AAD/domainServices/write\",\"Microsoft.AAD/domainServices/delete\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/diagnosticSettings/write\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/logDefinitions/read\",\"Microsoft.AAD/domainServices/oucontainer/read\",\"Microsoft.AAD/domainServices/oucontainer/write\",\"Microsoft.AAD/domainServices/oucontainer/delete\",\"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-02-23T00:43:08.3207354Z\",\"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-11T20:54:15.0659022Z\",\"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\":\"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-01T01:28:16.0862180Z\",\"updatedOn\":\"2022-03-01T01:28:16.0862180Z\",\"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/sensorPartnerScope/*\"],\"notDataActions\":[\"Microsoft.AgFoodPlatform/sensorPartnerScope/sensors/delete\"]}],\"createdOn\":\"2022-03-09T04:58:18.4183393Z\",\"updatedOn\":\"2022-03-09T04:58:18.4183393Z\",\"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-10T00:33:23.4134686Z\",\"updatedOn\":\"2022-03-25T20:36:59.8004672Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-03-21T10:27:57.4429306Z\",\"updatedOn\":\"2022-04-13T08:04:30.2446363Z\",\"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.Fidalgo/projects/read\",\"Microsoft.Fidalgo/projects/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Fidalgo/projects/users/virtualMachines/userStop/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStart/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userGetRdpFileContent/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userRead/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userWrite/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userDelete/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-03-30T19:23:03.9063898Z\",\"updatedOn\":\"2022-03-30T19:23:03.9063898Z\",\"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.Fidalgo/projects/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[\"Microsoft.Fidalgo/projects/write\",\"Microsoft.Fidalgo/projects/delete\"],\"dataActions\":[\"Microsoft.Fidalgo/projects/users/virtualMachines/adminStart/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminStop/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminRead/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminWrite/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminDelete/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStop/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStart/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userGetRdpFileContent/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userRead/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userWrite/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userDelete/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-03-31T19:42:53.1063939Z\",\"updatedOn\":\"2022-03-31T19:42:53.1063939Z\",\"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-06T23:57:08.4960876Z\",\"updatedOn\":\"2022-04-16T18:55:22.3226785Z\",\"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 VM Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Arc
+ ScVmm VM Contributor has permissions to perform all VM actions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.scvmm/virtualmachines/*\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T17:19:43.4978394Z\",\"updatedOn\":\"2022-05-05T20:21:52.7065718Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T17:20:22.0259391Z\",\"updatedOn\":\"2022-05-05T20:21:42.0160634Z\",\"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 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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T17:21:31.8768952Z\",\"updatedOn\":\"2022-05-05T20:22:10.3489590Z\",\"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 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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T17:23:34.5429371Z\",\"updatedOn\":\"2022-05-05T20:23:15.0154893Z\",\"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\":\"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-19T07:59:47.5802132Z\",\"updatedOn\":\"2022-04-21T09:08:14.6059986Z\",\"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\":\"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-06T17:39:17.7581243Z\",\"updatedOn\":\"2022-05-10T21:30:34.1382013Z\",\"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\"}]}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '397418'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ set-cookie:
+ - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"ids": ["0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7"], "types": ["user", "group",
+ "servicePrincipal", "directoryObjectPartnerReference"]}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '132'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
+ method: POST
+ uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds
+ response:
+ body:
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.DataProtection/BackupVaults/cli-test-new-vault"],"appDisplayName":null,"appDescription":null,"appId":"e9a0c741-6333-46f7-86fe-5192f5d4bbc5","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-05-24T11:50:03Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"cli-test-new-vault","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["e9a0c741-6333-46f7-86fe-5192f5d4bbc5","https://identity.azure.net/yHvRErNNmOMZ4EezrAqFKc6Ca0cDdhCvjeK23cGv1hE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null},"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"7DC4E6931C5F85E71F4A5BEB5A59EE2FA1D9FA86","displayName":"CN=e9a0c741-6333-46f7-86fe-5192f5d4bbc5","endDateTime":"2022-08-22T11:45:00Z","key":null,"keyId":"77543e9f-1f8a-416d-948a-0e477d25855d","startDateTime":"2022-05-24T11:45:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[]}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1730'
+ content-type:
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:22 GMT
+ location:
+ - https://graph.microsoft.com
+ odata-version:
+ - '4.0'
+ request-id:
+ - 4bf04855-2073-4e62-9402-355586d77818
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF0000298D"}}'
+ x-ms-resource-unit:
+ - '3'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
+ method: GET
+ uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7')
+ response:
+ body:
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '92'
+ content-type:
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:23 GMT
+ odata-version:
+ - '4.0'
+ request-id:
+ - 282e5582-ea7d-4ae2-bf06-0cd25cb1ffe4
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00002516"}}'
+ x-ms-resource-unit:
+ - '1'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"ids": ["0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7"], "types": ["user", "group",
+ "servicePrincipal", "directoryObjectPartnerReference"]}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '132'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
+ method: POST
+ uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds
+ response:
+ body:
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.DataProtection/BackupVaults/cli-test-new-vault"],"appDisplayName":null,"appDescription":null,"appId":"e9a0c741-6333-46f7-86fe-5192f5d4bbc5","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-05-24T11:50:03Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"cli-test-new-vault","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["e9a0c741-6333-46f7-86fe-5192f5d4bbc5","https://identity.azure.net/yHvRErNNmOMZ4EezrAqFKc6Ca0cDdhCvjeK23cGv1hE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null},"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"7DC4E6931C5F85E71F4A5BEB5A59EE2FA1D9FA86","displayName":"CN=e9a0c741-6333-46f7-86fe-5192f5d4bbc5","endDateTime":"2022-08-22T11:45:00Z","key":null,"keyId":"77543e9f-1f8a-416d-948a-0e477d25855d","startDateTime":"2022-05-24T11:45:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[]}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1730'
+ content-type:
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:22 GMT
+ location:
+ - https://graph.microsoft.com
+ odata-version:
+ - '4.0'
+ request-id:
+ - 1188bcae-bbaa-444a-a486-8750b6d1b1ea
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00002973"}}'
+ x-ms-resource-unit:
+ - '3'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Disk%20Snapshot%20Contributor%27&api-version=2018-01-01-preview
+ response:
+ body:
+ string: '{"value":[{"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"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1160'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ set-cookie:
+ - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce",
+ "principalId": "0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7", "principalType": "ServicePrincipal"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Content-Length:
- '270'
Content-Type:
- application/json; charset=utf-8
@@ -805,38 +2047,2521 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/eede4548-9f71-44b7-8077-c49aa44894b4?api-version=2020-04-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/ef1d4193-3fa2-485d-ba71-432667ee79be?api-version=2020-04-01-preview
+ response:
+ body:
+ string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment
+ already exists."}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '89'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ set-cookie:
+ - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 409
+ message: Conflict
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
+ method: GET
+ uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7')
+ response:
+ body:
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '92'
+ content-type:
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:25 GMT
+ odata-version:
+ - '4.0'
+ request-id:
+ - b3e929b1-569b-4259-b449-241c3598efcf
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00002516"}}'
+ x-ms-resource-unit:
+ - '1'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"ids": ["0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7"], "types": ["user", "group",
+ "servicePrincipal", "directoryObjectPartnerReference"]}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '132'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
+ method: POST
+ uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds
+ response:
+ body:
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.DataProtection/BackupVaults/cli-test-new-vault"],"appDisplayName":null,"appDescription":null,"appId":"e9a0c741-6333-46f7-86fe-5192f5d4bbc5","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-05-24T11:50:03Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"cli-test-new-vault","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["e9a0c741-6333-46f7-86fe-5192f5d4bbc5","https://identity.azure.net/yHvRErNNmOMZ4EezrAqFKc6Ca0cDdhCvjeK23cGv1hE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null},"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"7DC4E6931C5F85E71F4A5BEB5A59EE2FA1D9FA86","displayName":"CN=e9a0c741-6333-46f7-86fe-5192f5d4bbc5","endDateTime":"2022-08-22T11:45:00Z","key":null,"keyId":"77543e9f-1f8a-416d-948a-0e477d25855d","startDateTime":"2022-05-24T11:45:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[]}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1730'
+ content-type:
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:25 GMT
+ location:
+ - https://graph.microsoft.com
+ odata-version:
+ - '4.0'
+ request-id:
+ - 0a52008a-1030-44f4-807a-1e3d45b7fd9a
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00002733"}}'
+ x-ms-resource-unit:
+ - '3'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29&api-version=2020-04-01-preview
+ response:
+ body:
+ string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"5c617d2b-99f8-4c90-98fe-dfe040fa33c1","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1d8b8d73-0cc6-4db8-b112-724b4a932253","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-26T12:22:13.7498923Z","updatedOn":"2019-08-26T12:22:13.7498923Z","createdBy":"1743392d-76d5-4611-94c2-448be522b83c","updatedBy":"1743392d-76d5-4611-94c2-448be522b83c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3a4de9-1ebd-47ce-9dd9-bebf87a4e28f","type":"Microsoft.Authorization/roleAssignments","name":"8c3a4de9-1ebd-47ce-9dd9-bebf87a4e28f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1e845bc3-37db-4639-be09-d0cf1e448221","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-05-24T11:02:27.8515917Z","updatedOn":"2019-05-24T11:02:27.8515917Z","createdBy":"d1f96755-9bcf-44b8-ab82-df67360496c4","updatedBy":"d1f96755-9bcf-44b8-ab82-df67360496c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5eee4d7-5f9f-4f63-8040-8aec158c289b","type":"Microsoft.Authorization/roleAssignments","name":"b5eee4d7-5f9f-4f63-8040-8aec158c289b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"235b2664-75e2-4741-bb6f-37e49babf6cd","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-12T11:34:59.7104212Z","updatedOn":"2020-02-12T11:34:59.7104212Z","createdBy":"1e845bc3-37db-4639-be09-d0cf1e448221","updatedBy":"1e845bc3-37db-4639-be09-d0cf1e448221","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0618702-8404-4858-9a26-e61f23e7d44f","type":"Microsoft.Authorization/roleAssignments","name":"f0618702-8404-4858-9a26-e61f23e7d44f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8bb5b214-1182-465c-892f-ca7235abe1e7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-11-14T08:52:42.2795010Z","updatedOn":"2019-11-14T08:52:42.2795010Z","createdBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","updatedBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77daac38-9839-4b00-921b-e5d5a03e728c","type":"Microsoft.Authorization/roleAssignments","name":"77daac38-9839-4b00-921b-e5d5a03e728c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9693df58-7f72-4974-9bd3-1c3ceb0382f1","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-29T09:40:04.3180033Z","updatedOn":"2018-11-29T09:40:04.3180033Z","createdBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","updatedBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed3bf874-9c97-43f9-a5e9-b4ee6f8982f7","type":"Microsoft.Authorization/roleAssignments","name":"ed3bf874-9c97-43f9-a5e9-b4ee6f8982f7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d1f96755-9bcf-44b8-ab82-df67360496c4","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T10:28:08.2854940Z","updatedOn":"2020-05-08T10:28:08.2854940Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfb3ca56-a0d4-44ce-ba35-b716c3fdab86","type":"Microsoft.Authorization/roleAssignments","name":"dfb3ca56-a0d4-44ce-ba35-b716c3fdab86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-12-31T09:26:43.6440415Z","updatedOn":"2018-12-31T09:26:43.6440415Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45744ea8-780f-4f3e-88aa-b73d7f6997b2","type":"Microsoft.Authorization/roleAssignments","name":"45744ea8-780f-4f3e-88aa-b73d7f6997b2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e65078fb-6b02-434a-9f11-d06bf9bc0600","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-25T23:42:36.3444507Z","updatedOn":"2018-10-25T23:42:36.3444507Z","createdBy":"66cb55a5-e2a8-44ef-ae4b-5ab8fa2ec8d9","updatedBy":"66cb55a5-e2a8-44ef-ae4b-5ab8fa2ec8d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7ce51e8-4109-41d7-bc10-538b089599db","type":"Microsoft.Authorization/roleAssignments","name":"e7ce51e8-4109-41d7-bc10-538b089599db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"a7782e0f-1f9a-4882-b2c9-11227aad244e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-16T04:32:50.9673703Z","updatedOn":"2020-06-16T04:32:50.9673703Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fa21f2f-81c3-47b6-b706-650b359b96c3","type":"Microsoft.Authorization/roleAssignments","name":"9fa21f2f-81c3-47b6-b706-650b359b96c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00b14177-f4d2-4a4b-94f6-6e80f75745c9","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T09:49:11.3750683Z","updatedOn":"2020-03-12T09:49:11.3750683Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fff0abf3-3cf7-46be-8bc7-1d1619a160fb","type":"Microsoft.Authorization/roleAssignments","name":"fff0abf3-3cf7-46be-8bc7-1d1619a160fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1d8b8d73-0cc6-4db8-b112-724b4a932253","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-26T10:28:45.4880023Z","updatedOn":"2019-08-26T10:28:45.4880023Z","createdBy":"1e845bc3-37db-4639-be09-d0cf1e448221","updatedBy":"1e845bc3-37db-4639-be09-d0cf1e448221","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/397a3c9c-c258-4d4e-834d-00cc08227796","type":"Microsoft.Authorization/roleAssignments","name":"397a3c9c-c258-4d4e-834d-00cc08227796"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"235b2664-75e2-4741-bb6f-37e49babf6cd","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-12-05T04:29:28.7359096Z","updatedOn":"2018-12-05T04:29:28.7359096Z","createdBy":"1743392d-76d5-4611-94c2-448be522b83c","updatedBy":"1743392d-76d5-4611-94c2-448be522b83c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3c830f42-5f89-4d8b-8f93-d3dc936f33bd","type":"Microsoft.Authorization/roleAssignments","name":"3c830f42-5f89-4d8b-8f93-d3dc936f33bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2d13e5e1-815b-45e7-be6f-3a2c36b407a8","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-08T08:38:50.1742930Z","updatedOn":"2020-04-08T08:38:50.1742930Z","createdBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","updatedBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5293a96b-830e-45f4-9e9e-22d7d020f0d8","type":"Microsoft.Authorization/roleAssignments","name":"5293a96b-830e-45f4-9e9e-22d7d020f0d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3421d717-ca60-44e7-a9a1-773acec4e503","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-10-23T09:40:14.7658272Z","updatedOn":"2019-10-23T09:40:14.7658272Z","createdBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","updatedBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/34b29558-faf9-43f0-a194-35ca0aa99fc5","type":"Microsoft.Authorization/roleAssignments","name":"34b29558-faf9-43f0-a194-35ca0aa99fc5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3dc88d41-4d03-4105-970d-937e56de3839","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-27T12:59:44.6557891Z","updatedOn":"2019-06-27T12:59:44.6557891Z","createdBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","updatedBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e57ab8d1-ce9a-4925-b09f-2567492d9b22","type":"Microsoft.Authorization/roleAssignments","name":"e57ab8d1-ce9a-4925-b09f-2567492d9b22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"62c799b8-9b54-4c3d-97c9-9490d16a6a9a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-08T13:01:20.9953919Z","updatedOn":"2019-08-08T13:01:20.9953919Z","createdBy":"1743392d-76d5-4611-94c2-448be522b83c","updatedBy":"1743392d-76d5-4611-94c2-448be522b83c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1b91810-0781-462d-9517-764e4a033822","type":"Microsoft.Authorization/roleAssignments","name":"e1b91810-0781-462d-9517-764e4a033822"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8bb5b214-1182-465c-892f-ca7235abe1e7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-10-23T08:03:15.6803676Z","updatedOn":"2019-10-23T08:03:15.6803676Z","createdBy":"1e845bc3-37db-4639-be09-d0cf1e448221","updatedBy":"1e845bc3-37db-4639-be09-d0cf1e448221","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/facbac06-ddab-437d-949a-207593fddfff","type":"Microsoft.Authorization/roleAssignments","name":"facbac06-ddab-437d-949a-207593fddfff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"978b254a-54be-42af-80f5-e2a37b2e40e5","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-07-08T06:57:57.0377373Z","updatedOn":"2019-07-08T06:57:57.0377373Z","createdBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","updatedBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89be5b0a-dfa8-4bdf-b667-c6f63f7f3f0e","type":"Microsoft.Authorization/roleAssignments","name":"89be5b0a-dfa8-4bdf-b667-c6f63f7f3f0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9c973a07-b207-473c-9687-bd693ba8e460","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-17T09:14:08.7913669Z","updatedOn":"2020-04-17T09:14:08.7913669Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/950c635a-23a5-4a0e-8eb6-c53e929c9699","type":"Microsoft.Authorization/roleAssignments","name":"950c635a-23a5-4a0e-8eb6-c53e929c9699"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a4eae46b-a9d0-4586-8ac9-ba91b29f1d57","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T10:05:44.6784242Z","updatedOn":"2022-02-01T10:05:44.6784242Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8af2fb3a-292c-42a8-a870-1751c4ec4870","type":"Microsoft.Authorization/roleAssignments","name":"8af2fb3a-292c-42a8-a870-1751c4ec4870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"662a0ec2-cfbc-45f9-ae31-2cc53070e765","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T12:46:49.6216206Z","updatedOn":"2022-04-12T12:46:49.6216206Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/85cc2dff-c5d4-42a3-acb6-255cd4208ef4","type":"Microsoft.Authorization/roleAssignments","name":"85cc2dff-c5d4-42a3-acb6-255cd4208ef4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"662a0ec2-cfbc-45f9-ae31-2cc53070e765","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T12:46:57.1459341Z","updatedOn":"2022-04-12T12:46:57.1459341Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/aba8e90d-d951-4cb5-a346-b71e478f4d1b","type":"Microsoft.Authorization/roleAssignments","name":"aba8e90d-d951-4cb5-a346-b71e478f4d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"30bc1f3b-ca1a-4c55-96ff-4c026f12eaa1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T13:09:28.3678603Z","updatedOn":"2022-04-12T13:09:28.3678603Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/79d87d90-f984-4f53-a169-2eca51c00104","type":"Microsoft.Authorization/roleAssignments","name":"79d87d90-f984-4f53-a169-2eca51c00104"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"30bc1f3b-ca1a-4c55-96ff-4c026f12eaa1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T13:09:33.3916295Z","updatedOn":"2022-04-12T13:09:33.3916295Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/5e185742-c91a-4efe-b0d8-db9524685ec5","type":"Microsoft.Authorization/roleAssignments","name":"5e185742-c91a-4efe-b0d8-db9524685ec5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"3c582fc7-e68a-4991-a2f6-3d8a7a1f23c1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:01:02.2689248Z","updatedOn":"2022-04-13T07:01:02.2689248Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/c9b4f9ab-d687-4a65-910a-5bcb2f974bfe","type":"Microsoft.Authorization/roleAssignments","name":"c9b4f9ab-d687-4a65-910a-5bcb2f974bfe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"3c582fc7-e68a-4991-a2f6-3d8a7a1f23c1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:01:09.3571703Z","updatedOn":"2022-04-13T07:01:09.3571703Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/8bedf13c-aa1a-4191-aa97-573f14fd97ee","type":"Microsoft.Authorization/roleAssignments","name":"8bedf13c-aa1a-4191-aa97-573f14fd97ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"a31004b5-ce06-49e1-8706-e8c7afe68695","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:43:04.6456354Z","updatedOn":"2022-04-13T07:43:04.6456354Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/bd0fc30a-6ccf-4c22-a26b-0e31aba16035","type":"Microsoft.Authorization/roleAssignments","name":"bd0fc30a-6ccf-4c22-a26b-0e31aba16035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"a31004b5-ce06-49e1-8706-e8c7afe68695","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:43:10.1186881Z","updatedOn":"2022-04-13T07:43:10.1186881Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/dadaa3cd-f442-4d5c-aed3-7cbab2fba3e0","type":"Microsoft.Authorization/roleAssignments","name":"dadaa3cd-f442-4d5c-aed3-7cbab2fba3e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"6f6a803e-4dc5-488a-8566-a4f0a984975e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T08:58:57.7706882Z","updatedOn":"2022-04-13T08:58:57.7706882Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/9e3d10bf-9bfa-4a97-9ab1-b972a348abd0","type":"Microsoft.Authorization/roleAssignments","name":"9e3d10bf-9bfa-4a97-9ab1-b972a348abd0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"6f6a803e-4dc5-488a-8566-a4f0a984975e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T08:59:03.2414961Z","updatedOn":"2022-04-13T08:59:03.2414961Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/66eefd94-4bda-46df-9c61-7e92f83d91e7","type":"Microsoft.Authorization/roleAssignments","name":"66eefd94-4bda-46df-9c61-7e92f83d91e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"829da4fd-a5f4-4ca7-bc3d-0679d104c5f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T10:17:35.8887781Z","updatedOn":"2022-04-13T10:17:35.8887781Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/77f4f7a3-a377-49f7-a094-945b82b2bfff","type":"Microsoft.Authorization/roleAssignments","name":"77f4f7a3-a377-49f7-a094-945b82b2bfff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"829da4fd-a5f4-4ca7-bc3d-0679d104c5f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T10:17:41.2233089Z","updatedOn":"2022-04-13T10:17:41.2233089Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/1a71aac6-e9ce-40ff-a39f-7594df2ea6e9","type":"Microsoft.Authorization/roleAssignments","name":"1a71aac6-e9ce-40ff-a39f-7594df2ea6e9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T06:57:19.4532093Z","updatedOn":"2022-04-21T06:57:19.4532093Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/eede4548-9f71-44b7-8077-c49aa44894b4","type":"Microsoft.Authorization/roleAssignments","name":"eede4548-9f71-44b7-8077-c49aa44894b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T06:57:24.3439247Z","updatedOn":"2022-04-21T06:57:24.3439247Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/c011acd2-8b5d-45d6-b6c1-4ffe1867ce31","type":"Microsoft.Authorization/roleAssignments","name":"c011acd2-8b5d-45d6-b6c1-4ffe1867ce31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"85c33f6f-5d69-4b0e-bc06-95a7d3193519","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-04T09:52:52.7340040Z","updatedOn":"2022-05-04T09:52:52.7340040Z","createdBy":"447bbed8-9839-4d6e-9e39-fb9aeee1ec1d","updatedBy":"447bbed8-9839-4d6e-9e39-fb9aeee1ec1d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a4f635c-309c-4a1d-8eea-86fb5aa91d80","type":"Microsoft.Authorization/roleAssignments","name":"6a4f635c-309c-4a1d-8eea-86fb5aa91d80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"5095196a-def9-4146-8d92-e38f24b6e378","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T06:55:02.8791003Z","updatedOn":"2022-05-12T06:55:02.8791003Z","createdBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","updatedBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/153c562d-6f8b-4872-86a7-84f10e177d8b","type":"Microsoft.Authorization/roleAssignments","name":"153c562d-6f8b-4872-86a7-84f10e177d8b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"e6234342-a3d7-4b04-9041-3e8526f5861a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T06:55:02.9137483Z","updatedOn":"2022-05-12T06:55:02.9137483Z","createdBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","updatedBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5bd1b6d-0084-40ec-9126-2250536b4778","type":"Microsoft.Authorization/roleAssignments","name":"a5bd1b6d-0084-40ec-9126-2250536b4778"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T11:54:25.7258076Z","updatedOn":"2022-05-24T11:54:25.7258076Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/9a7dc348-d24e-438b-84b0-c7cda5bf92c4","type":"Microsoft.Authorization/roleAssignments","name":"9a7dc348-d24e-438b-84b0-c7cda5bf92c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T11:54:29.8931759Z","updatedOn":"2022-05-24T11:54:29.8931759Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/aeb54d04-84b8-4530-bd7e-fe01dafd82ab","type":"Microsoft.Authorization/roleAssignments","name":"aeb54d04-84b8-4530-bd7e-fe01dafd82ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a51d0ef9-9895-4b63-b3f8-354bb7d1a6bb","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-21T08:47:39.8177538Z","updatedOn":"2021-05-21T08:47:39.8177538Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17db6abb-bc45-4967-b313-e470ec9cbbd7","type":"Microsoft.Authorization/roleAssignments","name":"17db6abb-bc45-4967-b313-e470ec9cbbd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"7c567124-5292-4819-aa73-0224bf1c42e1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-05-23T13:38:54.7542852Z","updatedOn":"2021-05-23T13:38:54.7542852Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/0809d692-f58f-43f2-b597-7f115957407e","type":"Microsoft.Authorization/roleAssignments","name":"0809d692-f58f-43f2-b597-7f115957407e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"955c9d1b-0cb6-4ff6-91c9-f4aadf67ffe8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T16:45:08.3835615Z","updatedOn":"2021-05-24T16:45:08.3835615Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/1b1ac6ab-19e7-4c4f-91d2-5be73096da2c","type":"Microsoft.Authorization/roleAssignments","name":"1b1ac6ab-19e7-4c4f-91d2-5be73096da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"7221c906-782c-44a0-ab2f-f23d8a95ce25","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T16:56:16.2751421Z","updatedOn":"2021-05-24T16:56:16.2751421Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/ca8f2433-76dc-49fa-828d-9cd2861ec25c","type":"Microsoft.Authorization/roleAssignments","name":"ca8f2433-76dc-49fa-828d-9cd2861ec25c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"e1a3bbaa-4ffb-41a6-a154-b4870d9e86b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T06:40:53.5542743Z","updatedOn":"2021-06-04T06:40:53.5542743Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/9d9ac2a8-dbac-41bb-9f17-c473f02c6370","type":"Microsoft.Authorization/roleAssignments","name":"9d9ac2a8-dbac-41bb-9f17-c473f02c6370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"e1a3bbaa-4ffb-41a6-a154-b4870d9e86b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T06:40:57.1326805Z","updatedOn":"2021-06-04T06:40:57.1326805Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/14b1338c-95f6-44f9-ad22-395f8ebbb1fe","type":"Microsoft.Authorization/roleAssignments","name":"14b1338c-95f6-44f9-ad22-395f8ebbb1fe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"1da90707-df56-4d40-a805-2e646c9d95ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T07:02:18.2829699Z","updatedOn":"2021-06-04T07:02:18.2829699Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/bf5f4821-9baa-4dc6-9bd5-8c62f31c1a93","type":"Microsoft.Authorization/roleAssignments","name":"bf5f4821-9baa-4dc6-9bd5-8c62f31c1a93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"1da90707-df56-4d40-a805-2e646c9d95ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T07:02:22.4343547Z","updatedOn":"2021-06-04T07:02:22.4343547Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/26bab283-0772-4c03-8dc1-a50c8ffa597d","type":"Microsoft.Authorization/roleAssignments","name":"26bab283-0772-4c03-8dc1-a50c8ffa597d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"ab6b1184-ff37-4d3e-b460-fbe654f7ad5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T07:19:08.8293677Z","updatedOn":"2021-06-04T07:19:08.8293677Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/d972f611-a4bd-4b80-9e78-980984602450","type":"Microsoft.Authorization/roleAssignments","name":"d972f611-a4bd-4b80-9e78-980984602450"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"ab6b1184-ff37-4d3e-b460-fbe654f7ad5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T07:19:12.8400651Z","updatedOn":"2021-06-04T07:19:12.8400651Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/b9393755-f5ca-41ef-a631-fb62184c57a8","type":"Microsoft.Authorization/roleAssignments","name":"b9393755-f5ca-41ef-a631-fb62184c57a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"3ffa4e46-39a3-4002-9292-e2adf0d1a8c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T09:14:15.2633798Z","updatedOn":"2021-06-04T09:14:15.2633798Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/094981c0-d59c-4f5b-9581-72c08da65454","type":"Microsoft.Authorization/roleAssignments","name":"094981c0-d59c-4f5b-9581-72c08da65454"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"3ffa4e46-39a3-4002-9292-e2adf0d1a8c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T09:14:19.9554484Z","updatedOn":"2021-06-04T09:14:19.9554484Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/0cac59e0-0464-4bf6-9bef-f1fadc2b08f4","type":"Microsoft.Authorization/roleAssignments","name":"0cac59e0-0464-4bf6-9bef-f1fadc2b08f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1","principalId":"93e2b483-3ffa-44f8-9965-fdb104b541a2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T05:43:19.7216795Z","updatedOn":"2021-06-29T05:43:19.7216795Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6aff8c2-08b1-5b1a-9c80-d91164226985","type":"Microsoft.Authorization/roleAssignments","name":"c6aff8c2-08b1-5b1a-9c80-d91164226985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4f285ac8-5610-4d2f-854c-bfa3d16a2679","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-11T06:55:02.4909144Z","updatedOn":"2021-07-11T06:55:02.4909144Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0cec2ad2-d080-4126-a99f-f61c559b799c","type":"Microsoft.Authorization/roleAssignments","name":"0cec2ad2-d080-4126-a99f-f61c559b799c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"630db480-3ee6-47ec-ae72-5f917d466bad","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-13T10:16:28.8833400Z","updatedOn":"2021-07-13T10:16:28.8833400Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/37fe4b2d-0aca-4c27-8511-1e0d18063ec8","type":"Microsoft.Authorization/roleAssignments","name":"37fe4b2d-0aca-4c27-8511-1e0d18063ec8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"279982e7-46cf-4e40-9a3b-156c98285cb7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-13T10:18:48.5647062Z","updatedOn":"2021-07-13T10:18:48.5647062Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7907f38d-57a7-431d-82d7-5dfa2ef0a628","type":"Microsoft.Authorization/roleAssignments","name":"7907f38d-57a7-431d-82d7-5dfa2ef0a628"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"790004d0-0112-41ad-92e8-95c464c34476","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-13T10:18:48.6068337Z","updatedOn":"2021-07-13T10:18:48.6068337Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c9bda26-83c4-4d4c-b00b-c4b58301e539","type":"Microsoft.Authorization/roleAssignments","name":"8c9bda26-83c4-4d4c-b00b-c4b58301e539"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-21T06:38:43.9281998Z","updatedOn":"2021-07-21T06:38:43.9281998Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b553fa81-60dd-45d6-9781-8c2313d68b03","type":"Microsoft.Authorization/roleAssignments","name":"b553fa81-60dd-45d6-9781-8c2313d68b03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"a27f3bc9-abe0-404e-baa7-0949a258a204","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T04:31:20.4258578Z","updatedOn":"2021-07-27T04:31:20.4258578Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b2f7b08-f9ef-4fc1-b9c4-2bb34fdef258","type":"Microsoft.Authorization/roleAssignments","name":"4b2f7b08-f9ef-4fc1-b9c4-2bb34fdef258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"a27f3bc9-abe0-404e-baa7-0949a258a204","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T04:31:32.4566300Z","updatedOn":"2021-07-27T04:31:32.4566300Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8176bf09-8e96-448a-ab12-eeed360ecce2","type":"Microsoft.Authorization/roleAssignments","name":"8176bf09-8e96-448a-ab12-eeed360ecce2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb","principalId":"a27f3bc9-abe0-404e-baa7-0949a258a204","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T04:31:48.4577322Z","updatedOn":"2021-07-27T04:31:48.4577322Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45949217-58cc-4c18-93f3-f4c90710ae2d","type":"Microsoft.Authorization/roleAssignments","name":"45949217-58cc-4c18-93f3-f4c90710ae2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"53a2447a-3ec4-42e2-9194-66afe4fcea2b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T10:13:20.8138038Z","updatedOn":"2021-07-27T10:13:20.8138038Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2382b52f-1ec5-430e-ae2a-74f9ed331ced","type":"Microsoft.Authorization/roleAssignments","name":"2382b52f-1ec5-430e-ae2a-74f9ed331ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"53a2447a-3ec4-42e2-9194-66afe4fcea2b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T10:13:23.6551958Z","updatedOn":"2021-07-27T10:13:23.6551958Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5863947-0b21-41b7-9997-c0dfc73eec29","type":"Microsoft.Authorization/roleAssignments","name":"e5863947-0b21-41b7-9997-c0dfc73eec29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb","principalId":"53a2447a-3ec4-42e2-9194-66afe4fcea2b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T10:13:29.6985440Z","updatedOn":"2021-07-27T10:13:29.6985440Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28c1cefa-942f-44c5-a4d4-c33bb92abd45","type":"Microsoft.Authorization/roleAssignments","name":"28c1cefa-942f-44c5-a4d4-c33bb92abd45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8039a424-299a-4014-8b22-4f6d6cc60065","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T07:08:31.9935560Z","updatedOn":"2021-08-11T07:08:31.9935560Z","createdBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","updatedBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/69e0bcfc-b024-4d8b-a3d5-dac447f8986c","type":"Microsoft.Authorization/roleAssignments","name":"69e0bcfc-b024-4d8b-a3d5-dac447f8986c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1","principalId":"8f0340b8-4b70-412b-be19-c4612d49e353","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-20T11:58:29.6857641Z","updatedOn":"2021-08-20T11:58:29.6857641Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd88236f-eacb-5303-912f-ba1741cf02bd","type":"Microsoft.Authorization/roleAssignments","name":"fd88236f-eacb-5303-912f-ba1741cf02bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"0d8f6e68-d6c5-4a67-b6c4-3107609bbdbc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-20T12:31:58.7980661Z","updatedOn":"2021-08-20T12:31:58.7980661Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/146f4a11-8712-583d-89eb-a7b8b82dbaa9","type":"Microsoft.Authorization/roleAssignments","name":"146f4a11-8712-583d-89eb-a7b8b82dbaa9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"e2072d83-2379-4f36-ab51-b5df7460c61e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-21T14:40:08.5987892Z","updatedOn":"2021-08-21T14:40:10.5055205Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/842af679-0b58-5eb5-b94c-ff59e4105d7e","type":"Microsoft.Authorization/roleAssignments","name":"842af679-0b58-5eb5-b94c-ff59e4105d7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"0242778c-29df-4863-ac18-2fb8fd004135","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-08-30T06:31:52.6766200Z","updatedOn":"2021-08-30T06:31:52.6766200Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/f67c65e2-e609-4ffe-b504-294b00cbd2fd","type":"Microsoft.Authorization/roleAssignments","name":"f67c65e2-e609-4ffe-b504-294b00cbd2fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"0242778c-29df-4863-ac18-2fb8fd004135","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-08-30T06:31:57.1552781Z","updatedOn":"2021-08-30T06:31:57.1552781Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/aaeab926-d6e2-4bb6-9e9e-0607e75cc75f","type":"Microsoft.Authorization/roleAssignments","name":"aaeab926-d6e2-4bb6-9e9e-0607e75cc75f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"2ab5fb95-b72e-4d12-948b-4223754d8ffa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-09-08T08:24:19.3547440Z","updatedOn":"2021-09-08T08:24:19.3547440Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/43ee13b8-5abd-51e0-88e3-ae84049da70e","type":"Microsoft.Authorization/roleAssignments","name":"43ee13b8-5abd-51e0-88e3-ae84049da70e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"2d13e5e1-815b-45e7-be6f-3a2c36b407a8","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T09:41:38.5634940Z","updatedOn":"2021-09-17T09:41:38.5634940Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":"for
+ temp testing purpose"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98fe0117-1e9c-4e37-b8a7-c4a1031d6916","type":"Microsoft.Authorization/roleAssignments","name":"98fe0117-1e9c-4e37-b8a7-c4a1031d6916"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9c973a07-b207-473c-9687-bd693ba8e460","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-25T15:23:32.6168771Z","updatedOn":"2021-09-25T15:23:32.6168771Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d852f084-bc9f-4258-9e2c-fcf48b9eaf85","type":"Microsoft.Authorization/roleAssignments","name":"d852f084-bc9f-4258-9e2c-fcf48b9eaf85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1","principalId":"2778738c-452b-45ca-b8d6-f085836a1458","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-30T07:51:25.2399474Z","updatedOn":"2021-09-30T07:51:25.2399474Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b04a3bdf-b6a6-5ffb-9394-ee5743741597","type":"Microsoft.Authorization/roleAssignments","name":"b04a3bdf-b6a6-5ffb-9394-ee5743741597"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ac1f52a-325b-486a-a095-f46ffdd6a9e4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T01:59:18.6998395Z","updatedOn":"2021-10-26T01:59:18.6998395Z","createdBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","updatedBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53a3b238-b4b0-4d3f-b416-8d6dc8d755f6","type":"Microsoft.Authorization/roleAssignments","name":"53a3b238-b4b0-4d3f-b416-8d6dc8d755f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1","principalId":"c3c0d020-16f0-44d8-9950-0250120a33ff","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T06:11:03.5575284Z","updatedOn":"2021-11-02T06:11:03.5575284Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d017732-f67e-5aa1-a4a6-47570078d9f3","type":"Microsoft.Authorization/roleAssignments","name":"1d017732-f67e-5aa1-a4a6-47570078d9f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-10T08:59:19.7285159Z","updatedOn":"2021-11-10T08:59:19.7285159Z","createdBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","updatedBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a60357fa-dc0a-4479-a2a9-4329c2d0ae89","type":"Microsoft.Authorization/roleAssignments","name":"a60357fa-dc0a-4479-a2a9-4329c2d0ae89"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8dd77695-d6a5-450d-a43c-67ca01be9fbc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-12T10:55:38.3698246Z","updatedOn":"2021-11-12T10:55:38.3698246Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dda5bb75-b74a-4430-975f-5bc9611c4b2d","type":"Microsoft.Authorization/roleAssignments","name":"dda5bb75-b74a-4430-975f-5bc9611c4b2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"2152c794-9ca2-41fe-a313-2d0e1ee3eb80","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-18T06:28:12.0181010Z","updatedOn":"2021-02-18T06:28:12.0181010Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/804f6223-03eb-4091-b460-82160fc5f818","type":"Microsoft.Authorization/roleAssignments","name":"804f6223-03eb-4091-b460-82160fc5f818"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2152c794-9ca2-41fe-a313-2d0e1ee3eb80","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-18T06:28:12.0168587Z","updatedOn":"2021-02-18T06:28:12.0168587Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d80e2d6-315c-495c-ab2c-91ddf75edf41","type":"Microsoft.Authorization/roleAssignments","name":"8d80e2d6-315c-495c-ab2c-91ddf75edf41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cf46d636-b6c1-406c-aba7-b2c3d9ed07da","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-26T13:53:53.1151640Z","updatedOn":"2021-02-26T13:53:53.1151640Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/735e98ed-f4b8-4b7d-9cc9-af4f8ae77252","type":"Microsoft.Authorization/roleAssignments","name":"735e98ed-f4b8-4b7d-9cc9-af4f8ae77252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8505e3f4-1ee7-427c-a175-a06595231d46","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-26T13:54:27.5624477Z","updatedOn":"2021-02-26T13:54:27.5624477Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98c87a9f-b9e7-414b-8b59-bf3ec62dbc74","type":"Microsoft.Authorization/roleAssignments","name":"98c87a9f-b9e7-414b-8b59-bf3ec62dbc74"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-25T12:25:27.2277610Z","updatedOn":"2020-07-25T12:25:27.2277610Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6b8ff4-9edb-43f5-aa2a-32133fa09b1d","type":"Microsoft.Authorization/roleAssignments","name":"fd6b8ff4-9edb-43f5-aa2a-32133fa09b1d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"21ae6127-c385-4ae0-b895-a8559e9aa574","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-31T08:35:35.2993523Z","updatedOn":"2020-07-31T08:35:35.2993523Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6af9fbf3-7085-4bcb-b399-88b89fac16d3","type":"Microsoft.Authorization/roleAssignments","name":"6af9fbf3-7085-4bcb-b399-88b89fac16d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1e845bc3-37db-4639-be09-d0cf1e448221","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-31T08:44:16.2909420Z","updatedOn":"2020-07-31T08:44:16.2909420Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65080390-e9b5-4566-b362-d1e96c23dae2","type":"Microsoft.Authorization/roleAssignments","name":"65080390-e9b5-4566-b362-d1e96c23dae2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T06:12:01.6760584Z","updatedOn":"2020-11-03T06:12:01.6760584Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7a12420-2dce-4a47-822e-68cadf239da3","type":"Microsoft.Authorization/roleAssignments","name":"a7a12420-2dce-4a47-822e-68cadf239da3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3282af51-433d-47e8-b2b5-633fbe0fecc0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T06:25:32.6790913Z","updatedOn":"2020-11-03T06:25:32.6790913Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36da831d-10ce-4f42-ba28-362960f6ea36","type":"Microsoft.Authorization/roleAssignments","name":"36da831d-10ce-4f42-ba28-362960f6ea36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupFlaggedSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-10-04T07:35:39.6626948Z","updatedOn":"2019-10-04T07:35:39.6626948Z","createdBy":"8031e009-cc05-4950-8a8d-78942c4492ac","updatedBy":"8031e009-cc05-4950-8a8d-78942c4492ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupFlaggedSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/730fa65e-c74c-4c3d-9cc3-9457f9b97274","type":"Microsoft.Authorization/roleAssignments","name":"730fa65e-c74c-4c3d-9cc3-9457f9b97274"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupFlaggedSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2021-04-08T01:03:29.8241478Z","updatedOn":"2021-04-08T01:03:29.8241478Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupFlaggedSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/63818ccb-a05c-4083-9e1d-64b4c7c0e1cd","type":"Microsoft.Authorization/roleAssignments","name":"63818ccb-a05c-4083-9e1d-64b4c7c0e1cd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c87d9afe-4463-41d5-81e3-3bd162af9183","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-07-10T09:38:17.4348497Z","updatedOn":"2019-07-10T09:38:17.4348497Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/ebc56c6d-c5de-4d99-b166-89d4ac815acd","type":"Microsoft.Authorization/roleAssignments","name":"ebc56c6d-c5de-4d99-b166-89d4ac815acd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-03-15T11:01:18.6794974Z","updatedOn":"2019-03-15T11:01:18.6794974Z","createdBy":"809e610d-9130-4b22-8c3a-5e6c64adc2c7","updatedBy":"809e610d-9130-4b22-8c3a-5e6c64adc2c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/9fb9b151-1d53-4eff-9336-75cf634e1e3d","type":"Microsoft.Authorization/roleAssignments","name":"9fb9b151-1d53-4eff-9336-75cf634e1e3d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f87f6638-3a1b-4562-8603-aacd59537149","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-05-03T06:47:05.1411825Z","updatedOn":"2019-05-03T06:47:05.1411825Z","createdBy":"809e610d-9130-4b22-8c3a-5e6c64adc2c7","updatedBy":"809e610d-9130-4b22-8c3a-5e6c64adc2c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/24ffbb29-061f-4b1d-8c26-c6e90ef53303","type":"Microsoft.Authorization/roleAssignments","name":"24ffbb29-061f-4b1d-8c26-c6e90ef53303"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"becb4b6b-fe16-413b-a5c3-90355e0b2982","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-06-26T06:33:50.1123976Z","updatedOn":"2019-06-26T06:33:50.1123976Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/4c3721e8-06f4-4115-a2d8-90c4a9a57d56","type":"Microsoft.Authorization/roleAssignments","name":"4c3721e8-06f4-4115-a2d8-90c4a9a57d56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T16:59:19.6098216Z","updatedOn":"2021-04-07T16:59:19.6098216Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/9d2de631-e451-450b-8237-e5bc19624eee","type":"Microsoft.Authorization/roleAssignments","name":"9d2de631-e451-450b-8237-e5bc19624eee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"b1b96a90-235c-4668-a931-ee1c08db7681","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2021-02-01T04:47:38.5676012Z","updatedOn":"2021-02-01T04:47:38.5676012Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/a9e38032-c21b-4c41-8960-1c9c982d98e2","type":"Microsoft.Authorization/roleAssignments","name":"a9e38032-c21b-4c41-8960-1c9c982d98e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a51d0ef9-9895-4b63-b3f8-354bb7d1a6bb","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2021-03-03T05:31:57.4716459Z","updatedOn":"2021-03-03T05:31:57.4716459Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/77aa0ff2-42c2-4e01-a51d-01cf2dd7ce04","type":"Microsoft.Authorization/roleAssignments","name":"77aa0ff2-42c2-4e01-a51d-01cf2dd7ce04"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ce2366a6-64d7-441b-939c-c9d23f91cccd","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '84735'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ set-cookie:
+ - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Cookie:
+ - x-ms-gateway-slice=Production
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Disk%20Snapshot%20Contributor%27&api-version=2018-01-01-preview
+ response:
+ body:
+ string: '{"value":[{"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"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1160'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ set-cookie:
+ - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Cookie:
+ - x-ms-gateway-slice=Production
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleDefinitions?api-version=2018-01-01-preview
+ response:
+ body:
+ string: "{\"value\":[{\"properties\":{\"roleName\":\"Avere Cluster Create\",\"type\":\"CustomRole\",\"description\":\"Avere
+ cluster create role used by the Avere controller to create a vFXT cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.Authorization/roleDefinitions/*\",\"Microsoft.Compute/*/read\",\"Microsoft.Compute/availabilitySets/*\",\"Microsoft.Compute/virtualMachines/*\",\"Microsoft.Network/*/read\",\"Microsoft.Network/networkInterfaces/*\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Storage/*/read\",\"Microsoft.Storage/storageAccounts/listKeys/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-11-29T18:46:55.0492387Z\",\"updatedOn\":\"2018-11-29T18:46:55.0492387Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\"},{\"properties\":{\"roleName\":\"Avere
+ Cluster Runtime Operator\",\"type\":\"CustomRole\",\"description\":\"Avere
+ cluster runtime role used by Avere clusters running in subscriptions, for
+ the purpose of failing over IP addresses, accessing BLOB storage, etc\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/routeTables/read\",\"Microsoft.Network/routeTables/routes/*\",\"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\":\"2018-08-26T00:41:26.2170858Z\",\"updatedOn\":\"2018-08-26T00:41:26.2170858Z\",\"createdBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\"updatedBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e078ab98-ef3a-4c9a-aba7-12f5172b45d0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e078ab98-ef3a-4c9a-aba7-12f5172b45d0\"},{\"properties\":{\"roleName\":\"Azure
+ Service Deploy Release Management Contributor\",\"type\":\"CustomRole\",\"description\":\"Contributor
+ role for services deploying through Azure Service Deploy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-02-04T02:26:31.5413362Z\",\"updatedOn\":\"2018-01-08T20:20:16.3660174Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21d96096-b162-414a-8302-d8354f9d91b2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21d96096-b162-414a-8302-d8354f9d91b2\"},{\"properties\":{\"roleName\":\"CAL-Custom-Role\",\"type\":\"CustomRole\",\"description\":\"Lets
+ SAP Cloud Appliance Library application manage Network and Compute services,
+ manage Resource Groups and Management locks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/locks/*\",\"Microsoft.Authorization/roleDefinitions/*\",\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.Compute/*\",\"Microsoft.Network/*\",\"Microsoft.Resources/*\",\"Microsoft.Storage/*\",\"Microsoft.ContainerService/*\",\"Microsoft.ContainerRegistry/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-05-14T19:30:51.0664585Z\",\"updatedOn\":\"2019-02-19T19:11:57.5963229Z\",\"createdBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7b266cd7-0bba-4ae2-8423-90ede5e1e898\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7b266cd7-0bba-4ae2-8423-90ede5e1e898\"},{\"properties\":{\"roleName\":\"Dsms
+ Role (deprecated)\",\"type\":\"CustomRole\",\"description\":\"Custom role
+ used by Dsms to perform operations. Can list and regnerate storage account
+ keys.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-17T18:02:11.1225951Z\",\"updatedOn\":\"2018-01-13T00:21:52.7211696Z\",\"createdBy\":\"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\",\"updatedBy\":\"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\"},{\"properties\":{\"roleName\":\"Dsms
+ Role (do not use)\",\"type\":\"CustomRole\",\"description\":\"Custom role
+ used by Dsms to perform operations. Can list and regnerate storage account
+ keys.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-02-01T07:56:12.5880222Z\",\"updatedOn\":\"2018-08-09T17:53:48.5432297Z\",\"createdBy\":\"becb4b6b-fe16-413b-a5c3-90355e0b2982\",\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7aff565e-6c55-448d-83db-ccf482c6da2f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7aff565e-6c55-448d-83db-ccf482c6da2f\"},{\"properties\":{\"roleName\":\"ExpressRoute
+ Administrator\",\"type\":\"CustomRole\",\"description\":\"Can create, delete
+ and manage ExpressRoutes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/locks/*\",\"Microsoft.Authorization/policyAssignments/*\",\"Microsoft.Authorization/policyDefinitions/*\",\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.ClassicNetwork/*\",\"Microsoft.EventGrid/*\",\"Microsoft.Insights/*\",\"Microsoft.Network/*\",\"Microsoft.Resources/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-08-31T03:51:32.2843055Z\",\"updatedOn\":\"2019-03-20T22:55:18.8222085Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a48d7896-14b4-4889-afef-fbb65a96e5a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a48d7896-14b4-4889-afef-fbb65a96e5a2\"},{\"properties\":{\"roleName\":\"GenevaWarmPathResourceContributor\",\"type\":\"CustomRole\",\"description\":\"Can
+ manage service bus and storage accounts.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/namespaces/*\",\"Microsoft.Resources/subscriptions/resourceGroups/*\",\"Microsoft.ServiceBus/namespaces/*\",\"Microsoft.Storage/storageAccounts/*\",\"Microsoft.Storage/storageAccounts/managementPolicies/write\",\"Microsoft.Storage/storageAccounts/managementPolicies/read\",\"Microsoft.Storage/storageAccounts/managementPolicies/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-03-14T22:30:10.1999436Z\",\"updatedOn\":\"2022-02-28T23:26:40.0052537Z\",\"createdBy\":null,\"updatedBy\":\"acis\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\"},{\"properties\":{\"roleName\":\"masterreader\",\"type\":\"CustomRole\",\"description\":\"Lets
+ you view everything, but not make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-11-14T23:38:05.3353858Z\",\"updatedOn\":\"2017-11-14T23:38:05.3353858Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a48d7796-14b4-4889-afef-fbb65a93e5a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a48d7796-14b4-4889-afef-fbb65a93e5a2\"},{\"properties\":{\"roleName\":\"Microsoft
+ OneAsset Reader\",\"type\":\"CustomRole\",\"description\":\"This role is for
+ Microsoft OneAsset team (CSEO) to track internal security compliance and resource
+ utilization.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-27T23:51:08.6333052Z\",\"updatedOn\":\"2019-04-02T20:35:43.3396263Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd1bb084-1503-4bd2-99c0-630220046786\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd1bb084-1503-4bd2-99c0-630220046786\"},{\"properties\":{\"roleName\":\"Office
+ DevOps\",\"type\":\"CustomRole\",\"description\":\"Custom access for developers
+ to operations but not secrets.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachineScaleSets/restart/action\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/restart/action\",\"Microsoft.Sql/servers/databases/replicationLinks/delete\",\"Microsoft.Sql/servers/databases/replicationLinks/failover/action\",\"Microsoft.Sql/servers/databases/replicationLinks/forceFailoverAllowDataLoss/action\",\"Microsoft.Sql/servers/databases/replicationLinks/operationResults/read\",\"Microsoft.Sql/servers/databases/replicationLinks/read\",\"Microsoft.Sql/servers/databases/replicationLinks/unlink/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-10-07T08:11:46.1639398Z\",\"updatedOn\":\"2017-03-16T18:43:08.3234306Z\",\"createdBy\":\"25aea6be-b605-4347-a92d-33e178e412ec\",\"updatedBy\":\"25aea6be-b605-4347-a92d-33e178e412ec\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7fd64851-3279-459b-b614-e2b2ba760f5b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7fd64851-3279-459b-b614-e2b2ba760f5b\"},{\"properties\":{\"roleName\":\"GenevaWarmPathStorageBlobContributor\",\"type\":\"CustomRole\",\"description\":\"Geneva
+ Warm Path Storage Blob Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/lease/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/lock/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/extend/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/delete\",\"Microsoft.Storage/storageAccounts/managementPolicies/write\",\"Microsoft.Storage/storageAccounts/managementPolicies/read\",\"Microsoft.Storage/storageAccounts/managementPolicies/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-12-06T22:46:27.1365630Z\",\"updatedOn\":\"2022-02-28T23:26:40.4152515Z\",\"createdBy\":null,\"updatedBy\":\"acis\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a16c43ca-2d67-4dcd-9ded-6412f5edc51a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a16c43ca-2d67-4dcd-9ded-6412f5edc51a\"},{\"properties\":{\"roleName\":\"Azure
+ Service Deploy Release Management Restricted Owner\",\"type\":\"CustomRole\",\"description\":\"Restricted
+ owner role for services deploying through Azure Service Deploy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\"],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/locks/write\",\"Microsoft.Authorization/policyassignments/write\",\"Microsoft.Authorization/policydefinitions/write\",\"Microsoft.Authorization/policysetdefinitions/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-03-07T22:16:06.8803898Z\",\"updatedOn\":\"2022-03-07T22:16:06.8803898Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"94ddc4bc-25f5-4f3e-b527-c587da93cfe4\"},{\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-25T19:42:59.1576710Z\",\"updatedOn\":\"2021-11-11T20:13:13.3634724Z\",\"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-16T21:40:14.0457546Z\",\"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 backup
+ service,but can't create 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/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/backupInstances/backup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/restore/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/write\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/read\",\"Microsoft.DataProtection/locations/checkNameAvailability/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/providers/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:12:15.7321344Z\",\"updatedOn\":\"2021-11-11T20:13:24.3657611Z\",\"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
+ 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/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/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/locations/operationStatus/read\",\"Microsoft.DataProtection/locations/operationResults/read\",\"Microsoft.DataProtection/providers/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:21:11.8947640Z\",\"updatedOn\":\"2021-12-16T12:53:00.0624003Z\",\"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\":\"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/backupInstances/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/findRestorableTimeRanges/action\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/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/providers/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:18:41.3893065Z\",\"updatedOn\":\"2021-11-11T20:13:24.8792711Z\",\"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\u2019t 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\":\"2021-11-11T20:13:25.4059314Z\",\"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
+ Endpoint Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view CDN
+ endpoints, but can\u2019t 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\":\"2022-01-26T19:51:29.2636610Z\",\"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\":\"CDN
+ Profile Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage
+ CDN profiles and their endpoints, but can\u2019t 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\":\"2021-11-11T20:13:25.9224344Z\",\"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\u2019t 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.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2021-11-11T20:13:26.0983652Z\",\"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 (Preview)\",\"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\":\"2021-11-11T20:13:27.7138054Z\",\"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\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:28.6061853Z\",\"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.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\":\"2021-11-11T20:13:39.3023761Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-06-22T00:28:29.0523964Z\",\"updatedOn\":\"2021-11-11T20:13:39.6573851Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-06-22T00:31:03.4295347Z\",\"updatedOn\":\"2021-11-11T20:13:39.8274007Z\",\"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
+ 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\":\"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\":\"2021-11-11T20:13:44.4578442Z\",\"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\":\"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.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationalInsights/workspaces/search/action\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\"Microsoft.Support/*\",\"Microsoft.WorkloadMonitor/monitors/*\",\"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\"Microsoft.AlertsManagement/actionRules/*\",\"Microsoft.AlertsManagement/smartGroups/*\",\"Microsoft.AlertsManagement/migrateFromSmartDetection/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-09-21T19:21:08.4345976Z\",\"updatedOn\":\"2022-03-11T00:34:18.2670392Z\",\"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\":\"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/policysetdefinitions/*\",\"Microsoft.PolicyInsights/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-08-25T19:08:01.3861639Z\",\"updatedOn\":\"2021-11-11T20:13:49.6679217Z\",\"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
+ 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.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-03T07:51:23.0917487Z\",\"updatedOn\":\"2021-11-15T06:42:49.8263550Z\",\"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\":\"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/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/databases/transparentDataEncryption/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/read\",\"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/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/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/externalPolicyBasedAuthorizations/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-16T18:44:40.4607572Z\",\"updatedOn\":\"2022-04-27T21:08:08.4474437Z\",\"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-28T19:00:53.9963035Z\",\"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\":\"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\":\"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 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 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.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\":\"2021-11-11T20:13:58.3176075Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:58.4926099Z\",\"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/serverFarms/join/action\",\"Microsoft.Web/serverFarms/read\",\"Microsoft.Web/sites/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-05-12T23:10:23.6193952Z\",\"updatedOn\":\"2021-11-11T20:13:58.6655647Z\",\"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/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\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-26T17:01:17.0169383Z\",\"updatedOn\":\"2021-11-11T20:14:00.0802032Z\",\"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\"],\"notDataActions\":[]}],\"createdOn\":\"2019-08-07T00:29:03.8727621Z\",\"updatedOn\":\"2021-11-11T20:14:05.9821791Z\",\"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\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:39:03.8725173Z\",\"updatedOn\":\"2021-11-11T20:14:07.2371450Z\",\"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/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.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\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:54:07.6467264Z\",\"updatedOn\":\"2021-11-11T20:14:07.4171916Z\",\"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\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:58:50.1132117Z\",\"updatedOn\":\"2022-05-06T20:39:57.5331324Z\",\"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\":\"Workbook
+ Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read workbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.insights/workbooks/read\",\"microsoft.insights/workbooktemplates/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:56:17.6808140Z\",\"updatedOn\":\"2022-01-03T19:15:12.6968428Z\",\"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\":\"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/workbooktemplates/write\",\"Microsoft.Insights/workbooktemplates/delete\",\"Microsoft.Insights/workbooktemplates/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:59:42.4820277Z\",\"updatedOn\":\"2022-01-03T19:14:31.2372561Z\",\"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\":\"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/privateLinkScopes/read\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:15:07.1372870Z\",\"updatedOn\":\"2021-11-11T20:14:10.8735219Z\",\"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\":\"Azure
+ Connected Machine Resource Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Can
+ read, write, delete and re-onboard Azure Connected Machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/privateLinkScopes/*\",\"Microsoft.HybridCompute/*/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:24:59.1474607Z\",\"updatedOn\":\"2021-12-15T16:10:25.5898511Z\",\"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\":\"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\"],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:41:40.1185063Z\",\"updatedOn\":\"2021-11-11T20:14:11.4035314Z\",\"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.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-11-18T17:00:02.2087147Z\",\"updatedOn\":\"2021-11-11T20:14:12.4685303Z\",\"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.ContainerService/managedClusters/read\",\"Microsoft.ContainerService/managedClusters/write\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-27T19:27:15.0739970Z\",\"updatedOn\":\"2021-11-11T20:14:21.2621727Z\",\"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/models/read\",\"Microsoft.DigitalTwins/query/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:48:14.7057381Z\",\"updatedOn\":\"2021-11-11T20:14:22.3621788Z\",\"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/eventroutes/*\",\"Microsoft.DigitalTwins/digitaltwins/*\",\"Microsoft.DigitalTwins/digitaltwins/commands/*\",\"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\"Microsoft.DigitalTwins/models/*\",\"Microsoft.DigitalTwins/query/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:49:33.7821930Z\",\"updatedOn\":\"2021-11-11T20:14:22.5471888Z\",\"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\":[]}],\"createdOn\":\"2020-03-17T18:35:04.4949547Z\",\"updatedOn\":\"2021-11-11T20:14:23.6235473Z\",\"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/*\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/*\"],\"notDataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/hardDelete/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/hardDelete/action\"]}],\"createdOn\":\"2020-03-17T18:55:35.2413335Z\",\"updatedOn\":\"2021-11-11T20:14:24.1442783Z\",\"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 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\":\"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/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.2499247Z\",\"updatedOn\":\"2021-11-11T20:14:31.1292967Z\",\"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.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:47:24.4071415Z\",\"updatedOn\":\"2021-11-11T20:14:35.5993607Z\",\"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.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"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\":\"2021-11-11T20:14:35.7743651Z\",\"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.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.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/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/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/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\":\"2021-11-11T20:14:35.9544048Z\",\"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.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.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/batch/jobs/*\",\"Microsoft.ContainerService/managedClusters/configmaps/*\",\"Microsoft.ContainerService/managedClusters/endpoints/*\",\"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\"Microsoft.ContainerService/managedClusters/events/read\",\"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/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/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\":\"2021-11-11T20:14:36.1293406Z\",\"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\":\"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\":\"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\":\"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/send/action\",\"Microsoft.SignalRService/SignalR/group/send/action\",\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/group/write\",\"Microsoft.SignalRService/SignalR/clientConnection/send/action\",\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/clientConnection/write\",\"Microsoft.SignalRService/SignalR/user/send/action\",\"Microsoft.SignalRService/SignalR/user/read\",\"Microsoft.SignalRService/SignalR/user/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-29T09:35:32.2764751Z\",\"updatedOn\":\"2021-11-11T20:14:38.8028020Z\",\"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 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\":\"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 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/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-14T10:21:08.9138820Z\",\"updatedOn\":\"2021-11-11T20:14:45.0056815Z\",\"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/farmers/write\",\"Microsoft.AgFoodPlatform/deletionJobs/*/write\"]}],\"createdOn\":\"2020-09-14T10:21:09.7239169Z\",\"updatedOn\":\"2021-11-11T20:14:45.1806787Z\",\"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-07T20:20:03.1782149Z\",\"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/auth/accessKey/action\",\"Microsoft.SignalRService/SignalR/auth/clientToken/action\",\"Microsoft.SignalRService/SignalR/hub/send/action\",\"Microsoft.SignalRService/SignalR/group/send/action\",\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/group/write\",\"Microsoft.SignalRService/SignalR/clientConnection/send/action\",\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/clientConnection/write\",\"Microsoft.SignalRService/SignalR/serverConnection/write\",\"Microsoft.SignalRService/SignalR/user/send/action\",\"Microsoft.SignalRService/SignalR/user/read\",\"Microsoft.SignalRService/SignalR/user/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-10-13T09:20:32.1501410Z\",\"updatedOn\":\"2021-11-11T20:14:48.9653162Z\",\"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-25T20:55:26.9790121Z\",\"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-20T01:44:53.5887074Z\",\"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\":\"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 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\":\"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\":\"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 Uesr 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\":\"2021-11-11T20:14:54.5657970Z\",\"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\":\"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/discoveries/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/uploads/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/*\",\"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-01-04T13:19:41.5458536Z\",\"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 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\":\"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\":\"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\":\"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\":\"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.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\":\"2021-11-11T20:15:00.9583919Z\",\"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\":\"Web
+ PubSub Service Owner (Preview)\",\"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\":\"2021-11-16T05:16:52.6491279Z\",\"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 (Preview)\",\"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\":\"2021-11-16T05:17:12.8340953Z\",\"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\":\"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 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/*/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/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/files/read\",\"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/utterances/read\"]}],\"createdOn\":\"2021-03-30T11:28:27.4339032Z\",\"updatedOn\":\"2022-05-23T15:08:46.2082116Z\",\"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\":\"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/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-30T11:28:49.7826633Z\",\"updatedOn\":\"2022-05-23T15:08:46.1925859Z\",\"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\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-31T01:51:41.3557295Z\",\"updatedOn\":\"2021-11-11T20:15:05.8818362Z\",\"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\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventGrid/events/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-02T21:55:40.4847495Z\",\"updatedOn\":\"2021-11-11T20:15:13.5605134Z\",\"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\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-07-14T21:51:06.0361218Z\",\"updatedOn\":\"2021-11-11T20:15:14.6405263Z\",\"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\":\"Built-in Grafana admin
+ role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaAdmin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-15T21:32:35.3802340Z\",\"updatedOn\":\"2021-11-11T20:15:14.8104670Z\",\"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\":\"Built-in Grafana Viewer
+ role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaViewer/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-05T16:36:18.7737511Z\",\"updatedOn\":\"2021-11-11T20:15:16.9904932Z\",\"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\":\"Built-in Grafana Editor
+ role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaEditor/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-05T16:37:32.5299593Z\",\"updatedOn\":\"2021-11-11T20:15:17.1805426Z\",\"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\":\"CodeSigning
+ 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.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\":\"2021-11-11T20:15:18.6105679Z\",\"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.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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-18T20:19:53.0087024Z\",\"updatedOn\":\"2021-11-11T20:15:23.8706020Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-18T20:20:46.5105444Z\",\"updatedOn\":\"2021-11-11T20:15:24.0456080Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-01T17:12:42.6172725Z\",\"updatedOn\":\"2021-11-11T20:15:25.1275776Z\",\"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\":\"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.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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-01T22:18:08.4480747Z\",\"updatedOn\":\"2022-01-14T02:51:08.7237156Z\",\"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\":\"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-knowledgebases/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"]}],\"createdOn\":\"2021-11-04T03:29:14.7643336Z\",\"updatedOn\":\"2022-03-29T18:02:09.1378280Z\",\"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-29T18:03:23.4902754Z\",\"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-29T18:03:46.5617184Z\",\"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/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-09T08:11:21.0936461Z\",\"updatedOn\":\"2021-11-11T20:15:27.1189225Z\",\"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\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-10T06:14:08.3903105Z\",\"updatedOn\":\"2021-11-11T20:15:28.2297181Z\",\"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\":\"Chamber
+ User\",\"type\":\"BuiltInRole\",\"description\":\"Lets you view everything
+ under your HPC Workbench chamber, but not make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HpcWorkbench/instances/chambers/*/read\",\"Microsoft.HpcWorkbench/instances/chambers/workloads/*\",\"Microsoft.HpcWorkbench/instances/chambers/getUploadUri/action\",\"Microsoft.HpcWorkbench/instances/consortiums/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-12-15T20:51:06.2119764Z\",\"updatedOn\":\"2022-01-27T04:54:22.9559555Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4447db05-44ed-4da3-ae60-6cbece780e32\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4447db05-44ed-4da3-ae60-6cbece780e32\"},{\"properties\":{\"roleName\":\"Chamber
+ Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage everything
+ under your HPC Workbench chamber.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HpcWorkbench/*/read\",\"Microsoft.HpcWorkbench/instances/chambers/*\",\"Microsoft.HpcWorkbench/instances/consortiums/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-12-15T20:53:14.4428297Z\",\"updatedOn\":\"2022-01-20T05:04:48.3694000Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4e9b8407-af2e-495b-ae54-bb60a55b1b5a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4e9b8407-af2e-495b-ae54-bb60a55b1b5a\"},{\"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/listManagedProxyDetails/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.HybridCompute/machines/WACLoginAsAdmin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-01-12T00:51:19.5581155Z\",\"updatedOn\":\"2022-05-03T20:59:23.1425428Z\",\"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\":\"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\":\"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-15T19:19:25.6182575Z\",\"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\":\"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.AAD/domainServices/read\",\"Microsoft.AAD/domainServices/oucontainer/read\",\"Microsoft.AAD/domainServices/OutboundNetworkDependenciesEndpoints/read\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/logDefinitions/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-02-23T00:41:52.2906373Z\",\"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.AAD/register/action\",\"Microsoft.AAD/unregister/action\",\"Microsoft.AAD/domainServices/read\",\"Microsoft.AAD/domainServices/write\",\"Microsoft.AAD/domainServices/delete\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/diagnosticSettings/write\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/logDefinitions/read\",\"Microsoft.AAD/domainServices/oucontainer/read\",\"Microsoft.AAD/domainServices/oucontainer/write\",\"Microsoft.AAD/domainServices/oucontainer/delete\",\"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-02-23T00:43:08.3207354Z\",\"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-11T20:54:15.0659022Z\",\"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\":\"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-01T01:28:16.0862180Z\",\"updatedOn\":\"2022-03-01T01:28:16.0862180Z\",\"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/sensorPartnerScope/*\"],\"notDataActions\":[\"Microsoft.AgFoodPlatform/sensorPartnerScope/sensors/delete\"]}],\"createdOn\":\"2022-03-09T04:58:18.4183393Z\",\"updatedOn\":\"2022-03-09T04:58:18.4183393Z\",\"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-10T00:33:23.4134686Z\",\"updatedOn\":\"2022-03-25T20:36:59.8004672Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-03-21T10:27:57.4429306Z\",\"updatedOn\":\"2022-04-13T08:04:30.2446363Z\",\"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.Fidalgo/projects/read\",\"Microsoft.Fidalgo/projects/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Fidalgo/projects/users/virtualMachines/userStop/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStart/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userGetRdpFileContent/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userRead/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userWrite/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userDelete/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-03-30T19:23:03.9063898Z\",\"updatedOn\":\"2022-03-30T19:23:03.9063898Z\",\"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.Fidalgo/projects/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[\"Microsoft.Fidalgo/projects/write\",\"Microsoft.Fidalgo/projects/delete\"],\"dataActions\":[\"Microsoft.Fidalgo/projects/users/virtualMachines/adminStart/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminStop/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminRead/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminWrite/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminDelete/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStop/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStart/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userGetRdpFileContent/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userRead/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userWrite/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userDelete/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-03-31T19:42:53.1063939Z\",\"updatedOn\":\"2022-03-31T19:42:53.1063939Z\",\"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-06T23:57:08.4960876Z\",\"updatedOn\":\"2022-04-16T18:55:22.3226785Z\",\"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 VM Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Arc
+ ScVmm VM Contributor has permissions to perform all VM actions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.scvmm/virtualmachines/*\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T17:19:43.4978394Z\",\"updatedOn\":\"2022-05-05T20:21:52.7065718Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T17:20:22.0259391Z\",\"updatedOn\":\"2022-05-05T20:21:42.0160634Z\",\"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 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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T17:21:31.8768952Z\",\"updatedOn\":\"2022-05-05T20:22:10.3489590Z\",\"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 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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T17:23:34.5429371Z\",\"updatedOn\":\"2022-05-05T20:23:15.0154893Z\",\"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\":\"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-19T07:59:47.5802132Z\",\"updatedOn\":\"2022-04-21T09:08:14.6059986Z\",\"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\":\"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-06T17:39:17.7581243Z\",\"updatedOn\":\"2022-05-10T21:30:34.1382013Z\",\"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\"}]}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '397418'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ set-cookie:
+ - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"ids": ["0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7"], "types": ["user", "group",
+ "servicePrincipal", "directoryObjectPartnerReference"]}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '132'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
+ method: POST
+ uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds
+ response:
+ body:
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.DataProtection/BackupVaults/cli-test-new-vault"],"appDisplayName":null,"appDescription":null,"appId":"e9a0c741-6333-46f7-86fe-5192f5d4bbc5","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-05-24T11:50:03Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"cli-test-new-vault","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["e9a0c741-6333-46f7-86fe-5192f5d4bbc5","https://identity.azure.net/yHvRErNNmOMZ4EezrAqFKc6Ca0cDdhCvjeK23cGv1hE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null},"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"7DC4E6931C5F85E71F4A5BEB5A59EE2FA1D9FA86","displayName":"CN=e9a0c741-6333-46f7-86fe-5192f5d4bbc5","endDateTime":"2022-08-22T11:45:00Z","key":null,"keyId":"77543e9f-1f8a-416d-948a-0e477d25855d","startDateTime":"2022-05-24T11:45:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[]}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1730'
+ content-type:
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:26 GMT
+ location:
+ - https://graph.microsoft.com
+ odata-version:
+ - '4.0'
+ request-id:
+ - 6ea289cc-5c45-46d8-8eab-c37a2631ac53
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00002971"}}'
+ x-ms-resource-unit:
+ - '3'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
+ method: GET
+ uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7')
+ response:
+ body:
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '92'
+ content-type:
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:27 GMT
+ odata-version:
+ - '4.0'
+ request-id:
+ - 52c4b6e4-6c0f-4204-8848-f756e898e765
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF0000298C"}}'
+ x-ms-resource-unit:
+ - '1'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"ids": ["0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7"], "types": ["user", "group",
+ "servicePrincipal", "directoryObjectPartnerReference"]}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '132'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
+ method: POST
+ uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds
+ response:
+ body:
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.DataProtection/BackupVaults/cli-test-new-vault"],"appDisplayName":null,"appDescription":null,"appId":"e9a0c741-6333-46f7-86fe-5192f5d4bbc5","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-05-24T11:50:03Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"cli-test-new-vault","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["e9a0c741-6333-46f7-86fe-5192f5d4bbc5","https://identity.azure.net/yHvRErNNmOMZ4EezrAqFKc6Ca0cDdhCvjeK23cGv1hE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null},"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"7DC4E6931C5F85E71F4A5BEB5A59EE2FA1D9FA86","displayName":"CN=e9a0c741-6333-46f7-86fe-5192f5d4bbc5","endDateTime":"2022-08-22T11:45:00Z","key":null,"keyId":"77543e9f-1f8a-416d-948a-0e477d25855d","startDateTime":"2022-05-24T11:45:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[]}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1730'
+ content-type:
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:27 GMT
+ location:
+ - https://graph.microsoft.com
+ odata-version:
+ - '4.0'
+ request-id:
+ - 12bdda35-50ad-4b09-bd63-abdfd7ed5361
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00002515"}}'
+ x-ms-resource-unit:
+ - '3'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Disk%20Restore%20Operator%27&api-version=2018-01-01-preview
+ response:
+ body:
+ string: '{"value":[{"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"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '782'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ set-cookie:
+ - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13",
+ "principalId": "0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7", "principalType": "ServicePrincipal"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '270'
+ Content-Type:
+ - application/json; charset=utf-8
+ Cookie:
+ - x-ms-gateway-slice=Production
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/14baf340-6b2f-4bd7-93a7-e9fa2bcef876?api-version=2020-04-01-preview
+ response:
+ body:
+ string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment
+ already exists."}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '89'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ set-cookie:
+ - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 409
+ message: Conflict
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
+ method: GET
+ uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames/any(c:c%20eq%20'0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7')
+ response:
+ body:
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '92'
+ content-type:
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:30 GMT
+ odata-version:
+ - '4.0'
+ request-id:
+ - 2f58ea7d-f4f9-4e44-85aa-e76346959481
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00002731"}}'
+ x-ms-resource-unit:
+ - '1'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"ids": ["0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7"], "types": ["user", "group",
+ "servicePrincipal", "directoryObjectPartnerReference"]}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '132'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
+ method: POST
+ uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds
+ response:
+ body:
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.DataProtection/BackupVaults/cli-test-new-vault"],"appDisplayName":null,"appDescription":null,"appId":"e9a0c741-6333-46f7-86fe-5192f5d4bbc5","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-05-24T11:50:03Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"cli-test-new-vault","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["e9a0c741-6333-46f7-86fe-5192f5d4bbc5","https://identity.azure.net/yHvRErNNmOMZ4EezrAqFKc6Ca0cDdhCvjeK23cGv1hE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null},"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"7DC4E6931C5F85E71F4A5BEB5A59EE2FA1D9FA86","displayName":"CN=e9a0c741-6333-46f7-86fe-5192f5d4bbc5","endDateTime":"2022-08-22T11:45:00Z","key":null,"keyId":"77543e9f-1f8a-416d-948a-0e477d25855d","startDateTime":"2022-05-24T11:45:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[]}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1730'
+ content-type:
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:30 GMT
+ location:
+ - https://graph.microsoft.com
+ odata-version:
+ - '4.0'
+ request-id:
+ - 07b9a7f5-60e3-4532-9c6e-42f47c34c694
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF0000146B"}}'
+ x-ms-resource-unit:
+ - '3'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29&api-version=2020-04-01-preview
+ response:
+ body:
+ string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"5c617d2b-99f8-4c90-98fe-dfe040fa33c1","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1d8b8d73-0cc6-4db8-b112-724b4a932253","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-26T12:22:13.7498923Z","updatedOn":"2019-08-26T12:22:13.7498923Z","createdBy":"1743392d-76d5-4611-94c2-448be522b83c","updatedBy":"1743392d-76d5-4611-94c2-448be522b83c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3a4de9-1ebd-47ce-9dd9-bebf87a4e28f","type":"Microsoft.Authorization/roleAssignments","name":"8c3a4de9-1ebd-47ce-9dd9-bebf87a4e28f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1e845bc3-37db-4639-be09-d0cf1e448221","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-05-24T11:02:27.8515917Z","updatedOn":"2019-05-24T11:02:27.8515917Z","createdBy":"d1f96755-9bcf-44b8-ab82-df67360496c4","updatedBy":"d1f96755-9bcf-44b8-ab82-df67360496c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5eee4d7-5f9f-4f63-8040-8aec158c289b","type":"Microsoft.Authorization/roleAssignments","name":"b5eee4d7-5f9f-4f63-8040-8aec158c289b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"235b2664-75e2-4741-bb6f-37e49babf6cd","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-12T11:34:59.7104212Z","updatedOn":"2020-02-12T11:34:59.7104212Z","createdBy":"1e845bc3-37db-4639-be09-d0cf1e448221","updatedBy":"1e845bc3-37db-4639-be09-d0cf1e448221","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0618702-8404-4858-9a26-e61f23e7d44f","type":"Microsoft.Authorization/roleAssignments","name":"f0618702-8404-4858-9a26-e61f23e7d44f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8bb5b214-1182-465c-892f-ca7235abe1e7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-11-14T08:52:42.2795010Z","updatedOn":"2019-11-14T08:52:42.2795010Z","createdBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","updatedBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77daac38-9839-4b00-921b-e5d5a03e728c","type":"Microsoft.Authorization/roleAssignments","name":"77daac38-9839-4b00-921b-e5d5a03e728c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9693df58-7f72-4974-9bd3-1c3ceb0382f1","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-29T09:40:04.3180033Z","updatedOn":"2018-11-29T09:40:04.3180033Z","createdBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","updatedBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed3bf874-9c97-43f9-a5e9-b4ee6f8982f7","type":"Microsoft.Authorization/roleAssignments","name":"ed3bf874-9c97-43f9-a5e9-b4ee6f8982f7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d1f96755-9bcf-44b8-ab82-df67360496c4","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T10:28:08.2854940Z","updatedOn":"2020-05-08T10:28:08.2854940Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfb3ca56-a0d4-44ce-ba35-b716c3fdab86","type":"Microsoft.Authorization/roleAssignments","name":"dfb3ca56-a0d4-44ce-ba35-b716c3fdab86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-12-31T09:26:43.6440415Z","updatedOn":"2018-12-31T09:26:43.6440415Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45744ea8-780f-4f3e-88aa-b73d7f6997b2","type":"Microsoft.Authorization/roleAssignments","name":"45744ea8-780f-4f3e-88aa-b73d7f6997b2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e65078fb-6b02-434a-9f11-d06bf9bc0600","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-25T23:42:36.3444507Z","updatedOn":"2018-10-25T23:42:36.3444507Z","createdBy":"66cb55a5-e2a8-44ef-ae4b-5ab8fa2ec8d9","updatedBy":"66cb55a5-e2a8-44ef-ae4b-5ab8fa2ec8d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7ce51e8-4109-41d7-bc10-538b089599db","type":"Microsoft.Authorization/roleAssignments","name":"e7ce51e8-4109-41d7-bc10-538b089599db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"a7782e0f-1f9a-4882-b2c9-11227aad244e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-16T04:32:50.9673703Z","updatedOn":"2020-06-16T04:32:50.9673703Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fa21f2f-81c3-47b6-b706-650b359b96c3","type":"Microsoft.Authorization/roleAssignments","name":"9fa21f2f-81c3-47b6-b706-650b359b96c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00b14177-f4d2-4a4b-94f6-6e80f75745c9","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T09:49:11.3750683Z","updatedOn":"2020-03-12T09:49:11.3750683Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fff0abf3-3cf7-46be-8bc7-1d1619a160fb","type":"Microsoft.Authorization/roleAssignments","name":"fff0abf3-3cf7-46be-8bc7-1d1619a160fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1d8b8d73-0cc6-4db8-b112-724b4a932253","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-26T10:28:45.4880023Z","updatedOn":"2019-08-26T10:28:45.4880023Z","createdBy":"1e845bc3-37db-4639-be09-d0cf1e448221","updatedBy":"1e845bc3-37db-4639-be09-d0cf1e448221","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/397a3c9c-c258-4d4e-834d-00cc08227796","type":"Microsoft.Authorization/roleAssignments","name":"397a3c9c-c258-4d4e-834d-00cc08227796"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"235b2664-75e2-4741-bb6f-37e49babf6cd","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-12-05T04:29:28.7359096Z","updatedOn":"2018-12-05T04:29:28.7359096Z","createdBy":"1743392d-76d5-4611-94c2-448be522b83c","updatedBy":"1743392d-76d5-4611-94c2-448be522b83c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3c830f42-5f89-4d8b-8f93-d3dc936f33bd","type":"Microsoft.Authorization/roleAssignments","name":"3c830f42-5f89-4d8b-8f93-d3dc936f33bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2d13e5e1-815b-45e7-be6f-3a2c36b407a8","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-08T08:38:50.1742930Z","updatedOn":"2020-04-08T08:38:50.1742930Z","createdBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","updatedBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5293a96b-830e-45f4-9e9e-22d7d020f0d8","type":"Microsoft.Authorization/roleAssignments","name":"5293a96b-830e-45f4-9e9e-22d7d020f0d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3421d717-ca60-44e7-a9a1-773acec4e503","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-10-23T09:40:14.7658272Z","updatedOn":"2019-10-23T09:40:14.7658272Z","createdBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","updatedBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/34b29558-faf9-43f0-a194-35ca0aa99fc5","type":"Microsoft.Authorization/roleAssignments","name":"34b29558-faf9-43f0-a194-35ca0aa99fc5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3dc88d41-4d03-4105-970d-937e56de3839","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-27T12:59:44.6557891Z","updatedOn":"2019-06-27T12:59:44.6557891Z","createdBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","updatedBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e57ab8d1-ce9a-4925-b09f-2567492d9b22","type":"Microsoft.Authorization/roleAssignments","name":"e57ab8d1-ce9a-4925-b09f-2567492d9b22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"62c799b8-9b54-4c3d-97c9-9490d16a6a9a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-08T13:01:20.9953919Z","updatedOn":"2019-08-08T13:01:20.9953919Z","createdBy":"1743392d-76d5-4611-94c2-448be522b83c","updatedBy":"1743392d-76d5-4611-94c2-448be522b83c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1b91810-0781-462d-9517-764e4a033822","type":"Microsoft.Authorization/roleAssignments","name":"e1b91810-0781-462d-9517-764e4a033822"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8bb5b214-1182-465c-892f-ca7235abe1e7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-10-23T08:03:15.6803676Z","updatedOn":"2019-10-23T08:03:15.6803676Z","createdBy":"1e845bc3-37db-4639-be09-d0cf1e448221","updatedBy":"1e845bc3-37db-4639-be09-d0cf1e448221","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/facbac06-ddab-437d-949a-207593fddfff","type":"Microsoft.Authorization/roleAssignments","name":"facbac06-ddab-437d-949a-207593fddfff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"978b254a-54be-42af-80f5-e2a37b2e40e5","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-07-08T06:57:57.0377373Z","updatedOn":"2019-07-08T06:57:57.0377373Z","createdBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","updatedBy":"78af2a83-7619-4559-b0ee-cc30d118c6f3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89be5b0a-dfa8-4bdf-b667-c6f63f7f3f0e","type":"Microsoft.Authorization/roleAssignments","name":"89be5b0a-dfa8-4bdf-b667-c6f63f7f3f0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9c973a07-b207-473c-9687-bd693ba8e460","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-17T09:14:08.7913669Z","updatedOn":"2020-04-17T09:14:08.7913669Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/950c635a-23a5-4a0e-8eb6-c53e929c9699","type":"Microsoft.Authorization/roleAssignments","name":"950c635a-23a5-4a0e-8eb6-c53e929c9699"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a4eae46b-a9d0-4586-8ac9-ba91b29f1d57","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T10:05:44.6784242Z","updatedOn":"2022-02-01T10:05:44.6784242Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8af2fb3a-292c-42a8-a870-1751c4ec4870","type":"Microsoft.Authorization/roleAssignments","name":"8af2fb3a-292c-42a8-a870-1751c4ec4870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"662a0ec2-cfbc-45f9-ae31-2cc53070e765","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T12:46:49.6216206Z","updatedOn":"2022-04-12T12:46:49.6216206Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/85cc2dff-c5d4-42a3-acb6-255cd4208ef4","type":"Microsoft.Authorization/roleAssignments","name":"85cc2dff-c5d4-42a3-acb6-255cd4208ef4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"662a0ec2-cfbc-45f9-ae31-2cc53070e765","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T12:46:57.1459341Z","updatedOn":"2022-04-12T12:46:57.1459341Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/aba8e90d-d951-4cb5-a346-b71e478f4d1b","type":"Microsoft.Authorization/roleAssignments","name":"aba8e90d-d951-4cb5-a346-b71e478f4d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"30bc1f3b-ca1a-4c55-96ff-4c026f12eaa1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T13:09:28.3678603Z","updatedOn":"2022-04-12T13:09:28.3678603Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/79d87d90-f984-4f53-a169-2eca51c00104","type":"Microsoft.Authorization/roleAssignments","name":"79d87d90-f984-4f53-a169-2eca51c00104"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"30bc1f3b-ca1a-4c55-96ff-4c026f12eaa1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T13:09:33.3916295Z","updatedOn":"2022-04-12T13:09:33.3916295Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/5e185742-c91a-4efe-b0d8-db9524685ec5","type":"Microsoft.Authorization/roleAssignments","name":"5e185742-c91a-4efe-b0d8-db9524685ec5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"3c582fc7-e68a-4991-a2f6-3d8a7a1f23c1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:01:02.2689248Z","updatedOn":"2022-04-13T07:01:02.2689248Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/c9b4f9ab-d687-4a65-910a-5bcb2f974bfe","type":"Microsoft.Authorization/roleAssignments","name":"c9b4f9ab-d687-4a65-910a-5bcb2f974bfe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"3c582fc7-e68a-4991-a2f6-3d8a7a1f23c1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:01:09.3571703Z","updatedOn":"2022-04-13T07:01:09.3571703Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/8bedf13c-aa1a-4191-aa97-573f14fd97ee","type":"Microsoft.Authorization/roleAssignments","name":"8bedf13c-aa1a-4191-aa97-573f14fd97ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"a31004b5-ce06-49e1-8706-e8c7afe68695","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:43:04.6456354Z","updatedOn":"2022-04-13T07:43:04.6456354Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/bd0fc30a-6ccf-4c22-a26b-0e31aba16035","type":"Microsoft.Authorization/roleAssignments","name":"bd0fc30a-6ccf-4c22-a26b-0e31aba16035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"a31004b5-ce06-49e1-8706-e8c7afe68695","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:43:10.1186881Z","updatedOn":"2022-04-13T07:43:10.1186881Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/dadaa3cd-f442-4d5c-aed3-7cbab2fba3e0","type":"Microsoft.Authorization/roleAssignments","name":"dadaa3cd-f442-4d5c-aed3-7cbab2fba3e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"6f6a803e-4dc5-488a-8566-a4f0a984975e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T08:58:57.7706882Z","updatedOn":"2022-04-13T08:58:57.7706882Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/9e3d10bf-9bfa-4a97-9ab1-b972a348abd0","type":"Microsoft.Authorization/roleAssignments","name":"9e3d10bf-9bfa-4a97-9ab1-b972a348abd0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"6f6a803e-4dc5-488a-8566-a4f0a984975e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T08:59:03.2414961Z","updatedOn":"2022-04-13T08:59:03.2414961Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/66eefd94-4bda-46df-9c61-7e92f83d91e7","type":"Microsoft.Authorization/roleAssignments","name":"66eefd94-4bda-46df-9c61-7e92f83d91e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"829da4fd-a5f4-4ca7-bc3d-0679d104c5f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T10:17:35.8887781Z","updatedOn":"2022-04-13T10:17:35.8887781Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/77f4f7a3-a377-49f7-a094-945b82b2bfff","type":"Microsoft.Authorization/roleAssignments","name":"77f4f7a3-a377-49f7-a094-945b82b2bfff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"829da4fd-a5f4-4ca7-bc3d-0679d104c5f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T10:17:41.2233089Z","updatedOn":"2022-04-13T10:17:41.2233089Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/1a71aac6-e9ce-40ff-a39f-7594df2ea6e9","type":"Microsoft.Authorization/roleAssignments","name":"1a71aac6-e9ce-40ff-a39f-7594df2ea6e9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T06:57:19.4532093Z","updatedOn":"2022-04-21T06:57:19.4532093Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/eede4548-9f71-44b7-8077-c49aa44894b4","type":"Microsoft.Authorization/roleAssignments","name":"eede4548-9f71-44b7-8077-c49aa44894b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T06:57:24.3439247Z","updatedOn":"2022-04-21T06:57:24.3439247Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/c011acd2-8b5d-45d6-b6c1-4ffe1867ce31","type":"Microsoft.Authorization/roleAssignments","name":"c011acd2-8b5d-45d6-b6c1-4ffe1867ce31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"85c33f6f-5d69-4b0e-bc06-95a7d3193519","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-04T09:52:52.7340040Z","updatedOn":"2022-05-04T09:52:52.7340040Z","createdBy":"447bbed8-9839-4d6e-9e39-fb9aeee1ec1d","updatedBy":"447bbed8-9839-4d6e-9e39-fb9aeee1ec1d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a4f635c-309c-4a1d-8eea-86fb5aa91d80","type":"Microsoft.Authorization/roleAssignments","name":"6a4f635c-309c-4a1d-8eea-86fb5aa91d80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"5095196a-def9-4146-8d92-e38f24b6e378","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T06:55:02.8791003Z","updatedOn":"2022-05-12T06:55:02.8791003Z","createdBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","updatedBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/153c562d-6f8b-4872-86a7-84f10e177d8b","type":"Microsoft.Authorization/roleAssignments","name":"153c562d-6f8b-4872-86a7-84f10e177d8b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"e6234342-a3d7-4b04-9041-3e8526f5861a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T06:55:02.9137483Z","updatedOn":"2022-05-12T06:55:02.9137483Z","createdBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","updatedBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5bd1b6d-0084-40ec-9126-2250536b4778","type":"Microsoft.Authorization/roleAssignments","name":"a5bd1b6d-0084-40ec-9126-2250536b4778"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T11:54:25.7258076Z","updatedOn":"2022-05-24T11:54:25.7258076Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/9a7dc348-d24e-438b-84b0-c7cda5bf92c4","type":"Microsoft.Authorization/roleAssignments","name":"9a7dc348-d24e-438b-84b0-c7cda5bf92c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T11:54:29.8931759Z","updatedOn":"2022-05-24T11:54:29.8931759Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/aeb54d04-84b8-4530-bd7e-fe01dafd82ab","type":"Microsoft.Authorization/roleAssignments","name":"aeb54d04-84b8-4530-bd7e-fe01dafd82ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a51d0ef9-9895-4b63-b3f8-354bb7d1a6bb","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-21T08:47:39.8177538Z","updatedOn":"2021-05-21T08:47:39.8177538Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17db6abb-bc45-4967-b313-e470ec9cbbd7","type":"Microsoft.Authorization/roleAssignments","name":"17db6abb-bc45-4967-b313-e470ec9cbbd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"7c567124-5292-4819-aa73-0224bf1c42e1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-05-23T13:38:54.7542852Z","updatedOn":"2021-05-23T13:38:54.7542852Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/0809d692-f58f-43f2-b597-7f115957407e","type":"Microsoft.Authorization/roleAssignments","name":"0809d692-f58f-43f2-b597-7f115957407e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"955c9d1b-0cb6-4ff6-91c9-f4aadf67ffe8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T16:45:08.3835615Z","updatedOn":"2021-05-24T16:45:08.3835615Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/1b1ac6ab-19e7-4c4f-91d2-5be73096da2c","type":"Microsoft.Authorization/roleAssignments","name":"1b1ac6ab-19e7-4c4f-91d2-5be73096da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"7221c906-782c-44a0-ab2f-f23d8a95ce25","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T16:56:16.2751421Z","updatedOn":"2021-05-24T16:56:16.2751421Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/ca8f2433-76dc-49fa-828d-9cd2861ec25c","type":"Microsoft.Authorization/roleAssignments","name":"ca8f2433-76dc-49fa-828d-9cd2861ec25c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"e1a3bbaa-4ffb-41a6-a154-b4870d9e86b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T06:40:53.5542743Z","updatedOn":"2021-06-04T06:40:53.5542743Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/9d9ac2a8-dbac-41bb-9f17-c473f02c6370","type":"Microsoft.Authorization/roleAssignments","name":"9d9ac2a8-dbac-41bb-9f17-c473f02c6370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"e1a3bbaa-4ffb-41a6-a154-b4870d9e86b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T06:40:57.1326805Z","updatedOn":"2021-06-04T06:40:57.1326805Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/14b1338c-95f6-44f9-ad22-395f8ebbb1fe","type":"Microsoft.Authorization/roleAssignments","name":"14b1338c-95f6-44f9-ad22-395f8ebbb1fe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"1da90707-df56-4d40-a805-2e646c9d95ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T07:02:18.2829699Z","updatedOn":"2021-06-04T07:02:18.2829699Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/bf5f4821-9baa-4dc6-9bd5-8c62f31c1a93","type":"Microsoft.Authorization/roleAssignments","name":"bf5f4821-9baa-4dc6-9bd5-8c62f31c1a93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"1da90707-df56-4d40-a805-2e646c9d95ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T07:02:22.4343547Z","updatedOn":"2021-06-04T07:02:22.4343547Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/26bab283-0772-4c03-8dc1-a50c8ffa597d","type":"Microsoft.Authorization/roleAssignments","name":"26bab283-0772-4c03-8dc1-a50c8ffa597d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"ab6b1184-ff37-4d3e-b460-fbe654f7ad5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T07:19:08.8293677Z","updatedOn":"2021-06-04T07:19:08.8293677Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/d972f611-a4bd-4b80-9e78-980984602450","type":"Microsoft.Authorization/roleAssignments","name":"d972f611-a4bd-4b80-9e78-980984602450"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"ab6b1184-ff37-4d3e-b460-fbe654f7ad5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T07:19:12.8400651Z","updatedOn":"2021-06-04T07:19:12.8400651Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/b9393755-f5ca-41ef-a631-fb62184c57a8","type":"Microsoft.Authorization/roleAssignments","name":"b9393755-f5ca-41ef-a631-fb62184c57a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"3ffa4e46-39a3-4002-9292-e2adf0d1a8c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T09:14:15.2633798Z","updatedOn":"2021-06-04T09:14:15.2633798Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/094981c0-d59c-4f5b-9581-72c08da65454","type":"Microsoft.Authorization/roleAssignments","name":"094981c0-d59c-4f5b-9581-72c08da65454"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"3ffa4e46-39a3-4002-9292-e2adf0d1a8c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-06-04T09:14:19.9554484Z","updatedOn":"2021-06-04T09:14:19.9554484Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/0cac59e0-0464-4bf6-9bef-f1fadc2b08f4","type":"Microsoft.Authorization/roleAssignments","name":"0cac59e0-0464-4bf6-9bef-f1fadc2b08f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1","principalId":"93e2b483-3ffa-44f8-9965-fdb104b541a2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T05:43:19.7216795Z","updatedOn":"2021-06-29T05:43:19.7216795Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6aff8c2-08b1-5b1a-9c80-d91164226985","type":"Microsoft.Authorization/roleAssignments","name":"c6aff8c2-08b1-5b1a-9c80-d91164226985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4f285ac8-5610-4d2f-854c-bfa3d16a2679","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-11T06:55:02.4909144Z","updatedOn":"2021-07-11T06:55:02.4909144Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0cec2ad2-d080-4126-a99f-f61c559b799c","type":"Microsoft.Authorization/roleAssignments","name":"0cec2ad2-d080-4126-a99f-f61c559b799c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"630db480-3ee6-47ec-ae72-5f917d466bad","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-13T10:16:28.8833400Z","updatedOn":"2021-07-13T10:16:28.8833400Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/37fe4b2d-0aca-4c27-8511-1e0d18063ec8","type":"Microsoft.Authorization/roleAssignments","name":"37fe4b2d-0aca-4c27-8511-1e0d18063ec8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"279982e7-46cf-4e40-9a3b-156c98285cb7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-13T10:18:48.5647062Z","updatedOn":"2021-07-13T10:18:48.5647062Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7907f38d-57a7-431d-82d7-5dfa2ef0a628","type":"Microsoft.Authorization/roleAssignments","name":"7907f38d-57a7-431d-82d7-5dfa2ef0a628"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"790004d0-0112-41ad-92e8-95c464c34476","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-13T10:18:48.6068337Z","updatedOn":"2021-07-13T10:18:48.6068337Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c9bda26-83c4-4d4c-b00b-c4b58301e539","type":"Microsoft.Authorization/roleAssignments","name":"8c9bda26-83c4-4d4c-b00b-c4b58301e539"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-21T06:38:43.9281998Z","updatedOn":"2021-07-21T06:38:43.9281998Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b553fa81-60dd-45d6-9781-8c2313d68b03","type":"Microsoft.Authorization/roleAssignments","name":"b553fa81-60dd-45d6-9781-8c2313d68b03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"a27f3bc9-abe0-404e-baa7-0949a258a204","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T04:31:20.4258578Z","updatedOn":"2021-07-27T04:31:20.4258578Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b2f7b08-f9ef-4fc1-b9c4-2bb34fdef258","type":"Microsoft.Authorization/roleAssignments","name":"4b2f7b08-f9ef-4fc1-b9c4-2bb34fdef258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"a27f3bc9-abe0-404e-baa7-0949a258a204","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T04:31:32.4566300Z","updatedOn":"2021-07-27T04:31:32.4566300Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8176bf09-8e96-448a-ab12-eeed360ecce2","type":"Microsoft.Authorization/roleAssignments","name":"8176bf09-8e96-448a-ab12-eeed360ecce2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb","principalId":"a27f3bc9-abe0-404e-baa7-0949a258a204","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T04:31:48.4577322Z","updatedOn":"2021-07-27T04:31:48.4577322Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45949217-58cc-4c18-93f3-f4c90710ae2d","type":"Microsoft.Authorization/roleAssignments","name":"45949217-58cc-4c18-93f3-f4c90710ae2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"53a2447a-3ec4-42e2-9194-66afe4fcea2b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T10:13:20.8138038Z","updatedOn":"2021-07-27T10:13:20.8138038Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2382b52f-1ec5-430e-ae2a-74f9ed331ced","type":"Microsoft.Authorization/roleAssignments","name":"2382b52f-1ec5-430e-ae2a-74f9ed331ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"53a2447a-3ec4-42e2-9194-66afe4fcea2b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T10:13:23.6551958Z","updatedOn":"2021-07-27T10:13:23.6551958Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5863947-0b21-41b7-9997-c0dfc73eec29","type":"Microsoft.Authorization/roleAssignments","name":"e5863947-0b21-41b7-9997-c0dfc73eec29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb","principalId":"53a2447a-3ec4-42e2-9194-66afe4fcea2b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-27T10:13:29.6985440Z","updatedOn":"2021-07-27T10:13:29.6985440Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28c1cefa-942f-44c5-a4d4-c33bb92abd45","type":"Microsoft.Authorization/roleAssignments","name":"28c1cefa-942f-44c5-a4d4-c33bb92abd45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8039a424-299a-4014-8b22-4f6d6cc60065","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T07:08:31.9935560Z","updatedOn":"2021-08-11T07:08:31.9935560Z","createdBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","updatedBy":"1d8b8d73-0cc6-4db8-b112-724b4a932253","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/69e0bcfc-b024-4d8b-a3d5-dac447f8986c","type":"Microsoft.Authorization/roleAssignments","name":"69e0bcfc-b024-4d8b-a3d5-dac447f8986c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1","principalId":"8f0340b8-4b70-412b-be19-c4612d49e353","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-20T11:58:29.6857641Z","updatedOn":"2021-08-20T11:58:29.6857641Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd88236f-eacb-5303-912f-ba1741cf02bd","type":"Microsoft.Authorization/roleAssignments","name":"fd88236f-eacb-5303-912f-ba1741cf02bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"0d8f6e68-d6c5-4a67-b6c4-3107609bbdbc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-20T12:31:58.7980661Z","updatedOn":"2021-08-20T12:31:58.7980661Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/146f4a11-8712-583d-89eb-a7b8b82dbaa9","type":"Microsoft.Authorization/roleAssignments","name":"146f4a11-8712-583d-89eb-a7b8b82dbaa9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"e2072d83-2379-4f36-ab51-b5df7460c61e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-21T14:40:08.5987892Z","updatedOn":"2021-08-21T14:40:10.5055205Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/842af679-0b58-5eb5-b94c-ff59e4105d7e","type":"Microsoft.Authorization/roleAssignments","name":"842af679-0b58-5eb5-b94c-ff59e4105d7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"0242778c-29df-4863-ac18-2fb8fd004135","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-08-30T06:31:52.6766200Z","updatedOn":"2021-08-30T06:31:52.6766200Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/f67c65e2-e609-4ffe-b504-294b00cbd2fd","type":"Microsoft.Authorization/roleAssignments","name":"f67c65e2-e609-4ffe-b504-294b00cbd2fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"0242778c-29df-4863-ac18-2fb8fd004135","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-08-30T06:31:57.1552781Z","updatedOn":"2021-08-30T06:31:57.1552781Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/aaeab926-d6e2-4bb6-9e9e-0607e75cc75f","type":"Microsoft.Authorization/roleAssignments","name":"aaeab926-d6e2-4bb6-9e9e-0607e75cc75f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"2ab5fb95-b72e-4d12-948b-4223754d8ffa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2021-09-08T08:24:19.3547440Z","updatedOn":"2021-09-08T08:24:19.3547440Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/43ee13b8-5abd-51e0-88e3-ae84049da70e","type":"Microsoft.Authorization/roleAssignments","name":"43ee13b8-5abd-51e0-88e3-ae84049da70e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"2d13e5e1-815b-45e7-be6f-3a2c36b407a8","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T09:41:38.5634940Z","updatedOn":"2021-09-17T09:41:38.5634940Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":"for
+ temp testing purpose"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98fe0117-1e9c-4e37-b8a7-c4a1031d6916","type":"Microsoft.Authorization/roleAssignments","name":"98fe0117-1e9c-4e37-b8a7-c4a1031d6916"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9c973a07-b207-473c-9687-bd693ba8e460","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-25T15:23:32.6168771Z","updatedOn":"2021-09-25T15:23:32.6168771Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d852f084-bc9f-4258-9e2c-fcf48b9eaf85","type":"Microsoft.Authorization/roleAssignments","name":"d852f084-bc9f-4258-9e2c-fcf48b9eaf85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1","principalId":"2778738c-452b-45ca-b8d6-f085836a1458","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-30T07:51:25.2399474Z","updatedOn":"2021-09-30T07:51:25.2399474Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b04a3bdf-b6a6-5ffb-9394-ee5743741597","type":"Microsoft.Authorization/roleAssignments","name":"b04a3bdf-b6a6-5ffb-9394-ee5743741597"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ac1f52a-325b-486a-a095-f46ffdd6a9e4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T01:59:18.6998395Z","updatedOn":"2021-10-26T01:59:18.6998395Z","createdBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","updatedBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53a3b238-b4b0-4d3f-b416-8d6dc8d755f6","type":"Microsoft.Authorization/roleAssignments","name":"53a3b238-b4b0-4d3f-b416-8d6dc8d755f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1","principalId":"c3c0d020-16f0-44d8-9950-0250120a33ff","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T06:11:03.5575284Z","updatedOn":"2021-11-02T06:11:03.5575284Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d017732-f67e-5aa1-a4a6-47570078d9f3","type":"Microsoft.Authorization/roleAssignments","name":"1d017732-f67e-5aa1-a4a6-47570078d9f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-10T08:59:19.7285159Z","updatedOn":"2021-11-10T08:59:19.7285159Z","createdBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","updatedBy":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a60357fa-dc0a-4479-a2a9-4329c2d0ae89","type":"Microsoft.Authorization/roleAssignments","name":"a60357fa-dc0a-4479-a2a9-4329c2d0ae89"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8dd77695-d6a5-450d-a43c-67ca01be9fbc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-12T10:55:38.3698246Z","updatedOn":"2021-11-12T10:55:38.3698246Z","createdBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dda5bb75-b74a-4430-975f-5bc9611c4b2d","type":"Microsoft.Authorization/roleAssignments","name":"dda5bb75-b74a-4430-975f-5bc9611c4b2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"2152c794-9ca2-41fe-a313-2d0e1ee3eb80","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-18T06:28:12.0181010Z","updatedOn":"2021-02-18T06:28:12.0181010Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/804f6223-03eb-4091-b460-82160fc5f818","type":"Microsoft.Authorization/roleAssignments","name":"804f6223-03eb-4091-b460-82160fc5f818"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2152c794-9ca2-41fe-a313-2d0e1ee3eb80","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-18T06:28:12.0168587Z","updatedOn":"2021-02-18T06:28:12.0168587Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d80e2d6-315c-495c-ab2c-91ddf75edf41","type":"Microsoft.Authorization/roleAssignments","name":"8d80e2d6-315c-495c-ab2c-91ddf75edf41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cf46d636-b6c1-406c-aba7-b2c3d9ed07da","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-26T13:53:53.1151640Z","updatedOn":"2021-02-26T13:53:53.1151640Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/735e98ed-f4b8-4b7d-9cc9-af4f8ae77252","type":"Microsoft.Authorization/roleAssignments","name":"735e98ed-f4b8-4b7d-9cc9-af4f8ae77252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8505e3f4-1ee7-427c-a175-a06595231d46","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-26T13:54:27.5624477Z","updatedOn":"2021-02-26T13:54:27.5624477Z","createdBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","updatedBy":"2b81557b-8e7a-4df8-9a41-e59844f627c2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98c87a9f-b9e7-414b-8b59-bf3ec62dbc74","type":"Microsoft.Authorization/roleAssignments","name":"98c87a9f-b9e7-414b-8b59-bf3ec62dbc74"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8bf5ba20-c970-4c38-b2a6-95f5726c959a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-25T12:25:27.2277610Z","updatedOn":"2020-07-25T12:25:27.2277610Z","createdBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","updatedBy":"8bb5b214-1182-465c-892f-ca7235abe1e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6b8ff4-9edb-43f5-aa2a-32133fa09b1d","type":"Microsoft.Authorization/roleAssignments","name":"fd6b8ff4-9edb-43f5-aa2a-32133fa09b1d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"21ae6127-c385-4ae0-b895-a8559e9aa574","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-31T08:35:35.2993523Z","updatedOn":"2020-07-31T08:35:35.2993523Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6af9fbf3-7085-4bcb-b399-88b89fac16d3","type":"Microsoft.Authorization/roleAssignments","name":"6af9fbf3-7085-4bcb-b399-88b89fac16d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1e845bc3-37db-4639-be09-d0cf1e448221","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-31T08:44:16.2909420Z","updatedOn":"2020-07-31T08:44:16.2909420Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65080390-e9b5-4566-b362-d1e96c23dae2","type":"Microsoft.Authorization/roleAssignments","name":"65080390-e9b5-4566-b362-d1e96c23dae2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T06:12:01.6760584Z","updatedOn":"2020-11-03T06:12:01.6760584Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7a12420-2dce-4a47-822e-68cadf239da3","type":"Microsoft.Authorization/roleAssignments","name":"a7a12420-2dce-4a47-822e-68cadf239da3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3282af51-433d-47e8-b2b5-633fbe0fecc0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T06:25:32.6790913Z","updatedOn":"2020-11-03T06:25:32.6790913Z","createdBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","updatedBy":"e3f1f833-3bc1-46d9-ae9b-b9e0a2117420","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36da831d-10ce-4f42-ba28-362960f6ea36","type":"Microsoft.Authorization/roleAssignments","name":"36da831d-10ce-4f42-ba28-362960f6ea36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupFlaggedSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-10-04T07:35:39.6626948Z","updatedOn":"2019-10-04T07:35:39.6626948Z","createdBy":"8031e009-cc05-4950-8a8d-78942c4492ac","updatedBy":"8031e009-cc05-4950-8a8d-78942c4492ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupFlaggedSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/730fa65e-c74c-4c3d-9cc3-9457f9b97274","type":"Microsoft.Authorization/roleAssignments","name":"730fa65e-c74c-4c3d-9cc3-9457f9b97274"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupFlaggedSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2021-04-08T01:03:29.8241478Z","updatedOn":"2021-04-08T01:03:29.8241478Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupFlaggedSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/63818ccb-a05c-4083-9e1d-64b4c7c0e1cd","type":"Microsoft.Authorization/roleAssignments","name":"63818ccb-a05c-4083-9e1d-64b4c7c0e1cd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c87d9afe-4463-41d5-81e3-3bd162af9183","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-07-10T09:38:17.4348497Z","updatedOn":"2019-07-10T09:38:17.4348497Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/ebc56c6d-c5de-4d99-b166-89d4ac815acd","type":"Microsoft.Authorization/roleAssignments","name":"ebc56c6d-c5de-4d99-b166-89d4ac815acd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-03-15T11:01:18.6794974Z","updatedOn":"2019-03-15T11:01:18.6794974Z","createdBy":"809e610d-9130-4b22-8c3a-5e6c64adc2c7","updatedBy":"809e610d-9130-4b22-8c3a-5e6c64adc2c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/9fb9b151-1d53-4eff-9336-75cf634e1e3d","type":"Microsoft.Authorization/roleAssignments","name":"9fb9b151-1d53-4eff-9336-75cf634e1e3d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f87f6638-3a1b-4562-8603-aacd59537149","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-05-03T06:47:05.1411825Z","updatedOn":"2019-05-03T06:47:05.1411825Z","createdBy":"809e610d-9130-4b22-8c3a-5e6c64adc2c7","updatedBy":"809e610d-9130-4b22-8c3a-5e6c64adc2c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/24ffbb29-061f-4b1d-8c26-c6e90ef53303","type":"Microsoft.Authorization/roleAssignments","name":"24ffbb29-061f-4b1d-8c26-c6e90ef53303"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"becb4b6b-fe16-413b-a5c3-90355e0b2982","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2019-06-26T06:33:50.1123976Z","updatedOn":"2019-06-26T06:33:50.1123976Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/4c3721e8-06f4-4115-a2d8-90c4a9a57d56","type":"Microsoft.Authorization/roleAssignments","name":"4c3721e8-06f4-4115-a2d8-90c4a9a57d56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T16:59:19.6098216Z","updatedOn":"2021-04-07T16:59:19.6098216Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/9d2de631-e451-450b-8237-e5bc19624eee","type":"Microsoft.Authorization/roleAssignments","name":"9d2de631-e451-450b-8237-e5bc19624eee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"b1b96a90-235c-4668-a931-ee1c08db7681","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2021-02-01T04:47:38.5676012Z","updatedOn":"2021-02-01T04:47:38.5676012Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/a9e38032-c21b-4c41-8960-1c9c982d98e2","type":"Microsoft.Authorization/roleAssignments","name":"a9e38032-c21b-4c41-8960-1c9c982d98e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a51d0ef9-9895-4b63-b3f8-354bb7d1a6bb","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG","condition":null,"conditionVersion":null,"createdOn":"2021-03-03T05:31:57.4716459Z","updatedOn":"2021-03-03T05:31:57.4716459Z","createdBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","updatedBy":"e2b118f2-5cbb-4f4c-93dd-54401a22306e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/AzureBackupTestSubscriptionsMG/providers/Microsoft.Authorization/roleAssignments/77aa0ff2-42c2-4e01-a51d-01cf2dd7ce04","type":"Microsoft.Authorization/roleAssignments","name":"77aa0ff2-42c2-4e01-a51d-01cf2dd7ce04"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ce2366a6-64d7-441b-939c-c9d23f91cccd","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '84735'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ set-cookie:
+ - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Cookie:
+ - x-ms-gateway-slice=Production
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Disk%20Restore%20Operator%27&api-version=2018-01-01-preview
+ response:
+ body:
+ string: '{"value":[{"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"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '782'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ set-cookie:
+ - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Cookie:
+ - x-ms-gateway-slice=Production
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.36.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleDefinitions?api-version=2018-01-01-preview
+ response:
+ body:
+ string: "{\"value\":[{\"properties\":{\"roleName\":\"Avere Cluster Create\",\"type\":\"CustomRole\",\"description\":\"Avere
+ cluster create role used by the Avere controller to create a vFXT cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.Authorization/roleDefinitions/*\",\"Microsoft.Compute/*/read\",\"Microsoft.Compute/availabilitySets/*\",\"Microsoft.Compute/virtualMachines/*\",\"Microsoft.Network/*/read\",\"Microsoft.Network/networkInterfaces/*\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Storage/*/read\",\"Microsoft.Storage/storageAccounts/listKeys/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-11-29T18:46:55.0492387Z\",\"updatedOn\":\"2018-11-29T18:46:55.0492387Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\"},{\"properties\":{\"roleName\":\"Avere
+ Cluster Runtime Operator\",\"type\":\"CustomRole\",\"description\":\"Avere
+ cluster runtime role used by Avere clusters running in subscriptions, for
+ the purpose of failing over IP addresses, accessing BLOB storage, etc\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/routeTables/read\",\"Microsoft.Network/routeTables/routes/*\",\"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\":\"2018-08-26T00:41:26.2170858Z\",\"updatedOn\":\"2018-08-26T00:41:26.2170858Z\",\"createdBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\"updatedBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e078ab98-ef3a-4c9a-aba7-12f5172b45d0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e078ab98-ef3a-4c9a-aba7-12f5172b45d0\"},{\"properties\":{\"roleName\":\"Azure
+ Service Deploy Release Management Contributor\",\"type\":\"CustomRole\",\"description\":\"Contributor
+ role for services deploying through Azure Service Deploy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-02-04T02:26:31.5413362Z\",\"updatedOn\":\"2018-01-08T20:20:16.3660174Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21d96096-b162-414a-8302-d8354f9d91b2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21d96096-b162-414a-8302-d8354f9d91b2\"},{\"properties\":{\"roleName\":\"CAL-Custom-Role\",\"type\":\"CustomRole\",\"description\":\"Lets
+ SAP Cloud Appliance Library application manage Network and Compute services,
+ manage Resource Groups and Management locks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/locks/*\",\"Microsoft.Authorization/roleDefinitions/*\",\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.Compute/*\",\"Microsoft.Network/*\",\"Microsoft.Resources/*\",\"Microsoft.Storage/*\",\"Microsoft.ContainerService/*\",\"Microsoft.ContainerRegistry/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-05-14T19:30:51.0664585Z\",\"updatedOn\":\"2019-02-19T19:11:57.5963229Z\",\"createdBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7b266cd7-0bba-4ae2-8423-90ede5e1e898\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7b266cd7-0bba-4ae2-8423-90ede5e1e898\"},{\"properties\":{\"roleName\":\"Dsms
+ Role (deprecated)\",\"type\":\"CustomRole\",\"description\":\"Custom role
+ used by Dsms to perform operations. Can list and regnerate storage account
+ keys.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-17T18:02:11.1225951Z\",\"updatedOn\":\"2018-01-13T00:21:52.7211696Z\",\"createdBy\":\"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\",\"updatedBy\":\"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\"},{\"properties\":{\"roleName\":\"Dsms
+ Role (do not use)\",\"type\":\"CustomRole\",\"description\":\"Custom role
+ used by Dsms to perform operations. Can list and regnerate storage account
+ keys.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-02-01T07:56:12.5880222Z\",\"updatedOn\":\"2018-08-09T17:53:48.5432297Z\",\"createdBy\":\"becb4b6b-fe16-413b-a5c3-90355e0b2982\",\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7aff565e-6c55-448d-83db-ccf482c6da2f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7aff565e-6c55-448d-83db-ccf482c6da2f\"},{\"properties\":{\"roleName\":\"ExpressRoute
+ Administrator\",\"type\":\"CustomRole\",\"description\":\"Can create, delete
+ and manage ExpressRoutes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/locks/*\",\"Microsoft.Authorization/policyAssignments/*\",\"Microsoft.Authorization/policyDefinitions/*\",\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.ClassicNetwork/*\",\"Microsoft.EventGrid/*\",\"Microsoft.Insights/*\",\"Microsoft.Network/*\",\"Microsoft.Resources/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-08-31T03:51:32.2843055Z\",\"updatedOn\":\"2019-03-20T22:55:18.8222085Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a48d7896-14b4-4889-afef-fbb65a96e5a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a48d7896-14b4-4889-afef-fbb65a96e5a2\"},{\"properties\":{\"roleName\":\"GenevaWarmPathResourceContributor\",\"type\":\"CustomRole\",\"description\":\"Can
+ manage service bus and storage accounts.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/namespaces/*\",\"Microsoft.Resources/subscriptions/resourceGroups/*\",\"Microsoft.ServiceBus/namespaces/*\",\"Microsoft.Storage/storageAccounts/*\",\"Microsoft.Storage/storageAccounts/managementPolicies/write\",\"Microsoft.Storage/storageAccounts/managementPolicies/read\",\"Microsoft.Storage/storageAccounts/managementPolicies/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-03-14T22:30:10.1999436Z\",\"updatedOn\":\"2022-02-28T23:26:40.0052537Z\",\"createdBy\":null,\"updatedBy\":\"acis\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\"},{\"properties\":{\"roleName\":\"masterreader\",\"type\":\"CustomRole\",\"description\":\"Lets
+ you view everything, but not make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-11-14T23:38:05.3353858Z\",\"updatedOn\":\"2017-11-14T23:38:05.3353858Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a48d7796-14b4-4889-afef-fbb65a93e5a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a48d7796-14b4-4889-afef-fbb65a93e5a2\"},{\"properties\":{\"roleName\":\"Microsoft
+ OneAsset Reader\",\"type\":\"CustomRole\",\"description\":\"This role is for
+ Microsoft OneAsset team (CSEO) to track internal security compliance and resource
+ utilization.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-27T23:51:08.6333052Z\",\"updatedOn\":\"2019-04-02T20:35:43.3396263Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd1bb084-1503-4bd2-99c0-630220046786\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd1bb084-1503-4bd2-99c0-630220046786\"},{\"properties\":{\"roleName\":\"Office
+ DevOps\",\"type\":\"CustomRole\",\"description\":\"Custom access for developers
+ to operations but not secrets.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachineScaleSets/restart/action\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/restart/action\",\"Microsoft.Sql/servers/databases/replicationLinks/delete\",\"Microsoft.Sql/servers/databases/replicationLinks/failover/action\",\"Microsoft.Sql/servers/databases/replicationLinks/forceFailoverAllowDataLoss/action\",\"Microsoft.Sql/servers/databases/replicationLinks/operationResults/read\",\"Microsoft.Sql/servers/databases/replicationLinks/read\",\"Microsoft.Sql/servers/databases/replicationLinks/unlink/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-10-07T08:11:46.1639398Z\",\"updatedOn\":\"2017-03-16T18:43:08.3234306Z\",\"createdBy\":\"25aea6be-b605-4347-a92d-33e178e412ec\",\"updatedBy\":\"25aea6be-b605-4347-a92d-33e178e412ec\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7fd64851-3279-459b-b614-e2b2ba760f5b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7fd64851-3279-459b-b614-e2b2ba760f5b\"},{\"properties\":{\"roleName\":\"GenevaWarmPathStorageBlobContributor\",\"type\":\"CustomRole\",\"description\":\"Geneva
+ Warm Path Storage Blob Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/lease/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/lock/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/extend/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/delete\",\"Microsoft.Storage/storageAccounts/managementPolicies/write\",\"Microsoft.Storage/storageAccounts/managementPolicies/read\",\"Microsoft.Storage/storageAccounts/managementPolicies/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-12-06T22:46:27.1365630Z\",\"updatedOn\":\"2022-02-28T23:26:40.4152515Z\",\"createdBy\":null,\"updatedBy\":\"acis\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a16c43ca-2d67-4dcd-9ded-6412f5edc51a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a16c43ca-2d67-4dcd-9ded-6412f5edc51a\"},{\"properties\":{\"roleName\":\"Azure
+ Service Deploy Release Management Restricted Owner\",\"type\":\"CustomRole\",\"description\":\"Restricted
+ owner role for services deploying through Azure Service Deploy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\"],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/locks/write\",\"Microsoft.Authorization/policyassignments/write\",\"Microsoft.Authorization/policydefinitions/write\",\"Microsoft.Authorization/policysetdefinitions/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-03-07T22:16:06.8803898Z\",\"updatedOn\":\"2022-03-07T22:16:06.8803898Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"94ddc4bc-25f5-4f3e-b527-c587da93cfe4\"},{\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-25T19:42:59.1576710Z\",\"updatedOn\":\"2021-11-11T20:13:13.3634724Z\",\"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-16T21:40:14.0457546Z\",\"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 backup
+ service,but can't create 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/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/backupInstances/backup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/restore/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/write\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/read\",\"Microsoft.DataProtection/locations/checkNameAvailability/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/providers/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:12:15.7321344Z\",\"updatedOn\":\"2021-11-11T20:13:24.3657611Z\",\"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
+ 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/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/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/locations/operationStatus/read\",\"Microsoft.DataProtection/locations/operationResults/read\",\"Microsoft.DataProtection/providers/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:21:11.8947640Z\",\"updatedOn\":\"2021-12-16T12:53:00.0624003Z\",\"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\":\"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/backupInstances/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/findRestorableTimeRanges/action\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/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/providers/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:18:41.3893065Z\",\"updatedOn\":\"2021-11-11T20:13:24.8792711Z\",\"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\u2019t 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\":\"2021-11-11T20:13:25.4059314Z\",\"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
+ Endpoint Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view CDN
+ endpoints, but can\u2019t 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\":\"2022-01-26T19:51:29.2636610Z\",\"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\":\"CDN
+ Profile Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage
+ CDN profiles and their endpoints, but can\u2019t 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\":\"2021-11-11T20:13:25.9224344Z\",\"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\u2019t 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.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2021-11-11T20:13:26.0983652Z\",\"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 (Preview)\",\"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\":\"2021-11-11T20:13:27.7138054Z\",\"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\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:28.6061853Z\",\"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.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\":\"2021-11-11T20:13:39.3023761Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-06-22T00:28:29.0523964Z\",\"updatedOn\":\"2021-11-11T20:13:39.6573851Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-06-22T00:31:03.4295347Z\",\"updatedOn\":\"2021-11-11T20:13:39.8274007Z\",\"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
+ 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\":\"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\":\"2021-11-11T20:13:44.4578442Z\",\"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\":\"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.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationalInsights/workspaces/search/action\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\"Microsoft.Support/*\",\"Microsoft.WorkloadMonitor/monitors/*\",\"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\"Microsoft.AlertsManagement/actionRules/*\",\"Microsoft.AlertsManagement/smartGroups/*\",\"Microsoft.AlertsManagement/migrateFromSmartDetection/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-09-21T19:21:08.4345976Z\",\"updatedOn\":\"2022-03-11T00:34:18.2670392Z\",\"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\":\"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/policysetdefinitions/*\",\"Microsoft.PolicyInsights/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-08-25T19:08:01.3861639Z\",\"updatedOn\":\"2021-11-11T20:13:49.6679217Z\",\"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
+ 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.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-03T07:51:23.0917487Z\",\"updatedOn\":\"2021-11-15T06:42:49.8263550Z\",\"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\":\"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/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/databases/transparentDataEncryption/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/read\",\"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/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/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/externalPolicyBasedAuthorizations/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-16T18:44:40.4607572Z\",\"updatedOn\":\"2022-04-27T21:08:08.4474437Z\",\"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-28T19:00:53.9963035Z\",\"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\":\"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\":\"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 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 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.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\":\"2021-11-11T20:13:58.3176075Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:58.4926099Z\",\"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/serverFarms/join/action\",\"Microsoft.Web/serverFarms/read\",\"Microsoft.Web/sites/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-05-12T23:10:23.6193952Z\",\"updatedOn\":\"2021-11-11T20:13:58.6655647Z\",\"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/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\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-26T17:01:17.0169383Z\",\"updatedOn\":\"2021-11-11T20:14:00.0802032Z\",\"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\"],\"notDataActions\":[]}],\"createdOn\":\"2019-08-07T00:29:03.8727621Z\",\"updatedOn\":\"2021-11-11T20:14:05.9821791Z\",\"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\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:39:03.8725173Z\",\"updatedOn\":\"2021-11-11T20:14:07.2371450Z\",\"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/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.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\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:54:07.6467264Z\",\"updatedOn\":\"2021-11-11T20:14:07.4171916Z\",\"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\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:58:50.1132117Z\",\"updatedOn\":\"2022-05-06T20:39:57.5331324Z\",\"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\":\"Workbook
+ Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read workbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.insights/workbooks/read\",\"microsoft.insights/workbooktemplates/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:56:17.6808140Z\",\"updatedOn\":\"2022-01-03T19:15:12.6968428Z\",\"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\":\"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/workbooktemplates/write\",\"Microsoft.Insights/workbooktemplates/delete\",\"Microsoft.Insights/workbooktemplates/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:59:42.4820277Z\",\"updatedOn\":\"2022-01-03T19:14:31.2372561Z\",\"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\":\"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/privateLinkScopes/read\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:15:07.1372870Z\",\"updatedOn\":\"2021-11-11T20:14:10.8735219Z\",\"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\":\"Azure
+ Connected Machine Resource Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Can
+ read, write, delete and re-onboard Azure Connected Machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/privateLinkScopes/*\",\"Microsoft.HybridCompute/*/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:24:59.1474607Z\",\"updatedOn\":\"2021-12-15T16:10:25.5898511Z\",\"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\":\"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\"],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:41:40.1185063Z\",\"updatedOn\":\"2021-11-11T20:14:11.4035314Z\",\"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.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-11-18T17:00:02.2087147Z\",\"updatedOn\":\"2021-11-11T20:14:12.4685303Z\",\"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.ContainerService/managedClusters/read\",\"Microsoft.ContainerService/managedClusters/write\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-27T19:27:15.0739970Z\",\"updatedOn\":\"2021-11-11T20:14:21.2621727Z\",\"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/models/read\",\"Microsoft.DigitalTwins/query/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:48:14.7057381Z\",\"updatedOn\":\"2021-11-11T20:14:22.3621788Z\",\"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/eventroutes/*\",\"Microsoft.DigitalTwins/digitaltwins/*\",\"Microsoft.DigitalTwins/digitaltwins/commands/*\",\"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\"Microsoft.DigitalTwins/models/*\",\"Microsoft.DigitalTwins/query/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:49:33.7821930Z\",\"updatedOn\":\"2021-11-11T20:14:22.5471888Z\",\"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\":[]}],\"createdOn\":\"2020-03-17T18:35:04.4949547Z\",\"updatedOn\":\"2021-11-11T20:14:23.6235473Z\",\"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/*\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/*\"],\"notDataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/hardDelete/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/hardDelete/action\"]}],\"createdOn\":\"2020-03-17T18:55:35.2413335Z\",\"updatedOn\":\"2021-11-11T20:14:24.1442783Z\",\"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 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\":\"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/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.2499247Z\",\"updatedOn\":\"2021-11-11T20:14:31.1292967Z\",\"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.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:47:24.4071415Z\",\"updatedOn\":\"2021-11-11T20:14:35.5993607Z\",\"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.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"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\":\"2021-11-11T20:14:35.7743651Z\",\"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.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.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/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/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/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\":\"2021-11-11T20:14:35.9544048Z\",\"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.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.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/batch/jobs/*\",\"Microsoft.ContainerService/managedClusters/configmaps/*\",\"Microsoft.ContainerService/managedClusters/endpoints/*\",\"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\"Microsoft.ContainerService/managedClusters/events/read\",\"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/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/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\":\"2021-11-11T20:14:36.1293406Z\",\"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\":\"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\":\"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\":\"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/send/action\",\"Microsoft.SignalRService/SignalR/group/send/action\",\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/group/write\",\"Microsoft.SignalRService/SignalR/clientConnection/send/action\",\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/clientConnection/write\",\"Microsoft.SignalRService/SignalR/user/send/action\",\"Microsoft.SignalRService/SignalR/user/read\",\"Microsoft.SignalRService/SignalR/user/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-29T09:35:32.2764751Z\",\"updatedOn\":\"2021-11-11T20:14:38.8028020Z\",\"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 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\":\"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 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/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-14T10:21:08.9138820Z\",\"updatedOn\":\"2021-11-11T20:14:45.0056815Z\",\"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/farmers/write\",\"Microsoft.AgFoodPlatform/deletionJobs/*/write\"]}],\"createdOn\":\"2020-09-14T10:21:09.7239169Z\",\"updatedOn\":\"2021-11-11T20:14:45.1806787Z\",\"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-07T20:20:03.1782149Z\",\"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/auth/accessKey/action\",\"Microsoft.SignalRService/SignalR/auth/clientToken/action\",\"Microsoft.SignalRService/SignalR/hub/send/action\",\"Microsoft.SignalRService/SignalR/group/send/action\",\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/group/write\",\"Microsoft.SignalRService/SignalR/clientConnection/send/action\",\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/clientConnection/write\",\"Microsoft.SignalRService/SignalR/serverConnection/write\",\"Microsoft.SignalRService/SignalR/user/send/action\",\"Microsoft.SignalRService/SignalR/user/read\",\"Microsoft.SignalRService/SignalR/user/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-10-13T09:20:32.1501410Z\",\"updatedOn\":\"2021-11-11T20:14:48.9653162Z\",\"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-25T20:55:26.9790121Z\",\"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-20T01:44:53.5887074Z\",\"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\":\"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 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\":\"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\":\"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 Uesr 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\":\"2021-11-11T20:14:54.5657970Z\",\"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\":\"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/discoveries/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/uploads/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/*\",\"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-01-04T13:19:41.5458536Z\",\"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 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\":\"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\":\"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\":\"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\":\"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.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\":\"2021-11-11T20:15:00.9583919Z\",\"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\":\"Web
+ PubSub Service Owner (Preview)\",\"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\":\"2021-11-16T05:16:52.6491279Z\",\"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 (Preview)\",\"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\":\"2021-11-16T05:17:12.8340953Z\",\"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\":\"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 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/*/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/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/files/read\",\"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/utterances/read\"]}],\"createdOn\":\"2021-03-30T11:28:27.4339032Z\",\"updatedOn\":\"2022-05-23T15:08:46.2082116Z\",\"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\":\"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/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-30T11:28:49.7826633Z\",\"updatedOn\":\"2022-05-23T15:08:46.1925859Z\",\"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\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-31T01:51:41.3557295Z\",\"updatedOn\":\"2021-11-11T20:15:05.8818362Z\",\"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\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventGrid/events/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-02T21:55:40.4847495Z\",\"updatedOn\":\"2021-11-11T20:15:13.5605134Z\",\"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\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-07-14T21:51:06.0361218Z\",\"updatedOn\":\"2021-11-11T20:15:14.6405263Z\",\"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\":\"Built-in Grafana admin
+ role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaAdmin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-15T21:32:35.3802340Z\",\"updatedOn\":\"2021-11-11T20:15:14.8104670Z\",\"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\":\"Built-in Grafana Viewer
+ role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaViewer/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-05T16:36:18.7737511Z\",\"updatedOn\":\"2021-11-11T20:15:16.9904932Z\",\"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\":\"Built-in Grafana Editor
+ role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaEditor/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-05T16:37:32.5299593Z\",\"updatedOn\":\"2021-11-11T20:15:17.1805426Z\",\"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\":\"CodeSigning
+ 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.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\":\"2021-11-11T20:15:18.6105679Z\",\"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.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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-18T20:19:53.0087024Z\",\"updatedOn\":\"2021-11-11T20:15:23.8706020Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-18T20:20:46.5105444Z\",\"updatedOn\":\"2021-11-11T20:15:24.0456080Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-01T17:12:42.6172725Z\",\"updatedOn\":\"2021-11-11T20:15:25.1275776Z\",\"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\":\"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.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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-01T22:18:08.4480747Z\",\"updatedOn\":\"2022-01-14T02:51:08.7237156Z\",\"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\":\"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-knowledgebases/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"]}],\"createdOn\":\"2021-11-04T03:29:14.7643336Z\",\"updatedOn\":\"2022-03-29T18:02:09.1378280Z\",\"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-29T18:03:23.4902754Z\",\"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-29T18:03:46.5617184Z\",\"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/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-09T08:11:21.0936461Z\",\"updatedOn\":\"2021-11-11T20:15:27.1189225Z\",\"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\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-10T06:14:08.3903105Z\",\"updatedOn\":\"2021-11-11T20:15:28.2297181Z\",\"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\":\"Chamber
+ User\",\"type\":\"BuiltInRole\",\"description\":\"Lets you view everything
+ under your HPC Workbench chamber, but not make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HpcWorkbench/instances/chambers/*/read\",\"Microsoft.HpcWorkbench/instances/chambers/workloads/*\",\"Microsoft.HpcWorkbench/instances/chambers/getUploadUri/action\",\"Microsoft.HpcWorkbench/instances/consortiums/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-12-15T20:51:06.2119764Z\",\"updatedOn\":\"2022-01-27T04:54:22.9559555Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4447db05-44ed-4da3-ae60-6cbece780e32\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4447db05-44ed-4da3-ae60-6cbece780e32\"},{\"properties\":{\"roleName\":\"Chamber
+ Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage everything
+ under your HPC Workbench chamber.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HpcWorkbench/*/read\",\"Microsoft.HpcWorkbench/instances/chambers/*\",\"Microsoft.HpcWorkbench/instances/consortiums/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-12-15T20:53:14.4428297Z\",\"updatedOn\":\"2022-01-20T05:04:48.3694000Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4e9b8407-af2e-495b-ae54-bb60a55b1b5a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4e9b8407-af2e-495b-ae54-bb60a55b1b5a\"},{\"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/listManagedProxyDetails/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.HybridCompute/machines/WACLoginAsAdmin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-01-12T00:51:19.5581155Z\",\"updatedOn\":\"2022-05-03T20:59:23.1425428Z\",\"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\":\"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\":\"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-15T19:19:25.6182575Z\",\"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\":\"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.AAD/domainServices/read\",\"Microsoft.AAD/domainServices/oucontainer/read\",\"Microsoft.AAD/domainServices/OutboundNetworkDependenciesEndpoints/read\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/logDefinitions/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-02-23T00:41:52.2906373Z\",\"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.AAD/register/action\",\"Microsoft.AAD/unregister/action\",\"Microsoft.AAD/domainServices/read\",\"Microsoft.AAD/domainServices/write\",\"Microsoft.AAD/domainServices/delete\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/diagnosticSettings/write\",\"Microsoft.AAD/domainServices/providers/Microsoft.Insights/logDefinitions/read\",\"Microsoft.AAD/domainServices/oucontainer/read\",\"Microsoft.AAD/domainServices/oucontainer/write\",\"Microsoft.AAD/domainServices/oucontainer/delete\",\"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-02-23T00:43:08.3207354Z\",\"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-11T20:54:15.0659022Z\",\"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\":\"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-01T01:28:16.0862180Z\",\"updatedOn\":\"2022-03-01T01:28:16.0862180Z\",\"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/sensorPartnerScope/*\"],\"notDataActions\":[\"Microsoft.AgFoodPlatform/sensorPartnerScope/sensors/delete\"]}],\"createdOn\":\"2022-03-09T04:58:18.4183393Z\",\"updatedOn\":\"2022-03-09T04:58:18.4183393Z\",\"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-10T00:33:23.4134686Z\",\"updatedOn\":\"2022-03-25T20:36:59.8004672Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-03-21T10:27:57.4429306Z\",\"updatedOn\":\"2022-04-13T08:04:30.2446363Z\",\"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.Fidalgo/projects/read\",\"Microsoft.Fidalgo/projects/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Fidalgo/projects/users/virtualMachines/userStop/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStart/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userGetRdpFileContent/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userRead/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userWrite/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userDelete/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-03-30T19:23:03.9063898Z\",\"updatedOn\":\"2022-03-30T19:23:03.9063898Z\",\"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.Fidalgo/projects/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[\"Microsoft.Fidalgo/projects/write\",\"Microsoft.Fidalgo/projects/delete\"],\"dataActions\":[\"Microsoft.Fidalgo/projects/users/virtualMachines/adminStart/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminStop/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminRead/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminWrite/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminDelete/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStop/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStart/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userGetRdpFileContent/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userRead/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userWrite/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userDelete/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-03-31T19:42:53.1063939Z\",\"updatedOn\":\"2022-03-31T19:42:53.1063939Z\",\"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-06T23:57:08.4960876Z\",\"updatedOn\":\"2022-04-16T18:55:22.3226785Z\",\"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 VM Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Arc
+ ScVmm VM Contributor has permissions to perform all VM actions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.scvmm/virtualmachines/*\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T17:19:43.4978394Z\",\"updatedOn\":\"2022-05-05T20:21:52.7065718Z\",\"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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T17:20:22.0259391Z\",\"updatedOn\":\"2022-05-05T20:21:42.0160634Z\",\"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 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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T17:21:31.8768952Z\",\"updatedOn\":\"2022-05-05T20:22:10.3489590Z\",\"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 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\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T17:23:34.5429371Z\",\"updatedOn\":\"2022-05-05T20:23:15.0154893Z\",\"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\":\"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-19T07:59:47.5802132Z\",\"updatedOn\":\"2022-04-21T09:08:14.6059986Z\",\"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\":\"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-06T17:39:17.7581243Z\",\"updatedOn\":\"2022-05-10T21:30:34.1382013Z\",\"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\"}]}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '397418'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ set-cookie:
+ - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"ids": ["0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7"], "types": ["user", "group",
+ "servicePrincipal", "directoryObjectPartnerReference"]}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - role assignment create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '132'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --assignee --role --scope
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.22000-SP0) AZURECLI/2.36.0
+ method: POST
+ uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds
+ response:
+ body:
+ string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"0b2dcd24-9585-4bb4-a7c3-83e0e3bd0dc7","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.DataProtection/BackupVaults/cli-test-new-vault"],"appDisplayName":null,"appDescription":null,"appId":"e9a0c741-6333-46f7-86fe-5192f5d4bbc5","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-05-24T11:50:03Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"cli-test-new-vault","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["e9a0c741-6333-46f7-86fe-5192f5d4bbc5","https://identity.azure.net/yHvRErNNmOMZ4EezrAqFKc6Ca0cDdhCvjeK23cGv1hE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null},"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"7DC4E6931C5F85E71F4A5BEB5A59EE2FA1D9FA86","displayName":"CN=e9a0c741-6333-46f7-86fe-5192f5d4bbc5","endDateTime":"2022-08-22T11:45:00Z","key":null,"keyId":"77543e9f-1f8a-416d-948a-0e477d25855d","startDateTime":"2022-05-24T11:45:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[]}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1730'
+ content-type:
+ - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:33 GMT
+ location:
+ - https://graph.microsoft.com
+ odata-version:
+ - '4.0'
+ request-id:
+ - 8cc86e0d-c584-4340-8fb2-0c295f890ce2
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ms-ags-diagnostic:
+ - '{"ServerInfo":{"DataCenter":"South India","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"MA1PEPF00002516"}}'
+ x-ms-resource-unit:
+ - '3'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - dataprotection resource-guard create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","name":"sarath-rg","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '232'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 24 May 2022 12:12:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "centraluseuap", "properties": {}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - dataprotection resource-guard create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '47'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/resourceGuards/cli-test-resource-guard?api-version=2022-04-01
response:
body:
- string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce","principalId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T06:57:17.4844433Z","updatedOn":"2022-04-21T06:57:18.1406972Z","createdBy":null,"updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/eede4548-9f71-44b7-8077-c49aa44894b4","type":"Microsoft.Authorization/roleAssignments","name":"eede4548-9f71-44b7-8077-c49aa44894b4"}'
+ string: '{"location":"centraluseuap","properties":{"provisioningState":"Succeeded","resourceGuardOperations":[{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete","requestResourceType":"Microsoft.DataProtection/resourceGuards/deleteProtectedItemRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/updateProtectedItemRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupPolicies/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/updateProtectionPolicyRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete","requestResourceType":"Microsoft.DataProtection/resourceGuards/deleteResourceGuardProxyRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupSecurityPIN/action","requestResourceType":"Microsoft.DataProtection/resourceGuards/getBackupSecurityPINRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupconfig/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/disableSoftDeleteRequests"},{"vaultCriticalOperation":"Microsoft.DataProtection/backupVaults/backupInstances/delete","requestResourceType":"Microsoft.DataProtection/backupVaults/backupInstances/delete"},{"vaultCriticalOperation":"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete","requestResourceType":"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete"}],"vaultCriticalOperationExclusionList":[],"allowAutoApprovals":true},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/resourceGuards/cli-test-resource-guard","name":"cli-test-resource-guard","type":"Microsoft.DataProtection/resourceGuards"}'
headers:
cache-control:
- no-cache
content-length:
- - '873'
+ - '1931'
content-type:
- - application/json; charset=utf-8
+ - application/json
date:
- - Thu, 21 Apr 2022 06:57:21 GMT
+ - Tue, 24 May 2022 12:12:41 GMT
expires:
- '-1'
pragma:
- no-cache
- set-cookie:
- - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -845,164 +4570,135 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - role assignment create
+ - dataprotection resource-guard list
Connection:
- keep-alive
ParameterSetName:
- - --assignee --role --scope
+ - -g
User-Agent:
- - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.35.0
- accept-language:
- - en-US
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273f74f5b7-f4f6-4b65-a45d-f1c60467e115%27%29&api-version=1.6
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/resourceGuards?api-version=2022-04-01
response:
body:
- string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}'
+ string: '{"value":[{"location":"centraluseuap","properties":{"provisioningState":"Succeeded","resourceGuardOperations":[{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete","requestResourceType":"Microsoft.DataProtection/resourceGuards/deleteProtectedItemRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/updateProtectedItemRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupPolicies/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/updateProtectionPolicyRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete","requestResourceType":"Microsoft.DataProtection/resourceGuards/deleteResourceGuardProxyRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupSecurityPIN/action","requestResourceType":"Microsoft.DataProtection/resourceGuards/getBackupSecurityPINRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupconfig/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/disableSoftDeleteRequests"},{"vaultCriticalOperation":"Microsoft.DataProtection/backupVaults/backupInstances/delete","requestResourceType":"Microsoft.DataProtection/backupVaults/backupInstances/delete"},{"vaultCriticalOperation":"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete","requestResourceType":"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete"}],"vaultCriticalOperationExclusionList":[],"allowAutoApprovals":true},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/resourceGuards/akneema-resource-guardd","name":"akneema-resource-guardd","type":"Microsoft.DataProtection/resourceGuards"},{"location":"centraluseuap","properties":{"provisioningState":"Succeeded","resourceGuardOperations":[{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete","requestResourceType":"Microsoft.DataProtection/resourceGuards/deleteProtectedItemRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/updateProtectedItemRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupPolicies/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/updateProtectionPolicyRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete","requestResourceType":"Microsoft.DataProtection/resourceGuards/deleteResourceGuardProxyRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupSecurityPIN/action","requestResourceType":"Microsoft.DataProtection/resourceGuards/getBackupSecurityPINRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupconfig/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/disableSoftDeleteRequests"},{"vaultCriticalOperation":"Microsoft.DataProtection/backupVaults/backupInstances/delete","requestResourceType":"Microsoft.DataProtection/backupVaults/backupInstances/delete"},{"vaultCriticalOperation":"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete","requestResourceType":"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete"}],"vaultCriticalOperationExclusionList":[],"allowAutoApprovals":true},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/resourceGuards/cli-test-resource-guard","name":"cli-test-resource-guard","type":"Microsoft.DataProtection/resourceGuards"}]}'
headers:
- access-control-allow-origin:
- - '*'
cache-control:
- no-cache
content-length:
- - '121'
+ - '3875'
content-type:
- - application/json; odata=minimalmetadata; streaming=true; charset=utf-8
- dataserviceversion:
- - 3.0;
+ - application/json
date:
- - Thu, 21 Apr 2022 06:57:20 GMT
- duration:
- - '890301'
+ - Tue, 24 May 2022 12:12:43 GMT
expires:
- '-1'
- ocp-aad-diagnostics-server-name:
- - H9wqgBk5T764p1bhnhS4LUFMHLqWn+FkAl26X54MTBY=
- ocp-aad-session-key:
- - 3coJaTsz52zBsM5jAN-Fra5C3ppdmxDarP1poEpwyvAthaFHKThj4isNdqhg4aW6Maj3SL-03bT9-Xyfc9B3R6Lg-nXsGTNMwaWwps28LVfjMwfxyG3fqaCHUhUHUwWd.rTn8xx5lsxk6LXJVPZtO8VT8YUYssAjvIIfS_fF9MDY
pragma:
- no-cache
- request-id:
- - c8d004e0-a1bd-43b5-a53f-2fbb1defaf9c
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-ms-dirapi-data-contract-version:
- - '1.6'
- x-ms-resource-unit:
- - '1'
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
x-powered-by:
- ASP.NET
status:
code: 200
message: OK
- request:
- body: '{"objectIds": ["3f74f5b7-f4f6-4b65-a45d-f1c60467e115"], "includeDirectoryObjectReferences":
- true}'
+ body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - role assignment create
+ - dataprotection resource-guard update
Connection:
- keep-alive
- Content-Length:
- - '97'
- Content-Type:
- - application/json; charset=utf-8
ParameterSetName:
- - --assignee --role --scope
+ - -g -n --resource-type --critical-operation-exclusion-list
User-Agent:
- - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.35.0
- accept-language:
- - en-US
- method: POST
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/resourceGuards/cli-test-resource-guard?api-version=2022-04-01
response:
body:
- string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/Microsoft.DataProtection/BackupVaults/cli-test-new-vault"],"appDisplayName":null,"appId":"11178d7e-5551-46cb-adf5-2782e3019a13","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli-test-new-vault","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"D886F465C472D419959F04DC751DF29CE73F3F3D","endDate":"2022-07-20T06:48:00Z","keyId":"25a11a64-631b-48d8-b433-1cc62584fddd","startDate":"2022-04-21T06:48:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["11178d7e-5551-46cb-adf5-2782e3019a13","https://identity.azure.net/yHvRErNNmOMZ4EezrAqFKc6Ca0cDdhCvjeK23cGv1hE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}'
+ string: '{"location":"centraluseuap","properties":{"provisioningState":"Succeeded","resourceGuardOperations":[{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete","requestResourceType":"Microsoft.DataProtection/resourceGuards/deleteProtectedItemRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/updateProtectedItemRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupPolicies/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/updateProtectionPolicyRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete","requestResourceType":"Microsoft.DataProtection/resourceGuards/deleteResourceGuardProxyRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupSecurityPIN/action","requestResourceType":"Microsoft.DataProtection/resourceGuards/getBackupSecurityPINRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupconfig/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/disableSoftDeleteRequests"},{"vaultCriticalOperation":"Microsoft.DataProtection/backupVaults/backupInstances/delete","requestResourceType":"Microsoft.DataProtection/backupVaults/backupInstances/delete"},{"vaultCriticalOperation":"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete","requestResourceType":"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete"}],"vaultCriticalOperationExclusionList":[],"allowAutoApprovals":true},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/resourceGuards/cli-test-resource-guard","name":"cli-test-resource-guard","type":"Microsoft.DataProtection/resourceGuards"}'
headers:
- access-control-allow-origin:
- - '*'
cache-control:
- no-cache
content-length:
- - '1576'
+ - '1931'
content-type:
- - application/json; odata=minimalmetadata; streaming=true; charset=utf-8
- dataserviceversion:
- - 3.0;
+ - application/json
date:
- - Thu, 21 Apr 2022 06:57:21 GMT
- duration:
- - '982972'
+ - Tue, 24 May 2022 12:12:45 GMT
expires:
- '-1'
- ocp-aad-diagnostics-server-name:
- - H9wqgBk5T764p1bhnhS4LUFMHLqWn+FkAl26X54MTBY=
- ocp-aad-session-key:
- - bBvYcoQ0jBwuE0fpGgKJ7hSKbWYHqsRy1yQRJ8pmBumReAiFuH_knIfgE3Qzu3gpVLPi-fViFBVPL1j6aQm2Od0oengEChLESaV-kHEtFRubgB5oq6DepHKzrzWxkCuH.dH809SLsqbxg0ByJT3riJl-BPox4KFX_ovSARgNf19M
pragma:
- no-cache
- request-id:
- - dcdd53c4-43a8-4eed-a200-f9fbfb1486cc
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-ms-dirapi-data-contract-version:
- - '1.6'
- x-ms-resource-unit:
- - '3'
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
x-powered-by:
- ASP.NET
status:
code: 200
message: OK
- request:
- body: null
+ body: '{"location": "centraluseuap", "properties": {"vaultCriticalOperationExclusionList":
+ ["Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete",
+ "Microsoft.RecoveryServices/vaults/backupSecurityPIN/action"]}}'
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - role assignment create
+ - dataprotection resource-guard update
Connection:
- keep-alive
+ Content-Length:
+ - '242'
+ Content-Type:
+ - application/json
ParameterSetName:
- - --assignee --role --scope
+ - -g -n --resource-type --critical-operation-exclusion-list
User-Agent:
- - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Disk%20Restore%20Operator%27&api-version=2018-01-01-preview
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/resourceGuards/cli-test-resource-guard?api-version=2022-04-01
response:
body:
- string: '{"value":[{"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"}]}'
+ string: '{"location":"centraluseuap","properties":{"provisioningState":"Succeeded","resourceGuardOperations":[{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/updateProtectedItemRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupPolicies/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/updateProtectionPolicyRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete","requestResourceType":"Microsoft.DataProtection/resourceGuards/deleteResourceGuardProxyRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupconfig/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/disableSoftDeleteRequests"},{"vaultCriticalOperation":"Microsoft.DataProtection/backupVaults/backupInstances/delete","requestResourceType":"Microsoft.DataProtection/backupVaults/backupInstances/delete"},{"vaultCriticalOperation":"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete","requestResourceType":"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete"}],"vaultCriticalOperationExclusionList":["Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete","Microsoft.RecoveryServices/vaults/backupSecurityPIN/action"],"allowAutoApprovals":true},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/resourceGuards/cli-test-resource-guard","name":"cli-test-resource-guard","type":"Microsoft.DataProtection/resourceGuards"}'
headers:
cache-control:
- no-cache
content-length:
- - '782'
+ - '1691'
content-type:
- - application/json; charset=utf-8
+ - application/json
date:
- - Thu, 21 Apr 2022 06:57:21 GMT
+ - Tue, 24 May 2022 12:12:46 GMT
expires:
- '-1'
pragma:
- no-cache
- set-cookie:
- - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -1011,63 +4707,61 @@ interactions:
- Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
status:
code: 200
message: OK
- request:
- body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13",
- "principalId": "3f74f5b7-f4f6-4b65-a45d-f1c60467e115", "principalType": "ServicePrincipal"}}'
+ body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - role assignment create
+ - dataprotection resource-guard list-protected-operations
Connection:
- keep-alive
- Content-Length:
- - '270'
- Content-Type:
- - application/json; charset=utf-8
- Cookie:
- - x-ms-gateway-slice=Production
ParameterSetName:
- - --assignee --role --scope
+ - -g -n --resource-type
User-Agent:
- - python/3.8.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.35.0
- accept-language:
- - en-US
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/c011acd2-8b5d-45d6-b6c1-4ffe1867ce31?api-version=2020-04-01-preview
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/resourceGuards/cli-test-resource-guard?api-version=2022-04-01
response:
body:
- string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13","principalId":"3f74f5b7-f4f6-4b65-a45d-f1c60467e115","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T06:57:22.5626115Z","updatedOn":"2022-04-21T06:57:23.2032372Z","createdBy":null,"updatedBy":"90680173-e32e-4cf3-a1b8-d1a99ac56bbf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Authorization/roleAssignments/c011acd2-8b5d-45d6-b6c1-4ffe1867ce31","type":"Microsoft.Authorization/roleAssignments","name":"c011acd2-8b5d-45d6-b6c1-4ffe1867ce31"}'
+ string: '{"location":"centraluseuap","properties":{"provisioningState":"Succeeded","resourceGuardOperations":[{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/updateProtectedItemRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupPolicies/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/updateProtectionPolicyRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupResourceGuardProxies/delete","requestResourceType":"Microsoft.DataProtection/resourceGuards/deleteResourceGuardProxyRequests"},{"vaultCriticalOperation":"Microsoft.RecoveryServices/vaults/backupconfig/write","requestResourceType":"Microsoft.DataProtection/resourceGuards/disableSoftDeleteRequests"},{"vaultCriticalOperation":"Microsoft.DataProtection/backupVaults/backupInstances/delete","requestResourceType":"Microsoft.DataProtection/backupVaults/backupInstances/delete"},{"vaultCriticalOperation":"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete","requestResourceType":"Microsoft.DataProtection/backupVaults/backupResourceGuardProxies/delete"}],"vaultCriticalOperationExclusionList":["Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/delete","Microsoft.RecoveryServices/vaults/backupSecurityPIN/action"],"allowAutoApprovals":true},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/resourceGuards/cli-test-resource-guard","name":"cli-test-resource-guard","type":"Microsoft.DataProtection/resourceGuards"}'
headers:
cache-control:
- no-cache
content-length:
- - '873'
+ - '1691'
content-type:
- - application/json; charset=utf-8
+ - application/json
date:
- - Thu, 21 Apr 2022 06:57:25 GMT
+ - Tue, 24 May 2022 12:12:50 GMT
expires:
- '-1'
pragma:
- no-cache
- set-cookie:
- - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ x-powered-by:
+ - ASP.NET
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
- request:
body: '{"properties": {"datasourceTypes": ["Microsoft.Compute/disks"], "objectType":
"BackupPolicy", "policyRules": [{"name": "BackupHourly", "objectType": "AzureBackupRule",
@@ -1095,9 +4789,9 @@ interactions:
ParameterSetName:
- -n --policy -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy?api-version=2022-04-01
response:
body:
string: '{"properties":{"policyRules":[{"backupParameters":{"backupType":"Incremental","objectType":"AzureBackupParams"},"trigger":{"schedule":{"repeatingTimeIntervals":["R/2020-04-05T13:00:00+00:00/PT4H"]},"taggingCriteria":[{"tagInfo":{"tagName":"Default","id":"Default_"},"taggingPriority":99,"isDefault":true}],"objectType":"ScheduleBasedTriggerContext"},"dataStore":{"dataStoreType":"OperationalStore","objectType":"DataStoreInfoBase"},"name":"BackupHourly","objectType":"AzureBackupRule"},{"lifecycles":[{"deleteAfter":{"objectType":"AbsoluteDeleteOption","duration":"P7D"},"sourceDataStore":{"dataStoreType":"OperationalStore","objectType":"DataStoreInfoBase"}}],"isDefault":true,"name":"Default","objectType":"AzureRetentionRule"}],"datasourceTypes":["Microsoft.Compute/disks"],"objectType":"BackupPolicy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","name":"diskpolicy","type":"Microsoft.DataProtection/backupVaults/backupPolicies"}'
@@ -1109,7 +4803,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:57:28 GMT
+ - Tue, 24 May 2022 12:12:54 GMT
expires:
- '-1'
pragma:
@@ -1145,9 +4839,9 @@ interactions:
ParameterSetName:
- -g --vault-name -n --query
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy?api-version=2022-04-01
response:
body:
string: '{"properties":{"policyRules":[{"backupParameters":{"backupType":"Incremental","objectType":"AzureBackupParams"},"trigger":{"schedule":{"repeatingTimeIntervals":["R/2020-04-05T13:00:00+00:00/PT4H"]},"taggingCriteria":[{"tagInfo":{"tagName":"Default","id":"Default_"},"taggingPriority":99,"isDefault":true}],"objectType":"ScheduleBasedTriggerContext"},"dataStore":{"dataStoreType":"OperationalStore","objectType":"DataStoreInfoBase"},"name":"BackupHourly","objectType":"AzureBackupRule"},{"lifecycles":[{"deleteAfter":{"objectType":"AbsoluteDeleteOption","duration":"P7D"},"sourceDataStore":{"dataStoreType":"OperationalStore","objectType":"DataStoreInfoBase"}}],"isDefault":true,"name":"Default","objectType":"AzureRetentionRule"}],"datasourceTypes":["Microsoft.Compute/disks"],"objectType":"BackupPolicy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","name":"diskpolicy","type":"Microsoft.DataProtection/backupVaults/backupPolicies"}'
@@ -1159,7 +4853,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:57:30 GMT
+ - Tue, 24 May 2022 12:12:56 GMT
expires:
- '-1'
pragma:
@@ -1211,9 +4905,9 @@ interactions:
ParameterSetName:
- -n --policy -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskhourlypolicy?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskhourlypolicy?api-version=2022-04-01
response:
body:
string: '{"properties":{"policyRules":[{"backupParameters":{"backupType":"Incremental","objectType":"AzureBackupParams"},"trigger":{"schedule":{"repeatingTimeIntervals":["R/2021-05-02T05:30:00+00:00/PT6H"]},"taggingCriteria":[{"tagInfo":{"tagName":"Default","id":"Default_"},"taggingPriority":99,"isDefault":true},{"tagInfo":{"tagName":"Daily","id":"Daily_"},"taggingPriority":25,"isDefault":false,"criteria":[{"absoluteCriteria":["FirstOfDay"],"objectType":"ScheduleBasedBackupCriteria"}]}],"objectType":"ScheduleBasedTriggerContext"},"dataStore":{"dataStoreType":"OperationalStore","objectType":"DataStoreInfoBase"},"name":"BackupHourly","objectType":"AzureBackupRule"},{"lifecycles":[{"deleteAfter":{"objectType":"AbsoluteDeleteOption","duration":"P7D"},"sourceDataStore":{"dataStoreType":"OperationalStore","objectType":"DataStoreInfoBase"}}],"isDefault":true,"name":"Default","objectType":"AzureRetentionRule"},{"lifecycles":[{"deleteAfter":{"objectType":"AbsoluteDeleteOption","duration":"P12D"},"sourceDataStore":{"dataStoreType":"OperationalStore","objectType":"DataStoreInfoBase"}}],"isDefault":false,"name":"Daily","objectType":"AzureRetentionRule"}],"datasourceTypes":["Microsoft.Compute/disks"],"objectType":"BackupPolicy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskhourlypolicy","name":"diskhourlypolicy","type":"Microsoft.DataProtection/backupVaults/backupPolicies"}'
@@ -1225,7 +4919,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:57:33 GMT
+ - Tue, 24 May 2022 12:12:57 GMT
expires:
- '-1'
pragma:
@@ -1271,25 +4965,25 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/validateForBackup?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/validateForBackup?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2UwNjY3YjYzLWExMjItNDQ2Yi1iYmFhLTFmZmEyOTNjODM5YQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2U1ZGY5M2ViLTNjOGQtNGNiOS05MTM4LTI3ZjAwYWNkMmE0MQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 06:57:34 GMT
+ - Tue, 24 May 2022 12:12:59 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2UwNjY3YjYzLWExMjItNDQ2Yi1iYmFhLTFmZmEyOTNjODM5YQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2U1ZGY5M2ViLTNjOGQtNGNiOS05MTM4LTI3ZjAwYWNkMmE0MQ==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -1317,12 +5011,12 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2UwNjY3YjYzLWExMjItNDQ2Yi1iYmFhLTFmZmEyOTNjODM5YQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2U1ZGY5M2ViLTNjOGQtNGNiOS05MTM4LTI3ZjAwYWNkMmE0MQ==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2UwNjY3YjYzLWExMjItNDQ2Yi1iYmFhLTFmZmEyOTNjODM5YQ==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2UwNjY3YjYzLWExMjItNDQ2Yi1iYmFhLTFmZmEyOTNjODM5YQ==","status":"Inprogress","startTime":"2022-04-21T06:57:35.3300213Z","endTime":"0001-01-01T00:00:00Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2U1ZGY5M2ViLTNjOGQtNGNiOS05MTM4LTI3ZjAwYWNkMmE0MQ==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2U1ZGY5M2ViLTNjOGQtNGNiOS05MTM4LTI3ZjAwYWNkMmE0MQ==","status":"Inprogress","startTime":"2022-05-24T12:12:59.8270687Z","endTime":"0001-01-01T00:00:00Z"}'
headers:
cache-control:
- no-cache
@@ -1331,7 +5025,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:57:45 GMT
+ - Tue, 24 May 2022 12:13:10 GMT
expires:
- '-1'
pragma:
@@ -1365,12 +5059,12 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2UwNjY3YjYzLWExMjItNDQ2Yi1iYmFhLTFmZmEyOTNjODM5YQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2U1ZGY5M2ViLTNjOGQtNGNiOS05MTM4LTI3ZjAwYWNkMmE0MQ==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2UwNjY3YjYzLWExMjItNDQ2Yi1iYmFhLTFmZmEyOTNjODM5YQ==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2UwNjY3YjYzLWExMjItNDQ2Yi1iYmFhLTFmZmEyOTNjODM5YQ==","status":"Succeeded","startTime":"2022-04-21T06:57:35.3300213Z","endTime":"2022-04-21T06:58:07Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2U1ZGY5M2ViLTNjOGQtNGNiOS05MTM4LTI3ZjAwYWNkMmE0MQ==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2U1ZGY5M2ViLTNjOGQtNGNiOS05MTM4LTI3ZjAwYWNkMmE0MQ==","status":"Succeeded","startTime":"2022-05-24T12:12:59.8270687Z","endTime":"2022-05-24T12:13:31Z"}'
headers:
cache-control:
- no-cache
@@ -1379,7 +5073,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:58:15 GMT
+ - Tue, 24 May 2022 12:13:40 GMT
expires:
- '-1'
pragma:
@@ -1413,15 +5107,15 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2UwNjY3YjYzLWExMjItNDQ2Yi1iYmFhLTFmZmEyOTNjODM5YQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2U1ZGY5M2ViLTNjOGQtNGNiOS05MTM4LTI3ZjAwYWNkMmE0MQ==?api-version=2022-04-01
response:
body:
string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2UwNjY3YjYzLWExMjItNDQ2Yi1iYmFhLTFmZmEyOTNjODM5YQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2U1ZGY5M2ViLTNjOGQtNGNiOS05MTM4LTI3ZjAwYWNkMmE0MQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -1429,7 +5123,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:58:16 GMT
+ - Tue, 24 May 2022 12:13:41 GMT
expires:
- '-1'
pragma:
@@ -1473,15 +5167,15 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"cli-test-disk-new","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","resourceUri":"","datasourceType":"Microsoft.Compute/disks","resourceName":"cli-test-disk-new","resourceType":"Microsoft.Compute/disks","resourceLocation":"centraluseuap","objectType":"Datasource"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","policyParameters":{"dataStoreParametersList":[{"objectType":"AzureOperationalStoreParameters","dataStoreType":"OperationalStore","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg"}]}},"protectionStatus":{"status":"ConfiguringProtection"},"currentProtectionState":"ConfiguringProtection","provisioningState":"Provisioning","objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","name":"cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzIzYjkwMzAwLWQwYjUtNGQ4OS1hNTc5LTM1ZTFlZjM4OGRlNg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzk4MzRkYWRlLTA5MTItNDhjZi04OTM5LWRhNmIwNzE4OGMzNw==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -1489,7 +5183,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:58:17 GMT
+ - Tue, 24 May 2022 12:13:42 GMT
expires:
- '-1'
pragma:
@@ -1501,7 +5195,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -1521,12 +5215,12 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzIzYjkwMzAwLWQwYjUtNGQ4OS1hNTc5LTM1ZTFlZjM4OGRlNg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzk4MzRkYWRlLTA5MTItNDhjZi04OTM5LWRhNmIwNzE4OGMzNw==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzIzYjkwMzAwLWQwYjUtNGQ4OS1hNTc5LTM1ZTFlZjM4OGRlNg==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzIzYjkwMzAwLWQwYjUtNGQ4OS1hNTc5LTM1ZTFlZjM4OGRlNg==","status":"Succeeded","startTime":"2022-04-21T06:58:18.0458799Z","endTime":"2022-04-21T06:58:19Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzk4MzRkYWRlLTA5MTItNDhjZi04OTM5LWRhNmIwNzE4OGMzNw==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzk4MzRkYWRlLTA5MTItNDhjZi04OTM5LWRhNmIwNzE4OGMzNw==","status":"Succeeded","startTime":"2022-05-24T12:13:43.0946079Z","endTime":"2022-05-24T12:13:45Z"}'
headers:
cache-control:
- no-cache
@@ -1535,7 +5229,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:58:33 GMT
+ - Tue, 24 May 2022 12:13:58 GMT
expires:
- '-1'
pragma:
@@ -1569,9 +5263,9 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"cli-test-disk-new","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","resourceUri":"","datasourceType":"Microsoft.Compute/disks","resourceName":"cli-test-disk-new","resourceType":"Microsoft.Compute/disks","resourceLocation":"centraluseuap","objectType":"Datasource"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","policyParameters":{"dataStoreParametersList":[{"objectType":"AzureOperationalStoreParameters","dataStoreType":"OperationalStore","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg"}]}},"protectionStatus":{"status":"ConfiguringProtection"},"currentProtectionState":"ConfiguringProtection","provisioningState":"Succeeded","objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","name":"cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
@@ -1583,7 +5277,55 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:58:33 GMT
+ - Tue, 24 May 2022 12:13:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - dataprotection backup-instance list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --vault-name --query
+ User-Agent:
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances?api-version=2022-04-01
+ response:
+ body:
+ string: '{"value":[{"properties":{"friendlyName":"cli-test-disk-new","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","resourceUri":"","datasourceType":"Microsoft.Compute/disks","resourceName":"cli-test-disk-new","resourceType":"Microsoft.Compute/disks","resourceLocation":"centraluseuap","objectType":"Datasource"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","policyParameters":{"dataStoreParametersList":[{"objectType":"AzureOperationalStoreParameters","dataStoreType":"OperationalStore","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg"}]}},"protectionStatus":{"status":"ConfiguringProtection"},"currentProtectionState":"ConfiguringProtection","provisioningState":"Succeeded","objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","name":"cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","type":"Microsoft.DataProtection/backupVaults/backupInstances"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1401'
+ content-type:
+ - application/json
+ date:
+ - Tue, 24 May 2022 12:14:03 GMT
expires:
- '-1'
pragma:
@@ -1617,9 +5359,9 @@ interactions:
ParameterSetName:
- -g --vault-name --query
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances?api-version=2022-04-01
response:
body:
string: '{"value":[{"properties":{"friendlyName":"cli-test-disk-new","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","resourceUri":"","datasourceType":"Microsoft.Compute/disks","resourceName":"cli-test-disk-new","resourceType":"Microsoft.Compute/disks","resourceLocation":"centraluseuap","objectType":"Datasource"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","policyParameters":{"dataStoreParametersList":[{"objectType":"AzureOperationalStoreParameters","dataStoreType":"OperationalStore","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg"}]}},"protectionStatus":{"status":"ConfiguringProtection"},"currentProtectionState":"ConfiguringProtection","provisioningState":"Succeeded","objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","name":"cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","type":"Microsoft.DataProtection/backupVaults/backupInstances"}]}'
@@ -1631,7 +5373,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:58:35 GMT
+ - Tue, 24 May 2022 12:14:15 GMT
expires:
- '-1'
pragma:
@@ -1665,9 +5407,9 @@ interactions:
ParameterSetName:
- -g --vault-name --query
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances?api-version=2022-04-01
response:
body:
string: '{"value":[{"properties":{"friendlyName":"cli-test-disk-new","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","resourceUri":"","datasourceType":"Microsoft.Compute/disks","resourceName":"cli-test-disk-new","resourceType":"Microsoft.Compute/disks","resourceLocation":"centraluseuap","objectType":"Datasource"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","policyParameters":{"dataStoreParametersList":[{"objectType":"AzureOperationalStoreParameters","dataStoreType":"OperationalStore","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg"}]}},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","name":"cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","type":"Microsoft.DataProtection/backupVaults/backupInstances"}]}'
@@ -1679,7 +5421,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:58:47 GMT
+ - Tue, 24 May 2022 12:14:30 GMT
expires:
- '-1'
pragma:
@@ -1715,25 +5457,25 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/stopProtection?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/stopProtection?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzYxZDZjNmE5LWFjMTctNDM4MS04MmUxLTE2MWI5MDM1YzNmZQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2YyOWQ3ODJhLThlMTMtNDkwYS04NGVlLTRlNTczNTNkM2JmOA==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 06:59:21 GMT
+ - Tue, 24 May 2022 12:15:06 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzYxZDZjNmE5LWFjMTctNDM4MS04MmUxLTE2MWI5MDM1YzNmZQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2YyOWQ3ODJhLThlMTMtNDkwYS04NGVlLTRlNTczNTNkM2JmOA==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -1761,12 +5503,12 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzYxZDZjNmE5LWFjMTctNDM4MS04MmUxLTE2MWI5MDM1YzNmZQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2YyOWQ3ODJhLThlMTMtNDkwYS04NGVlLTRlNTczNTNkM2JmOA==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzYxZDZjNmE5LWFjMTctNDM4MS04MmUxLTE2MWI5MDM1YzNmZQ==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzYxZDZjNmE5LWFjMTctNDM4MS04MmUxLTE2MWI5MDM1YzNmZQ==","status":"Succeeded","startTime":"2022-04-21T06:59:20.7981519Z","endTime":"2022-04-21T06:59:33Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2YyOWQ3ODJhLThlMTMtNDkwYS04NGVlLTRlNTczNTNkM2JmOA==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2YyOWQ3ODJhLThlMTMtNDkwYS04NGVlLTRlNTczNTNkM2JmOA==","status":"Succeeded","startTime":"2022-05-24T12:15:06.5854996Z","endTime":"2022-05-24T12:15:19Z"}'
headers:
cache-control:
- no-cache
@@ -1775,7 +5517,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:59:35 GMT
+ - Tue, 24 May 2022 12:15:21 GMT
expires:
- '-1'
pragma:
@@ -1809,15 +5551,15 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzYxZDZjNmE5LWFjMTctNDM4MS04MmUxLTE2MWI5MDM1YzNmZQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2YyOWQ3ODJhLThlMTMtNDkwYS04NGVlLTRlNTczNTNkM2JmOA==?api-version=2022-04-01
response:
body:
string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzYxZDZjNmE5LWFjMTctNDM4MS04MmUxLTE2MWI5MDM1YzNmZQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2YyOWQ3ODJhLThlMTMtNDkwYS04NGVlLTRlNTczNTNkM2JmOA==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -1825,7 +5567,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:59:36 GMT
+ - Tue, 24 May 2022 12:15:22 GMT
expires:
- '-1'
pragma:
@@ -1859,9 +5601,9 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"cli-test-disk-new","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","resourceUri":"","datasourceType":"Microsoft.Compute/disks","resourceName":"cli-test-disk-new","resourceType":"Microsoft.Compute/disks","resourceLocation":"centraluseuap","objectType":"Datasource"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","policyParameters":{"dataStoreParametersList":[{"objectType":"AzureOperationalStoreParameters","dataStoreType":"OperationalStore","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg"}]}},"protectionStatus":{"status":"ProtectionStopped"},"currentProtectionState":"ProtectionStopped","provisioningState":"Succeeded","objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","name":"cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
@@ -1873,7 +5615,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:59:38 GMT
+ - Tue, 24 May 2022 12:15:26 GMT
expires:
- '-1'
pragma:
@@ -1909,25 +5651,25 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/resumeProtection?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/resumeProtection?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzZmYWM0MmEyLWVhMDMtNGM2Ni1hOWRkLTAxYWQzZmFlNjYxNw==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2IyZGNiYzUzLWM2ZDAtNDUwNy1hZGQ2LWViNGFmNzBkYzY2MA==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 06:59:41 GMT
+ - Tue, 24 May 2022 12:15:28 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzZmYWM0MmEyLWVhMDMtNGM2Ni1hOWRkLTAxYWQzZmFlNjYxNw==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2IyZGNiYzUzLWM2ZDAtNDUwNy1hZGQ2LWViNGFmNzBkYzY2MA==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -1955,12 +5697,12 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzZmYWM0MmEyLWVhMDMtNGM2Ni1hOWRkLTAxYWQzZmFlNjYxNw==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2IyZGNiYzUzLWM2ZDAtNDUwNy1hZGQ2LWViNGFmNzBkYzY2MA==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzZmYWM0MmEyLWVhMDMtNGM2Ni1hOWRkLTAxYWQzZmFlNjYxNw==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzZmYWM0MmEyLWVhMDMtNGM2Ni1hOWRkLTAxYWQzZmFlNjYxNw==","status":"Inprogress","startTime":"2022-04-21T06:59:41.2668675Z","endTime":"0001-01-01T00:00:00Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2IyZGNiYzUzLWM2ZDAtNDUwNy1hZGQ2LWViNGFmNzBkYzY2MA==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2IyZGNiYzUzLWM2ZDAtNDUwNy1hZGQ2LWViNGFmNzBkYzY2MA==","status":"Inprogress","startTime":"2022-05-24T12:15:28.8575077Z","endTime":"0001-01-01T00:00:00Z"}'
headers:
cache-control:
- no-cache
@@ -1969,7 +5711,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 06:59:56 GMT
+ - Tue, 24 May 2022 12:15:46 GMT
expires:
- '-1'
pragma:
@@ -2003,12 +5745,12 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzZmYWM0MmEyLWVhMDMtNGM2Ni1hOWRkLTAxYWQzZmFlNjYxNw==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2IyZGNiYzUzLWM2ZDAtNDUwNy1hZGQ2LWViNGFmNzBkYzY2MA==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzZmYWM0MmEyLWVhMDMtNGM2Ni1hOWRkLTAxYWQzZmFlNjYxNw==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzZmYWM0MmEyLWVhMDMtNGM2Ni1hOWRkLTAxYWQzZmFlNjYxNw==","status":"Succeeded","startTime":"2022-04-21T06:59:41.2668675Z","endTime":"2022-04-21T07:00:04Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2IyZGNiYzUzLWM2ZDAtNDUwNy1hZGQ2LWViNGFmNzBkYzY2MA==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2IyZGNiYzUzLWM2ZDAtNDUwNy1hZGQ2LWViNGFmNzBkYzY2MA==","status":"Succeeded","startTime":"2022-05-24T12:15:28.8575077Z","endTime":"2022-05-24T12:16:01Z"}'
headers:
cache-control:
- no-cache
@@ -2017,7 +5759,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:00:27 GMT
+ - Tue, 24 May 2022 12:16:16 GMT
expires:
- '-1'
pragma:
@@ -2051,15 +5793,15 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzZmYWM0MmEyLWVhMDMtNGM2Ni1hOWRkLTAxYWQzZmFlNjYxNw==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2IyZGNiYzUzLWM2ZDAtNDUwNy1hZGQ2LWViNGFmNzBkYzY2MA==?api-version=2022-04-01
response:
body:
string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzZmYWM0MmEyLWVhMDMtNGM2Ni1hOWRkLTAxYWQzZmFlNjYxNw==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2IyZGNiYzUzLWM2ZDAtNDUwNy1hZGQ2LWViNGFmNzBkYzY2MA==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -2067,7 +5809,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:00:27 GMT
+ - Tue, 24 May 2022 12:16:16 GMT
expires:
- '-1'
pragma:
@@ -2101,9 +5843,9 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"cli-test-disk-new","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","resourceUri":"","datasourceType":"Microsoft.Compute/disks","resourceName":"cli-test-disk-new","resourceType":"Microsoft.Compute/disks","resourceLocation":"centraluseuap","objectType":"Datasource"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","policyParameters":{"dataStoreParametersList":[{"objectType":"AzureOperationalStoreParameters","dataStoreType":"OperationalStore","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg"}]}},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","name":"cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
@@ -2115,7 +5857,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:00:29 GMT
+ - Tue, 24 May 2022 12:16:23 GMT
expires:
- '-1'
pragma:
@@ -2151,25 +5893,25 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/suspendBackups?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/suspendBackups?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzVjNzk0ZmMxLTk5YjctNGMwNi04ZmYxLTNmNDZmOTEyY2NjZg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2ZkZWUzOGNiLTI3NTUtNDZlNS04MmNhLWZhZjJjNmY4MmZlMQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 07:00:32 GMT
+ - Tue, 24 May 2022 12:16:29 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzVjNzk0ZmMxLTk5YjctNGMwNi04ZmYxLTNmNDZmOTEyY2NjZg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2ZkZWUzOGNiLTI3NTUtNDZlNS04MmNhLWZhZjJjNmY4MmZlMQ==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -2197,12 +5939,12 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzVjNzk0ZmMxLTk5YjctNGMwNi04ZmYxLTNmNDZmOTEyY2NjZg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2ZkZWUzOGNiLTI3NTUtNDZlNS04MmNhLWZhZjJjNmY4MmZlMQ==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzVjNzk0ZmMxLTk5YjctNGMwNi04ZmYxLTNmNDZmOTEyY2NjZg==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzVjNzk0ZmMxLTk5YjctNGMwNi04ZmYxLTNmNDZmOTEyY2NjZg==","status":"Succeeded","startTime":"2022-04-21T07:00:32.1069951Z","endTime":"2022-04-21T07:00:43Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2ZkZWUzOGNiLTI3NTUtNDZlNS04MmNhLWZhZjJjNmY4MmZlMQ==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2ZkZWUzOGNiLTI3NTUtNDZlNS04MmNhLWZhZjJjNmY4MmZlMQ==","status":"Succeeded","startTime":"2022-05-24T12:16:29.1363431Z","endTime":"2022-05-24T12:16:41Z"}'
headers:
cache-control:
- no-cache
@@ -2211,7 +5953,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:00:47 GMT
+ - Tue, 24 May 2022 12:16:45 GMT
expires:
- '-1'
pragma:
@@ -2245,15 +5987,15 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzVjNzk0ZmMxLTk5YjctNGMwNi04ZmYxLTNmNDZmOTEyY2NjZg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2ZkZWUzOGNiLTI3NTUtNDZlNS04MmNhLWZhZjJjNmY4MmZlMQ==?api-version=2022-04-01
response:
body:
string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzVjNzk0ZmMxLTk5YjctNGMwNi04ZmYxLTNmNDZmOTEyY2NjZg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2ZkZWUzOGNiLTI3NTUtNDZlNS04MmNhLWZhZjJjNmY4MmZlMQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -2261,7 +6003,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:00:47 GMT
+ - Tue, 24 May 2022 12:16:45 GMT
expires:
- '-1'
pragma:
@@ -2295,9 +6037,9 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"cli-test-disk-new","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","resourceUri":"","datasourceType":"Microsoft.Compute/disks","resourceName":"cli-test-disk-new","resourceType":"Microsoft.Compute/disks","resourceLocation":"centraluseuap","objectType":"Datasource"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","policyParameters":{"dataStoreParametersList":[{"objectType":"AzureOperationalStoreParameters","dataStoreType":"OperationalStore","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg"}]}},"protectionStatus":{"status":"BackupsSuspended"},"currentProtectionState":"BackupsSuspended","provisioningState":"Succeeded","objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","name":"cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
@@ -2309,7 +6051,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:00:50 GMT
+ - Tue, 24 May 2022 12:16:50 GMT
expires:
- '-1'
pragma:
@@ -2345,25 +6087,25 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/resumeProtection?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/resumeProtection?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzUxMzdiZTRjLTgwZTQtNDhkNy1hYzI2LTUyNWNjY2RlODViNg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhmZTc4YTdkLWZhODUtNDU0Ny05ODk5LWQ3ODNkM2ZhNTZhMw==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 07:00:52 GMT
+ - Tue, 24 May 2022 12:16:53 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzUxMzdiZTRjLTgwZTQtNDhkNy1hYzI2LTUyNWNjY2RlODViNg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhmZTc4YTdkLWZhODUtNDU0Ny05ODk5LWQ3ODNkM2ZhNTZhMw==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -2391,12 +6133,12 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzUxMzdiZTRjLTgwZTQtNDhkNy1hYzI2LTUyNWNjY2RlODViNg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhmZTc4YTdkLWZhODUtNDU0Ny05ODk5LWQ3ODNkM2ZhNTZhMw==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzUxMzdiZTRjLTgwZTQtNDhkNy1hYzI2LTUyNWNjY2RlODViNg==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzUxMzdiZTRjLTgwZTQtNDhkNy1hYzI2LTUyNWNjY2RlODViNg==","status":"Inprogress","startTime":"2022-04-21T07:00:52.8753395Z","endTime":"0001-01-01T00:00:00Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhmZTc4YTdkLWZhODUtNDU0Ny05ODk5LWQ3ODNkM2ZhNTZhMw==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhmZTc4YTdkLWZhODUtNDU0Ny05ODk5LWQ3ODNkM2ZhNTZhMw==","status":"Inprogress","startTime":"2022-05-24T12:16:53.5611604Z","endTime":"0001-01-01T00:00:00Z"}'
headers:
cache-control:
- no-cache
@@ -2405,7 +6147,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:01:07 GMT
+ - Tue, 24 May 2022 12:17:08 GMT
expires:
- '-1'
pragma:
@@ -2439,12 +6181,12 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzUxMzdiZTRjLTgwZTQtNDhkNy1hYzI2LTUyNWNjY2RlODViNg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhmZTc4YTdkLWZhODUtNDU0Ny05ODk5LWQ3ODNkM2ZhNTZhMw==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzUxMzdiZTRjLTgwZTQtNDhkNy1hYzI2LTUyNWNjY2RlODViNg==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzUxMzdiZTRjLTgwZTQtNDhkNy1hYzI2LTUyNWNjY2RlODViNg==","status":"Succeeded","startTime":"2022-04-21T07:00:52.8753395Z","endTime":"2022-04-21T07:01:16Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhmZTc4YTdkLWZhODUtNDU0Ny05ODk5LWQ3ODNkM2ZhNTZhMw==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhmZTc4YTdkLWZhODUtNDU0Ny05ODk5LWQ3ODNkM2ZhNTZhMw==","status":"Succeeded","startTime":"2022-05-24T12:16:53.5611604Z","endTime":"2022-05-24T12:17:26Z"}'
headers:
cache-control:
- no-cache
@@ -2453,7 +6195,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:01:38 GMT
+ - Tue, 24 May 2022 12:17:40 GMT
expires:
- '-1'
pragma:
@@ -2487,15 +6229,15 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzUxMzdiZTRjLTgwZTQtNDhkNy1hYzI2LTUyNWNjY2RlODViNg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhmZTc4YTdkLWZhODUtNDU0Ny05ODk5LWQ3ODNkM2ZhNTZhMw==?api-version=2022-04-01
response:
body:
string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzUxMzdiZTRjLTgwZTQtNDhkNy1hYzI2LTUyNWNjY2RlODViNg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhmZTc4YTdkLWZhODUtNDU0Ny05ODk5LWQ3ODNkM2ZhNTZhMw==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -2503,7 +6245,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:01:38 GMT
+ - Tue, 24 May 2022 12:17:40 GMT
expires:
- '-1'
pragma:
@@ -2537,9 +6279,9 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"cli-test-disk-new","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","resourceUri":"","datasourceType":"Microsoft.Compute/disks","resourceName":"cli-test-disk-new","resourceType":"Microsoft.Compute/disks","resourceLocation":"centraluseuap","objectType":"Datasource"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","policyParameters":{"dataStoreParametersList":[{"objectType":"AzureOperationalStoreParameters","dataStoreType":"OperationalStore","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg"}]}},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","name":"cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
@@ -2551,7 +6293,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:01:40 GMT
+ - Tue, 24 May 2022 12:17:46 GMT
expires:
- '-1'
pragma:
@@ -2590,73 +6332,173 @@ interactions:
ParameterSetName:
- -n -g --vault-name --rule-name --retention-tag-override
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/backup?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/backup?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzE4MDk1YjRmLTg2ZGMtNGI1Ni05ZjdjLTE5YzAwYTcxMGYyMw==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzFmNmUzNDdjLWY0MTItNDdjMC1iMGIxLTRkOTA2NDQ3OTQ1Mg==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 07:01:43 GMT
+ - Tue, 24 May 2022 12:17:52 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzE4MDk1YjRmLTg2ZGMtNGI1Ni05ZjdjLTE5YzAwYTcxMGYyMw==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzFmNmUzNDdjLWY0MTItNDdjMC1iMGIxLTRkOTA2NDQ3OTQ1Mg==?api-version=2022-04-01
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - dataprotection backup-instance adhoc-backup
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --vault-name --rule-name --retention-tag-override
+ User-Agent:
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzFmNmUzNDdjLWY0MTItNDdjMC1iMGIxLTRkOTA2NDQ3OTQ1Mg==?api-version=2022-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzFmNmUzNDdjLWY0MTItNDdjMC1iMGIxLTRkOTA2NDQ3OTQ1Mg==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzFmNmUzNDdjLWY0MTItNDdjMC1iMGIxLTRkOTA2NDQ3OTQ1Mg==","status":"Succeeded","startTime":"2022-05-24T12:17:52.6819272Z","endTime":"2022-05-24T12:17:56Z","properties":{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","objectType":"OperationJobExtendedInfo"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '733'
+ content-type:
+ - application/json
+ date:
+ - Tue, 24 May 2022 12:18:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - dataprotection backup-instance adhoc-backup
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --vault-name --rule-name --retention-tag-override
+ User-Agent:
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzFmNmUzNDdjLWY0MTItNDdjMC1iMGIxLTRkOTA2NDQ3OTQ1Mg==?api-version=2022-04-01
+ response:
+ body:
+ string: '{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","objectType":"OperationJobExtendedInfo"}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzFmNmUzNDdjLWY0MTItNDdjMC1iMGIxLTRkOTA2NDQ3OTQ1Mg==?api-version=2022-04-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '243'
+ content-type:
+ - application/json
+ date:
+ - Tue, 24 May 2022 12:18:23 GMT
+ expires:
+ - '-1'
pragma:
- no-cache
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
x-powered-by:
- ASP.NET
status:
- code: 202
- message: Accepted
+ code: 200
+ message: OK
- request:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-instance adhoc-backup
+ - dataprotection job show
Connection:
- keep-alive
ParameterSetName:
- - -n -g --vault-name --rule-name --retention-tag-override
+ - --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzE4MDk1YjRmLTg2ZGMtNGI1Ni05ZjdjLTE5YzAwYTcxMGYyMw==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzE4MDk1YjRmLTg2ZGMtNGI1Ni05ZjdjLTE5YzAwYTcxMGYyMw==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzE4MDk1YjRmLTg2ZGMtNGI1Ni05ZjdjLTE5YzAwYTcxMGYyMw==","status":"Succeeded","startTime":"2022-04-21T07:01:43.5624967Z","endTime":"2022-04-21T07:01:47Z","properties":{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","objectType":"OperationJobExtendedInfo"}}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '733'
+ - '2101'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:02:13 GMT
+ - Tue, 24 May 2022 12:18:39 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-IIS/10.0
+ - Kestrel
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -2674,39 +6516,39 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-instance adhoc-backup
+ - dataprotection job show
Connection:
- keep-alive
ParameterSetName:
- - -n -g --vault-name --rule-name --retention-tag-override
+ - --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzE4MDk1YjRmLTg2ZGMtNGI1Ni05ZjdjLTE5YzAwYTcxMGYyMw==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","objectType":"OperationJobExtendedInfo"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzE4MDk1YjRmLTg2ZGMtNGI1Ni05ZjdjLTE5YzAwYTcxMGYyMw==?api-version=2022-03-01
cache-control:
- no-cache
content-length:
- - '243'
+ - '2101'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:02:14 GMT
+ - Tue, 24 May 2022 12:18:51 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-IIS/10.0
+ - Kestrel
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -2734,13 +6576,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"e5618181-c140-11ec-aaba-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A01%3A45.9227756Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:01:43.7979492Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","name":"14410a89-4016-4e54-947f-59dd70ec3920","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -2749,7 +6591,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:02:26 GMT
+ - Tue, 24 May 2022 12:19:04 GMT
expires:
- '-1'
pragma:
@@ -2784,13 +6626,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"e5618181-c140-11ec-aaba-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A01%3A45.9227756Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:01:43.7979492Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","name":"14410a89-4016-4e54-947f-59dd70ec3920","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -2799,7 +6641,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:02:37 GMT
+ - Tue, 24 May 2022 12:19:16 GMT
expires:
- '-1'
pragma:
@@ -2834,13 +6676,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"e5618181-c140-11ec-aaba-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A01%3A45.9227756Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:01:43.7979492Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","name":"14410a89-4016-4e54-947f-59dd70ec3920","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -2849,7 +6691,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:02:51 GMT
+ - Tue, 24 May 2022 12:19:32 GMT
expires:
- '-1'
pragma:
@@ -2884,13 +6726,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"e5618181-c140-11ec-aaba-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A01%3A45.9227756Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:01:43.7979492Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","name":"14410a89-4016-4e54-947f-59dd70ec3920","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -2899,7 +6741,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:03:03 GMT
+ - Tue, 24 May 2022 12:19:48 GMT
expires:
- '-1'
pragma:
@@ -2934,13 +6776,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"e5618181-c140-11ec-aaba-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A01%3A45.9227756Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:01:43.7979492Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","name":"14410a89-4016-4e54-947f-59dd70ec3920","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -2949,7 +6791,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:03:14 GMT
+ - Tue, 24 May 2022 12:20:03 GMT
expires:
- '-1'
pragma:
@@ -2984,13 +6826,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"e5618181-c140-11ec-aaba-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A01%3A45.9227756Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:01:43.7979492Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","name":"14410a89-4016-4e54-947f-59dd70ec3920","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -2999,7 +6841,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:03:25 GMT
+ - Tue, 24 May 2022 12:20:19 GMT
expires:
- '-1'
pragma:
@@ -3034,13 +6876,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"e5618181-c140-11ec-aaba-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A01%3A45.9227756Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:01:43.7979492Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","name":"14410a89-4016-4e54-947f-59dd70ec3920","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -3049,7 +6891,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:03:38 GMT
+ - Tue, 24 May 2022 12:20:33 GMT
expires:
- '-1'
pragma:
@@ -3084,13 +6926,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"e5618181-c140-11ec-aaba-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A01%3A45.9227756Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:01:43.7979492Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","name":"14410a89-4016-4e54-947f-59dd70ec3920","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -3099,7 +6941,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:03:50 GMT
+ - Tue, 24 May 2022 12:20:49 GMT
expires:
- '-1'
pragma:
@@ -3134,13 +6976,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"e5618181-c140-11ec-aaba-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A01%3A45.9227756Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:01:43.7979492Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","name":"14410a89-4016-4e54-947f-59dd70ec3920","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -3149,7 +6991,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:04:02 GMT
+ - Tue, 24 May 2022 12:21:05 GMT
expires:
- '-1'
pragma:
@@ -3184,13 +7026,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"e5618181-c140-11ec-aaba-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A01%3A45.9227756Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:01:43.7979492Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","name":"14410a89-4016-4e54-947f-59dd70ec3920","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -3199,7 +7041,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:04:13 GMT
+ - Tue, 24 May 2022 12:21:20 GMT
expires:
- '-1'
pragma:
@@ -3234,22 +7076,22 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"e5618181-c140-11ec-aaba-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":"OperationalTierStore","progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A04%3A22.0890302Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:01:43.7979492Z","endTime":"2022-04-21T07:04:21.6093555Z","dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"Completed","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT2M37.8114063S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"0001-01-01T00:00:00Z"},"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"Completed","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/14410a89-4016-4e54-947f-59dd70ec3920","name":"14410a89-4016-4e54-947f-59dd70ec3920","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '2247'
+ - '2101'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:04:26 GMT
+ - Tue, 24 May 2022 12:21:33 GMT
expires:
- '-1'
pragma:
@@ -3278,33 +7120,35 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection recovery-point list
+ - dataprotection job show
Connection:
- keep-alive
ParameterSetName:
- - --backup-instance-name -g --vault-name
+ - --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/recoveryPoints?api-version=2022-03-01&$filter=
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"value":[{"properties":{"objectType":"AzureBackupDiscreteRecoveryPoint","recoveryPointId":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z","recoveryPointType":"Incremental","friendlyName":"ac700312-71f7-4e3d-832d-19376756146d","recoveryPointDataStoresDetails":[{"id":"2de80484-57d8-4584-913e-b0930e883e9b","type":"OperationalStore","creationTime":"2022-04-21T07:03:39.9685876Z","expiryTime":null,"metaData":null,"visible":true,"state":"COMMITTED","rehydrationExpiryTime":null,"rehydrationStatus":null}],"retentionTagName":"Default","retentionTagVersion":"637861210974676886","policyName":"diskpolicy","policyVersion":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/recoveryPoints/961d598b80c84052b745b27475450e61","name":"961d598b80c84052b745b27475450e61","type":"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints"}]}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '1071'
+ - '2101'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:04:27 GMT
+ - Tue, 24 May 2022 12:21:45 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-IIS/10.0
+ - Kestrel
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -3319,96 +7163,92 @@ interactions:
code: 200
message: OK
- request:
- body: '{"restoreRequestObject": {"objectType": "AzureBackupRecoveryPointBasedRestoreRequest",
- "restoreTargetInfo": {"objectType": "RestoreTargetInfo", "recoveryOption": "FailIfExists",
- "restoreLocation": "centraluseuap", "datasourceInfo": {"datasourceType": "Microsoft.Compute/disks",
- "objectType": "Datasource", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored",
- "resourceLocation": "centraluseuap", "resourceName": "cli-test-disk-new-restored",
- "resourceType": "Microsoft.Compute/disks", "resourceUri": ""}}, "sourceDataStoreType":
- "OperationalStore", "recoveryPointId": "961d598b80c84052b745b27475450e61"}}'
+ body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-instance validate-for-restore
+ - dataprotection job show
Connection:
- keep-alive
- Content-Length:
- - '706'
- Content-Type:
- - application/json
ParameterSetName:
- - -g --vault-name -n --restore-request-object
+ - --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/validateRestore?api-version=2022-03-01
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: ''
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==?api-version=2022-03-01
cache-control:
- no-cache
content-length:
- - '0'
+ - '2101'
+ content-type:
+ - application/json
date:
- - Thu, 21 Apr 2022 07:04:29 GMT
+ - Tue, 24 May 2022 12:22:01 GMT
expires:
- '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==?api-version=2022-03-01
pragma:
- no-cache
+ server:
+ - Microsoft-IIS/10.0
+ - Kestrel
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
x-powered-by:
- ASP.NET
status:
- code: 202
- message: Accepted
+ code: 200
+ message: OK
- request:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-instance validate-for-restore
+ - dataprotection job show
Connection:
- keep-alive
ParameterSetName:
- - -g --vault-name -n --restore-request-object
+ - --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==","status":"Inprogress","startTime":"2022-04-21T07:04:30.1723371Z","endTime":"0001-01-01T00:00:00Z"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '477'
+ - '2101'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:04:40 GMT
+ - Tue, 24 May 2022 12:22:14 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-IIS/10.0
+ - Kestrel
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -3426,37 +7266,39 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-instance validate-for-restore
+ - dataprotection job show
Connection:
- keep-alive
ParameterSetName:
- - -g --vault-name -n --restore-request-object
+ - --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==","status":"Inprogress","startTime":"2022-04-21T07:04:30.1723371Z","endTime":"0001-01-01T00:00:00Z"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A17%3A54.9824534Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '477'
+ - '2101'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:05:10 GMT
+ - Tue, 24 May 2022 12:22:25 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-IIS/10.0
+ - Kestrel
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -3474,37 +7316,39 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-instance validate-for-restore
+ - dataprotection job show
Connection:
- keep-alive
ParameterSetName:
- - -g --vault-name -n --restore-request-object
+ - --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==","status":"Succeeded","startTime":"2022-04-21T07:04:30.1723371Z","endTime":"2022-04-21T07:05:38Z"}'
+ string: '{"properties":{"activityID":"855a4783-db5b-11ec-9917-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":"OperationalTierStore","progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A22%3A28.8779179Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:17:52.9912904Z","endTime":"2022-05-24T12:22:28.3617378Z","dataSourceType":"Microsoft.Compute/disks","operationCategory":"Backup","operation":"Backup","status":"Completed","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT4M35.3704474S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"0001-01-01T00:00:00Z"},"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"Completed","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Default"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/ea9c729c-2f59-44ff-ad12-e30a4705fcf3","name":"ea9c729c-2f59-44ff-ad12-e30a4705fcf3","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '476'
+ - '2247'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:05:41 GMT
+ - Tue, 24 May 2022 12:22:41 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-IIS/10.0
+ - Kestrel
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -3522,33 +7366,31 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-instance validate-for-restore
+ - dataprotection recovery-point list
Connection:
- keep-alive
ParameterSetName:
- - -g --vault-name -n --restore-request-object
+ - --backup-instance-name -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/recoveryPoints?api-version=2022-04-01&$filter=
response:
body:
- string: '{"objectType":"OperationJobExtendedInfo"}'
+ string: '{"value":[{"properties":{"objectType":"AzureBackupDiscreteRecoveryPoint","recoveryPointId":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z","recoveryPointType":"Incremental","friendlyName":"270dfaf2-511e-4cbb-818b-5a1710e01fc5","recoveryPointDataStoresDetails":[{"id":"9d927e2e-3675-46c3-ae7a-23218aa625b1","type":"OperationalStore","creationTime":"2022-05-24T12:19:47.5880771Z","expiryTime":null,"metaData":null,"visible":true,"state":"COMMITTED","rehydrationExpiryTime":null,"rehydrationStatus":null}],"retentionTagName":"Default","retentionTagVersion":"637889912225789592","policyName":"diskpolicy","policyVersion":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/recoveryPoints/e566380dfa7f48bcbb086d5a96387a41","name":"e566380dfa7f48bcbb086d5a96387a41","type":"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints"}]}'
headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2O2YzM2YyNDg3LWQ5ZDItNGMyMi1hYjJlLWEyOTcyZmQ0MjFmZg==?api-version=2022-03-01
cache-control:
- no-cache
content-length:
- - '41'
+ - '1071'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:05:41 GMT
+ - Tue, 24 May 2022 12:22:46 GMT
expires:
- '-1'
pragma:
@@ -3569,48 +7411,48 @@ interactions:
code: 200
message: OK
- request:
- body: '{"objectType": "AzureBackupRecoveryPointBasedRestoreRequest", "restoreTargetInfo":
- {"objectType": "RestoreTargetInfo", "recoveryOption": "FailIfExists", "restoreLocation":
- "centraluseuap", "datasourceInfo": {"datasourceType": "Microsoft.Compute/disks",
+ body: '{"restoreRequestObject": {"objectType": "AzureBackupRecoveryPointBasedRestoreRequest",
+ "restoreTargetInfo": {"objectType": "RestoreTargetInfo", "recoveryOption": "FailIfExists",
+ "restoreLocation": "centraluseuap", "datasourceInfo": {"datasourceType": "Microsoft.Compute/disks",
"objectType": "Datasource", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored",
"resourceLocation": "centraluseuap", "resourceName": "cli-test-disk-new-restored",
"resourceType": "Microsoft.Compute/disks", "resourceUri": ""}}, "sourceDataStoreType":
- "OperationalStore", "recoveryPointId": "961d598b80c84052b745b27475450e61"}'
+ "OperationalStore", "recoveryPointId": "e566380dfa7f48bcbb086d5a96387a41"}}'
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-instance restore trigger
+ - dataprotection backup-instance validate-for-restore
Connection:
- keep-alive
Content-Length:
- - '680'
+ - '706'
Content-Type:
- application/json
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/restore?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/validateRestore?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzIxYzA4OTYyLWY3YzgtNDJlMi1hNWNjLWI0YWVmOWViOTUwYg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 07:05:43 GMT
+ - Tue, 24 May 2022 12:22:49 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzIxYzA4OTYyLWY3YzgtNDJlMi1hNWNjLWI0YWVmOWViOTUwYg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -3632,27 +7474,27 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-instance restore trigger
+ - dataprotection backup-instance validate-for-restore
Connection:
- keep-alive
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzIxYzA4OTYyLWY3YzgtNDJlMi1hNWNjLWI0YWVmOWViOTUwYg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzIxYzA4OTYyLWY3YzgtNDJlMi1hNWNjLWI0YWVmOWViOTUwYg==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzIxYzA4OTYyLWY3YzgtNDJlMi1hNWNjLWI0YWVmOWViOTUwYg==","status":"Succeeded","startTime":"2022-04-21T07:05:44.1132538Z","endTime":"2022-04-21T07:05:46Z","properties":{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","objectType":"OperationJobExtendedInfo"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==","status":"Inprogress","startTime":"2022-05-24T12:22:49.4386343Z","endTime":"0001-01-01T00:00:00Z"}'
headers:
cache-control:
- no-cache
content-length:
- - '733'
+ - '477'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:06:14 GMT
+ - Tue, 24 May 2022 12:23:00 GMT
expires:
- '-1'
pragma:
@@ -3680,29 +7522,27 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-instance restore trigger
+ - dataprotection backup-instance validate-for-restore
Connection:
- keep-alive
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzIxYzA4OTYyLWY3YzgtNDJlMi1hNWNjLWI0YWVmOWViOTUwYg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==?api-version=2022-04-01
response:
body:
- string: '{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","objectType":"OperationJobExtendedInfo"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==","status":"Inprogress","startTime":"2022-05-24T12:22:49.4386343Z","endTime":"0001-01-01T00:00:00Z"}'
headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzIxYzA4OTYyLWY3YzgtNDJlMi1hNWNjLWI0YWVmOWViOTUwYg==?api-version=2022-03-01
cache-control:
- no-cache
content-length:
- - '243'
+ - '477'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:06:14 GMT
+ - Tue, 24 May 2022 12:23:30 GMT
expires:
- '-1'
pragma:
@@ -3726,39 +7566,37 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection job show
+ - dataprotection backup-instance validate-for-restore
Connection:
- keep-alive
ParameterSetName:
- - --ids
+ - -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==","status":"Succeeded","startTime":"2022-05-24T12:22:49.4386343Z","endTime":"2022-05-24T12:23:52Z"}'
headers:
cache-control:
- no-cache
content-length:
- - '2318'
+ - '476'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:06:27 GMT
+ - Tue, 24 May 2022 12:24:01 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-IIS/10.0
- - Kestrel
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -3776,39 +7614,39 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection job show
+ - dataprotection backup-instance validate-for-restore
Connection:
- keep-alive
ParameterSetName:
- - --ids
+ - -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzhjMWQ3ZmUxLTM2N2YtNDhkOS04NmNhLWQ0MmM3MWM3ZjU3Ng==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- - '2318'
+ - '41'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:06:39 GMT
+ - Tue, 24 May 2022 12:24:01 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-IIS/10.0
- - Kestrel
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -3823,42 +7661,96 @@ interactions:
code: 200
message: OK
- request:
- body: null
+ body: '{"objectType": "AzureBackupRecoveryPointBasedRestoreRequest", "restoreTargetInfo":
+ {"objectType": "RestoreTargetInfo", "recoveryOption": "FailIfExists", "restoreLocation":
+ "centraluseuap", "datasourceInfo": {"datasourceType": "Microsoft.Compute/disks",
+ "objectType": "Datasource", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored",
+ "resourceLocation": "centraluseuap", "resourceName": "cli-test-disk-new-restored",
+ "resourceType": "Microsoft.Compute/disks", "resourceUri": ""}}, "sourceDataStoreType":
+ "OperationalStore", "recoveryPointId": "e566380dfa7f48bcbb086d5a96387a41"}'
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection job show
+ - dataprotection backup-instance restore trigger
Connection:
- keep-alive
+ Content-Length:
+ - '680'
+ Content-Type:
+ - application/json
ParameterSetName:
- - --ids
+ - -g --vault-name -n --restore-request-object
+ User-Agent:
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae/restore?api-version=2022-04-01
+ response:
+ body:
+ string: ''
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2Y2MmJiY2JiLWU5ZmYtNDk1Yi1iMjg3LWUzNzA5YjA2N2JkNQ==?api-version=2022-04-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Tue, 24 May 2022 12:24:09 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2Y2MmJiY2JiLWU5ZmYtNDk1Yi1iMjg3LWUzNzA5YjA2N2JkNQ==?api-version=2022-04-01
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - dataprotection backup-instance restore trigger
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2Y2MmJiY2JiLWU5ZmYtNDk1Yi1iMjg3LWUzNzA5YjA2N2JkNQ==?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2Y2MmJiY2JiLWU5ZmYtNDk1Yi1iMjg3LWUzNzA5YjA2N2JkNQ==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2Y2MmJiY2JiLWU5ZmYtNDk1Yi1iMjg3LWUzNzA5YjA2N2JkNQ==","status":"Succeeded","startTime":"2022-05-24T12:24:09.0690372Z","endTime":"2022-05-24T12:24:11Z","properties":{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","objectType":"OperationJobExtendedInfo"}}'
headers:
cache-control:
- no-cache
content-length:
- - '2318'
+ - '733'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:06:50 GMT
+ - Tue, 24 May 2022 12:24:39 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-IIS/10.0
- - Kestrel
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -3876,39 +7768,39 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection job show
+ - dataprotection backup-instance restore trigger
Connection:
- keep-alive
ParameterSetName:
- - --ids
+ - -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2Y2MmJiY2JiLWU5ZmYtNDk1Yi1iMjg3LWUzNzA5YjA2N2JkNQ==?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","objectType":"OperationJobExtendedInfo"}'
headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlO2Y2MmJiY2JiLWU5ZmYtNDk1Yi1iMjg3LWUzNzA5YjA2N2JkNQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- - '2318'
+ - '243'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:07:03 GMT
+ - Tue, 24 May 2022 12:24:40 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-IIS/10.0
- - Kestrel
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -3936,13 +7828,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -3951,7 +7843,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:07:14 GMT
+ - Tue, 24 May 2022 12:24:52 GMT
expires:
- '-1'
pragma:
@@ -3986,13 +7878,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4001,7 +7893,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:07:26 GMT
+ - Tue, 24 May 2022 12:25:08 GMT
expires:
- '-1'
pragma:
@@ -4036,13 +7928,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4051,7 +7943,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:07:38 GMT
+ - Tue, 24 May 2022 12:25:25 GMT
expires:
- '-1'
pragma:
@@ -4086,13 +7978,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4101,7 +7993,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:07:50 GMT
+ - Tue, 24 May 2022 12:25:38 GMT
expires:
- '-1'
pragma:
@@ -4136,13 +8028,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4151,7 +8043,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:08:02 GMT
+ - Tue, 24 May 2022 12:25:49 GMT
expires:
- '-1'
pragma:
@@ -4186,13 +8078,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4201,7 +8093,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:08:14 GMT
+ - Tue, 24 May 2022 12:26:04 GMT
expires:
- '-1'
pragma:
@@ -4236,13 +8128,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4251,7 +8143,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:08:26 GMT
+ - Tue, 24 May 2022 12:26:18 GMT
expires:
- '-1'
pragma:
@@ -4286,13 +8178,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4301,7 +8193,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:08:38 GMT
+ - Tue, 24 May 2022 12:26:34 GMT
expires:
- '-1'
pragma:
@@ -4336,13 +8228,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4351,7 +8243,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:08:51 GMT
+ - Tue, 24 May 2022 12:26:47 GMT
expires:
- '-1'
pragma:
@@ -4386,13 +8278,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4401,7 +8293,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:09:02 GMT
+ - Tue, 24 May 2022 12:26:59 GMT
expires:
- '-1'
pragma:
@@ -4436,13 +8328,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4451,7 +8343,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:09:13 GMT
+ - Tue, 24 May 2022 12:27:11 GMT
expires:
- '-1'
pragma:
@@ -4486,13 +8378,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4501,7 +8393,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:09:25 GMT
+ - Tue, 24 May 2022 12:27:26 GMT
expires:
- '-1'
pragma:
@@ -4536,13 +8428,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4551,7 +8443,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:09:37 GMT
+ - Tue, 24 May 2022 12:27:39 GMT
expires:
- '-1'
pragma:
@@ -4586,13 +8478,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4601,7 +8493,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:09:47 GMT
+ - Tue, 24 May 2022 12:27:50 GMT
expires:
- '-1'
pragma:
@@ -4636,13 +8528,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4651,7 +8543,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:09:59 GMT
+ - Tue, 24 May 2022 12:28:02 GMT
expires:
- '-1'
pragma:
@@ -4686,13 +8578,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4701,7 +8593,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:10:12 GMT
+ - Tue, 24 May 2022 12:28:18 GMT
expires:
- '-1'
pragma:
@@ -4736,13 +8628,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4751,7 +8643,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:10:23 GMT
+ - Tue, 24 May 2022 12:28:33 GMT
expires:
- '-1'
pragma:
@@ -4786,13 +8678,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4801,7 +8693,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:10:35 GMT
+ - Tue, 24 May 2022 12:28:49 GMT
expires:
- '-1'
pragma:
@@ -4836,13 +8728,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4851,7 +8743,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:10:47 GMT
+ - Tue, 24 May 2022 12:29:03 GMT
expires:
- '-1'
pragma:
@@ -4886,13 +8778,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4901,7 +8793,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:10:59 GMT
+ - Tue, 24 May 2022 12:29:17 GMT
expires:
- '-1'
pragma:
@@ -4936,13 +8828,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -4951,7 +8843,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:11:12 GMT
+ - Tue, 24 May 2022 12:29:29 GMT
expires:
- '-1'
pragma:
@@ -4986,13 +8878,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -5001,7 +8893,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:11:23 GMT
+ - Tue, 24 May 2022 12:29:43 GMT
expires:
- '-1'
pragma:
@@ -5036,13 +8928,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -5051,7 +8943,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:11:36 GMT
+ - Tue, 24 May 2022 12:29:55 GMT
expires:
- '-1'
pragma:
@@ -5086,13 +8978,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A05%3A45.1313182Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A24%3A09.8744698Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":null,"dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -5101,7 +8993,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:11:48 GMT
+ - Tue, 24 May 2022 12:30:08 GMT
expires:
- '-1'
pragma:
@@ -5136,13 +9028,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"750c6889-c141-11ec-9e2b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T07%3A11%3A51.4832705Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T07:05:44.7469664Z","endTime":"2022-04-21T07:11:51.2268779Z","dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"Completed","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT6M6.4799115S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"961d598b80c84052b745b27475450e61","recoveryPointTime":"2022-04-21T07:03:39.9685876Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"Completed","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/0814d9f7-483b-44a6-ba96-dc89a334328f","name":"0814d9f7-483b-44a6-ba96-dc89a334328f","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"6585dc27-db5c-11ec-8f68-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupPolicies/diskpolicy","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new","vaultName":"cli-test-new-vault","backupInstanceFriendlyName":"cli-test-disk-new","policyName":"diskpolicy","sourceResourceGroup":"sarath-rg","dataSourceSetName":null,"dataSourceName":"cli-test-disk-new","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T12%3A30%3A13.9589231Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T12:24:09.4879792Z","endTime":"2022-05-24T12:30:13.6888353Z","dataSourceType":"Microsoft.Compute/disks","operationCategory":"Restore","operation":"Restore","status":"Completed","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT6M4.2008561S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"e566380dfa7f48bcbb086d5a96387a41","recoveryPointTime":"2022-05-24T12:19:47.5880771Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"Completed","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupJobs/407a5f43-56ab-417d-ae67-a80687210bad","name":"407a5f43-56ab-417d-ae67-a80687210bad","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -5151,7 +9043,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:11:59 GMT
+ - Tue, 24 May 2022 12:30:21 GMT
expires:
- '-1'
pragma:
@@ -5188,25 +9080,25 @@ interactions:
ParameterSetName:
- -g --vault-name -n --yes
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/backupInstances/cli-test-disk-new-cli-test-disk-new-b7e6f082-b310-11eb-8f55-9cfce85d4fae?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzQyOTM1MDg3LTQ2ZGQtNDU4Mi05N2M2LWIxZjUxZmI4OTk0NQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzU4ZDQxMjk4LTZkYjYtNDJmMS1hMmNkLWNkZGUzMDRlZDQ2NA==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 07:12:02 GMT
+ - Tue, 24 May 2022 12:30:23 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzQyOTM1MDg3LTQ2ZGQtNDU4Mi05N2M2LWIxZjUxZmI4OTk0NQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzU4ZDQxMjk4LTZkYjYtNDJmMS1hMmNkLWNkZGUzMDRlZDQ2NA==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -5234,12 +9126,12 @@ interactions:
ParameterSetName:
- -g --vault-name -n --yes
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzQyOTM1MDg3LTQ2ZGQtNDU4Mi05N2M2LWIxZjUxZmI4OTk0NQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzU4ZDQxMjk4LTZkYjYtNDJmMS1hMmNkLWNkZGUzMDRlZDQ2NA==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzQyOTM1MDg3LTQ2ZGQtNDU4Mi05N2M2LWIxZjUxZmI4OTk0NQ==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzQyOTM1MDg3LTQ2ZGQtNDU4Mi05N2M2LWIxZjUxZmI4OTk0NQ==","status":"Inprogress","startTime":"2022-04-21T07:12:03.2063188Z","endTime":"0001-01-01T00:00:00Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzU4ZDQxMjk4LTZkYjYtNDJmMS1hMmNkLWNkZGUzMDRlZDQ2NA==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzU4ZDQxMjk4LTZkYjYtNDJmMS1hMmNkLWNkZGUzMDRlZDQ2NA==","status":"Inprogress","startTime":"2022-05-24T12:30:23.1786149Z","endTime":"0001-01-01T00:00:00Z"}'
headers:
cache-control:
- no-cache
@@ -5248,7 +9140,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:12:33 GMT
+ - Tue, 24 May 2022 12:30:53 GMT
expires:
- '-1'
pragma:
@@ -5282,12 +9174,12 @@ interactions:
ParameterSetName:
- -g --vault-name -n --yes
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzQyOTM1MDg3LTQ2ZGQtNDU4Mi05N2M2LWIxZjUxZmI4OTk0NQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzU4ZDQxMjk4LTZkYjYtNDJmMS1hMmNkLWNkZGUzMDRlZDQ2NA==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzQyOTM1MDg3LTQ2ZGQtNDU4Mi05N2M2LWIxZjUxZmI4OTk0NQ==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzQyOTM1MDg3LTQ2ZGQtNDU4Mi05N2M2LWIxZjUxZmI4OTk0NQ==","status":"Inprogress","startTime":"2022-04-21T07:12:03.2063188Z","endTime":"0001-01-01T00:00:00Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzU4ZDQxMjk4LTZkYjYtNDJmMS1hMmNkLWNkZGUzMDRlZDQ2NA==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzU4ZDQxMjk4LTZkYjYtNDJmMS1hMmNkLWNkZGUzMDRlZDQ2NA==","status":"Inprogress","startTime":"2022-05-24T12:30:23.1786149Z","endTime":"0001-01-01T00:00:00Z"}'
headers:
cache-control:
- no-cache
@@ -5296,7 +9188,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:13:03 GMT
+ - Tue, 24 May 2022 12:31:24 GMT
expires:
- '-1'
pragma:
@@ -5330,12 +9222,12 @@ interactions:
ParameterSetName:
- -g --vault-name -n --yes
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzQyOTM1MDg3LTQ2ZGQtNDU4Mi05N2M2LWIxZjUxZmI4OTk0NQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzU4ZDQxMjk4LTZkYjYtNDJmMS1hMmNkLWNkZGUzMDRlZDQ2NA==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzQyOTM1MDg3LTQ2ZGQtNDU4Mi05N2M2LWIxZjUxZmI4OTk0NQ==","name":"YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzQyOTM1MDg3LTQ2ZGQtNDU4Mi05N2M2LWIxZjUxZmI4OTk0NQ==","status":"Succeeded","startTime":"2022-04-21T07:12:03.2063188Z","endTime":"2022-04-21T07:13:28Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzU4ZDQxMjk4LTZkYjYtNDJmMS1hMmNkLWNkZGUzMDRlZDQ2NA==","name":"MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzU4ZDQxMjk4LTZkYjYtNDJmMS1hMmNkLWNkZGUzMDRlZDQ2NA==","status":"Succeeded","startTime":"2022-05-24T12:30:23.1786149Z","endTime":"2022-05-24T12:31:29Z"}'
headers:
cache-control:
- no-cache
@@ -5344,7 +9236,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 07:13:34 GMT
+ - Tue, 24 May 2022 12:31:55 GMT
expires:
- '-1'
pragma:
@@ -5364,6 +9256,50 @@ interactions:
status:
code: 200
message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - dataprotection resource-guard delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n -y
+ User-Agent:
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/resourceGuards/cli-test-resource-guard?api-version=2022-04-01
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Tue, 24 May 2022 12:32:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -5380,25 +9316,25 @@ interactions:
ParameterSetName:
- -g --vault-name --yes
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/backupVaults/cli-test-new-vault?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzVmMWExZWEwLWEyOTMtNDI1MC05MDIzLWZiMTJjMGMxNmIxYw==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzZjZDljZTgwLWFlNmYtNDhlZC1hMjA2LWU4NTIwZjNjMTc4ZA==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 07:13:41 GMT
+ - Tue, 24 May 2022 12:32:09 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/YmFlNzE0NDctYTY0NS00NmMzLTkwOWYtYmQwZWJmNmRlNDc2OzVmMWExZWEwLWEyOTMtNDI1MC05MDIzLWZiMTJjMGMxNmIxYw==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/MGIxN2E0MGYtODBkMy00NDFmLWE0YzUtMDMwNTg1ODRlZTFlOzZjZDljZTgwLWFlNmYtNDhlZC1hMjA2LWU4NTIwZjNjMTc4ZA==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -5428,7 +9364,7 @@ interactions:
ParameterSetName:
- --name --resource-group --yes
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new?api-version=2021-12-01
response:
@@ -5436,17 +9372,17 @@ interactions:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/85dee463-5426-4fa3-b01a-f56be42e6311?p=814d4482-f746-4961-be2b-b822c13856d2&api-version=2021-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/99d203a8-3324-459a-9a58-4a6e3f4b4224?p=814d4482-f746-4961-be2b-b822c13856d2&api-version=2021-12-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 07:13:42 GMT
+ - Tue, 24 May 2022 12:32:15 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/85dee463-5426-4fa3-b01a-f56be42e6311?p=814d4482-f746-4961-be2b-b822c13856d2&monitor=true&api-version=2021-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/99d203a8-3324-459a-9a58-4a6e3f4b4224?p=814d4482-f746-4961-be2b-b822c13856d2&monitor=true&api-version=2021-12-01
pragma:
- no-cache
server:
@@ -5457,7 +9393,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/DeleteDisks3Min;2998,Microsoft.Compute/DeleteDisks30Min;23998
+ - Microsoft.Compute/DeleteDisks3Min;2998,Microsoft.Compute/DeleteDisks30Min;23997
x-ms-ratelimit-remaining-subscription-deletes:
- '14999'
status:
@@ -5477,14 +9413,14 @@ interactions:
ParameterSetName:
- --name --resource-group --yes
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/85dee463-5426-4fa3-b01a-f56be42e6311?p=814d4482-f746-4961-be2b-b822c13856d2&api-version=2021-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/99d203a8-3324-459a-9a58-4a6e3f4b4224?p=814d4482-f746-4961-be2b-b822c13856d2&api-version=2021-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2022-04-21T07:13:42.9710181+00:00\",\r\n \"endTime\":
- \"2022-04-21T07:13:43.1585068+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"85dee463-5426-4fa3-b01a-f56be42e6311\"\r\n}"
+ string: "{\r\n \"startTime\": \"2022-05-24T12:32:15.3740329+00:00\",\r\n \"endTime\":
+ \"2022-05-24T12:32:15.5771198+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"99d203a8-3324-459a-9a58-4a6e3f4b4224\"\r\n}"
headers:
cache-control:
- no-cache
@@ -5493,7 +9429,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 21 Apr 2022 07:14:12 GMT
+ - Tue, 24 May 2022 12:32:45 GMT
expires:
- '-1'
pragma:
@@ -5510,7 +9446,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49974,Microsoft.Compute/GetOperation30Min;399959
+ - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399977
status:
code: 200
message: OK
@@ -5530,7 +9466,7 @@ interactions:
ParameterSetName:
- --name --resource-group --yes
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/disks/cli-test-disk-new-restored?api-version=2021-12-01
response:
@@ -5538,17 +9474,17 @@ interactions:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/b0e005ed-b1ab-45b4-94c5-58feff265964?p=814d4482-f746-4961-be2b-b822c13856d2&api-version=2021-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5e610093-aabf-482f-ac18-5c6b9b7e83a4?p=814d4482-f746-4961-be2b-b822c13856d2&api-version=2021-12-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 07:14:18 GMT
+ - Tue, 24 May 2022 12:32:47 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/b0e005ed-b1ab-45b4-94c5-58feff265964?p=814d4482-f746-4961-be2b-b822c13856d2&monitor=true&api-version=2021-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5e610093-aabf-482f-ac18-5c6b9b7e83a4?p=814d4482-f746-4961-be2b-b822c13856d2&monitor=true&api-version=2021-12-01
pragma:
- no-cache
server:
@@ -5559,9 +9495,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/DeleteDisks3Min;2997,Microsoft.Compute/DeleteDisks30Min;23997
+ - Microsoft.Compute/DeleteDisks3Min;2997,Microsoft.Compute/DeleteDisks30Min;23996
x-ms-ratelimit-remaining-subscription-deletes:
- - '14999'
+ - '14998'
status:
code: 202
message: Accepted
@@ -5579,14 +9515,14 @@ interactions:
ParameterSetName:
- --name --resource-group --yes
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/b0e005ed-b1ab-45b4-94c5-58feff265964?p=814d4482-f746-4961-be2b-b822c13856d2&api-version=2021-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5e610093-aabf-482f-ac18-5c6b9b7e83a4?p=814d4482-f746-4961-be2b-b822c13856d2&api-version=2021-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2022-04-21T07:14:18.2706543+00:00\",\r\n \"endTime\":
- \"2022-04-21T07:14:18.4894086+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"b0e005ed-b1ab-45b4-94c5-58feff265964\"\r\n}"
+ string: "{\r\n \"startTime\": \"2022-05-24T12:32:48.3116135+00:00\",\r\n \"endTime\":
+ \"2022-05-24T12:32:48.5459652+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"5e610093-aabf-482f-ac18-5c6b9b7e83a4\"\r\n}"
headers:
cache-control:
- no-cache
@@ -5595,7 +9531,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 21 Apr 2022 07:14:47 GMT
+ - Tue, 24 May 2022 12:33:18 GMT
expires:
- '-1'
pragma:
@@ -5612,7 +9548,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49972,Microsoft.Compute/GetOperation30Min;399957
+ - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399975
status:
code: 200
message: OK
diff --git a/src/dataprotection/azext_dataprotection/tests/latest/recordings/test_dataprotection_oss.yaml b/src/dataprotection/azext_dataprotection/tests/latest/recordings/test_dataprotection_oss.yaml
index 7696335aca6..cccb927a5ee 100644
--- a/src/dataprotection/azext_dataprotection/tests/latest/recordings/test_dataprotection_oss.yaml
+++ b/src/dataprotection/azext_dataprotection/tests/latest/recordings/test_dataprotection_oss.yaml
@@ -28,25 +28,25 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/validateForBackup?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/validateForBackup?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MzNTgwMjUwLWJhYmYtNDEyOS04MGE5LTBmYjdmODUxZGYxMQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzAzZGRjNzAwLTI4NGMtNDc0OC05NGZhLThiNTdlZTE3OThkOQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 09:48:10 GMT
+ - Tue, 24 May 2022 13:39:29 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MzNTgwMjUwLWJhYmYtNDEyOS04MGE5LTBmYjdmODUxZGYxMQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzAzZGRjNzAwLTI4NGMtNDc0OC05NGZhLThiNTdlZTE3OThkOQ==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -74,21 +74,21 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MzNTgwMjUwLWJhYmYtNDEyOS04MGE5LTBmYjdmODUxZGYxMQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzAzZGRjNzAwLTI4NGMtNDc0OC05NGZhLThiNTdlZTE3OThkOQ==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MzNTgwMjUwLWJhYmYtNDEyOS04MGE5LTBmYjdmODUxZGYxMQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MzNTgwMjUwLWJhYmYtNDEyOS04MGE5LTBmYjdmODUxZGYxMQ==","status":"Inprogress","startTime":"2022-04-21T09:48:09.9054824Z","endTime":"0001-01-01T00:00:00Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzAzZGRjNzAwLTI4NGMtNDc0OC05NGZhLThiNTdlZTE3OThkOQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzAzZGRjNzAwLTI4NGMtNDc0OC05NGZhLThiNTdlZTE3OThkOQ==","status":"Inprogress","startTime":"2022-05-24T13:39:29.5646Z","endTime":"0001-01-01T00:00:00Z"}'
headers:
cache-control:
- no-cache
content-length:
- - '481'
+ - '478'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:48:20 GMT
+ - Tue, 24 May 2022 13:39:40 GMT
expires:
- '-1'
pragma:
@@ -122,21 +122,21 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MzNTgwMjUwLWJhYmYtNDEyOS04MGE5LTBmYjdmODUxZGYxMQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzAzZGRjNzAwLTI4NGMtNDc0OC05NGZhLThiNTdlZTE3OThkOQ==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MzNTgwMjUwLWJhYmYtNDEyOS04MGE5LTBmYjdmODUxZGYxMQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MzNTgwMjUwLWJhYmYtNDEyOS04MGE5LTBmYjdmODUxZGYxMQ==","status":"Succeeded","startTime":"2022-04-21T09:48:09.9054824Z","endTime":"2022-04-21T09:48:32Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzAzZGRjNzAwLTI4NGMtNDc0OC05NGZhLThiNTdlZTE3OThkOQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzAzZGRjNzAwLTI4NGMtNDc0OC05NGZhLThiNTdlZTE3OThkOQ==","status":"Succeeded","startTime":"2022-05-24T13:39:29.5646Z","endTime":"2022-05-24T13:39:41Z"}'
headers:
cache-control:
- no-cache
content-length:
- - '480'
+ - '477'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:48:50 GMT
+ - Tue, 24 May 2022 13:40:10 GMT
expires:
- '-1'
pragma:
@@ -170,15 +170,15 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MzNTgwMjUwLWJhYmYtNDEyOS04MGE5LTBmYjdmODUxZGYxMQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzAzZGRjNzAwLTI4NGMtNDc0OC05NGZhLThiNTdlZTE3OThkOQ==?api-version=2022-04-01
response:
body:
string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MzNTgwMjUwLWJhYmYtNDEyOS04MGE5LTBmYjdmODUxZGYxMQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzAzZGRjNzAwLTI4NGMtNDc0OC05NGZhLThiNTdlZTE3OThkOQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -186,7 +186,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:48:50 GMT
+ - Tue, 24 May 2022 13:40:10 GMT
expires:
- '-1'
pragma:
@@ -235,15 +235,15 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy"},"protectionStatus":{"status":"ConfiguringProtection"},"currentProtectionState":"ConfiguringProtection","provisioningState":"Provisioning","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzFmMjgyMTJlLTllNzYtNDc3ZC04MTU3LTlhMTNmZTkxYTk2NQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2QzY2QyZWNhLWZjM2QtNDFmYS1hZDVhLTFkODJkNWYxZDQ1OA==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -251,7 +251,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:48:51 GMT
+ - Tue, 24 May 2022 13:40:12 GMT
expires:
- '-1'
pragma:
@@ -283,12 +283,12 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzFmMjgyMTJlLTllNzYtNDc3ZC04MTU3LTlhMTNmZTkxYTk2NQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2QzY2QyZWNhLWZjM2QtNDFmYS1hZDVhLTFkODJkNWYxZDQ1OA==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzFmMjgyMTJlLTllNzYtNDc3ZC04MTU3LTlhMTNmZTkxYTk2NQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzFmMjgyMTJlLTllNzYtNDc3ZC04MTU3LTlhMTNmZTkxYTk2NQ==","status":"Succeeded","startTime":"2022-04-21T09:48:52.2156984Z","endTime":"2022-04-21T09:48:53Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2QzY2QyZWNhLWZjM2QtNDFmYS1hZDVhLTFkODJkNWYxZDQ1OA==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2QzY2QyZWNhLWZjM2QtNDFmYS1hZDVhLTFkODJkNWYxZDQ1OA==","status":"Succeeded","startTime":"2022-05-24T13:40:13.0567586Z","endTime":"2022-05-24T13:40:15Z"}'
headers:
cache-control:
- no-cache
@@ -297,7 +297,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:49:06 GMT
+ - Tue, 24 May 2022 13:40:28 GMT
expires:
- '-1'
pragma:
@@ -331,9 +331,9 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy"},"protectionStatus":{"status":"ConfiguringProtection"},"currentProtectionState":"ConfiguringProtection","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
@@ -345,55 +345,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:49:07 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - dataprotection backup-instance list
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --vault-name --query
- User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances?api-version=2022-03-01
- response:
- body:
- string: '{"value":[{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy"},"protectionStatus":{"status":"ConfiguringProtection"},"currentProtectionState":"ConfiguringProtection","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}]}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1889'
- content-type:
- - application/json
- date:
- - Thu, 21 Apr 2022 09:49:10 GMT
+ - Tue, 24 May 2022 13:40:28 GMT
expires:
- '-1'
pragma:
@@ -427,9 +379,9 @@ interactions:
ParameterSetName:
- -g --vault-name --query
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances?api-version=2022-04-01
response:
body:
string: '{"value":[{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy"},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}]}'
@@ -441,7 +393,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:49:21 GMT
+ - Tue, 24 May 2022 13:40:35 GMT
expires:
- '-1'
pragma:
@@ -475,9 +427,9 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance-name --policy-id --query
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy"},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
@@ -489,7 +441,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:49:54 GMT
+ - Tue, 24 May 2022 13:41:09 GMT
expires:
- '-1'
pragma:
@@ -539,15 +491,15 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance-name --policy-id --query
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy"},"protectionStatus":{"status":"UpdatingProtection"},"currentProtectionState":"UpdatingProtection","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2NjM2IxNGU5LWQyOGItNDNjZC1iZDQyLTJjZDU1NTBlNTEwZQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2FmYzIzZDAzLTZmZDEtNGY5ZS04OWQwLTA1OTI5MzhiMzJjYQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -555,7 +507,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:49:55 GMT
+ - Tue, 24 May 2022 13:41:12 GMT
expires:
- '-1'
pragma:
@@ -587,12 +539,12 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance-name --policy-id --query
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2NjM2IxNGU5LWQyOGItNDNjZC1iZDQyLTJjZDU1NTBlNTEwZQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2FmYzIzZDAzLTZmZDEtNGY5ZS04OWQwLTA1OTI5MzhiMzJjYQ==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2NjM2IxNGU5LWQyOGItNDNjZC1iZDQyLTJjZDU1NTBlNTEwZQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2NjM2IxNGU5LWQyOGItNDNjZC1iZDQyLTJjZDU1NTBlNTEwZQ==","status":"Succeeded","startTime":"2022-04-21T09:49:55.6327404Z","endTime":"2022-04-21T09:49:56Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2FmYzIzZDAzLTZmZDEtNGY5ZS04OWQwLTA1OTI5MzhiMzJjYQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2FmYzIzZDAzLTZmZDEtNGY5ZS04OWQwLTA1OTI5MzhiMzJjYQ==","status":"Succeeded","startTime":"2022-05-24T13:41:12.9811754Z","endTime":"2022-05-24T13:41:13Z"}'
headers:
cache-control:
- no-cache
@@ -601,7 +553,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:50:10 GMT
+ - Tue, 24 May 2022 13:41:28 GMT
expires:
- '-1'
pragma:
@@ -635,9 +587,9 @@ interactions:
ParameterSetName:
- -g --vault-name --backup-instance-name --policy-id --query
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2"},"protectionStatus":{"status":"UpdatingProtection"},"currentProtectionState":"UpdatingProtection","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
@@ -649,7 +601,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:50:11 GMT
+ - Tue, 24 May 2022 13:41:28 GMT
expires:
- '-1'
pragma:
@@ -683,9 +635,9 @@ interactions:
ParameterSetName:
- -g --vault-name --query
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances?api-version=2022-04-01
response:
body:
string: '{"value":[{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2"},"protectionStatus":{"status":"UpdatingProtection"},"currentProtectionState":"UpdatingProtection","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}]}'
@@ -697,7 +649,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:50:23 GMT
+ - Tue, 24 May 2022 13:41:43 GMT
expires:
- '-1'
pragma:
@@ -731,57 +683,9 @@ interactions:
ParameterSetName:
- -g --vault-name --query
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances?api-version=2022-03-01
- response:
- body:
- string: '{"value":[{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2"},"protectionStatus":{"status":"UpdatingProtection"},"currentProtectionState":"UpdatingProtection","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}]}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1884'
- content-type:
- - application/json
- date:
- - Thu, 21 Apr 2022 09:50:35 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - dataprotection backup-instance list
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --vault-name --query
- User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances?api-version=2022-04-01
response:
body:
string: '{"value":[{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2"},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}]}'
@@ -793,7 +697,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:50:46 GMT
+ - Tue, 24 May 2022 13:41:59 GMT
expires:
- '-1'
pragma:
@@ -829,25 +733,25 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/stopProtection?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/stopProtection?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzY1Yzc4NzNiLTAxMjktNGUxYi1iNjY1LTgzNTk5M2I5MWM0MA==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2U3ZDRjZTEzLTkxNjktNGE2ZS04ODU1LWJkNzE2ZmM1M2Q4NQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 09:51:19 GMT
+ - Tue, 24 May 2022 13:42:34 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzY1Yzc4NzNiLTAxMjktNGUxYi1iNjY1LTgzNTk5M2I5MWM0MA==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2U3ZDRjZTEzLTkxNjktNGE2ZS04ODU1LWJkNzE2ZmM1M2Q4NQ==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -875,12 +779,12 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzY1Yzc4NzNiLTAxMjktNGUxYi1iNjY1LTgzNTk5M2I5MWM0MA==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2U3ZDRjZTEzLTkxNjktNGE2ZS04ODU1LWJkNzE2ZmM1M2Q4NQ==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzY1Yzc4NzNiLTAxMjktNGUxYi1iNjY1LTgzNTk5M2I5MWM0MA==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzY1Yzc4NzNiLTAxMjktNGUxYi1iNjY1LTgzNTk5M2I5MWM0MA==","status":"Succeeded","startTime":"2022-04-21T09:51:19.5011328Z","endTime":"2022-04-21T09:51:32Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2U3ZDRjZTEzLTkxNjktNGE2ZS04ODU1LWJkNzE2ZmM1M2Q4NQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2U3ZDRjZTEzLTkxNjktNGE2ZS04ODU1LWJkNzE2ZmM1M2Q4NQ==","status":"Succeeded","startTime":"2022-05-24T13:42:34.9701927Z","endTime":"2022-05-24T13:42:48Z"}'
headers:
cache-control:
- no-cache
@@ -889,7 +793,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:51:34 GMT
+ - Tue, 24 May 2022 13:42:52 GMT
expires:
- '-1'
pragma:
@@ -923,15 +827,15 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzY1Yzc4NzNiLTAxMjktNGUxYi1iNjY1LTgzNTk5M2I5MWM0MA==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2U3ZDRjZTEzLTkxNjktNGE2ZS04ODU1LWJkNzE2ZmM1M2Q4NQ==?api-version=2022-04-01
response:
body:
string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzY1Yzc4NzNiLTAxMjktNGUxYi1iNjY1LTgzNTk5M2I5MWM0MA==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2U3ZDRjZTEzLTkxNjktNGE2ZS04ODU1LWJkNzE2ZmM1M2Q4NQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -939,7 +843,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:51:34 GMT
+ - Tue, 24 May 2022 13:42:52 GMT
expires:
- '-1'
pragma:
@@ -973,9 +877,9 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2"},"protectionStatus":{"status":"ProtectionStopped"},"currentProtectionState":"ProtectionStopped","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
@@ -987,7 +891,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:51:36 GMT
+ - Tue, 24 May 2022 13:42:53 GMT
expires:
- '-1'
pragma:
@@ -1023,25 +927,25 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/resumeProtection?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/resumeProtection?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiMDMzYWFjLTc0YzAtNDVhMS04MjFhLTg3NTk2ZDg5YjRmNQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MxNGI1ZmY5LTU3YTctNGEyZS1hZGFlLTJmNTVmOGU5ZjRlNQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 09:51:40 GMT
+ - Tue, 24 May 2022 13:42:58 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiMDMzYWFjLTc0YzAtNDVhMS04MjFhLTg3NTk2ZDg5YjRmNQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MxNGI1ZmY5LTU3YTctNGEyZS1hZGFlLTJmNTVmOGU5ZjRlNQ==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -1069,12 +973,12 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiMDMzYWFjLTc0YzAtNDVhMS04MjFhLTg3NTk2ZDg5YjRmNQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MxNGI1ZmY5LTU3YTctNGEyZS1hZGFlLTJmNTVmOGU5ZjRlNQ==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiMDMzYWFjLTc0YzAtNDVhMS04MjFhLTg3NTk2ZDg5YjRmNQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiMDMzYWFjLTc0YzAtNDVhMS04MjFhLTg3NTk2ZDg5YjRmNQ==","status":"Inprogress","startTime":"2022-04-21T09:51:40.518911Z","endTime":"0001-01-01T00:00:00Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MxNGI1ZmY5LTU3YTctNGEyZS1hZGFlLTJmNTVmOGU5ZjRlNQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MxNGI1ZmY5LTU3YTctNGEyZS1hZGFlLTJmNTVmOGU5ZjRlNQ==","status":"Succeeded","startTime":"2022-05-24T13:42:59.0205425Z","endTime":"2022-05-24T13:43:12Z"}'
headers:
cache-control:
- no-cache
@@ -1083,7 +987,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:51:55 GMT
+ - Tue, 24 May 2022 13:43:15 GMT
expires:
- '-1'
pragma:
@@ -1117,21 +1021,23 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiMDMzYWFjLTc0YzAtNDVhMS04MjFhLTg3NTk2ZDg5YjRmNQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MxNGI1ZmY5LTU3YTctNGEyZS1hZGFlLTJmNTVmOGU5ZjRlNQ==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiMDMzYWFjLTc0YzAtNDVhMS04MjFhLTg3NTk2ZDg5YjRmNQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiMDMzYWFjLTc0YzAtNDVhMS04MjFhLTg3NTk2ZDg5YjRmNQ==","status":"Succeeded","startTime":"2022-04-21T09:51:40.518911Z","endTime":"2022-04-21T09:52:04Z"}'
+ string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2MxNGI1ZmY5LTU3YTctNGEyZS1hZGFlLTJmNTVmOGU5ZjRlNQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- - '479'
+ - '41'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:52:26 GMT
+ - Tue, 24 May 2022 13:43:15 GMT
expires:
- '-1'
pragma:
@@ -1155,33 +1061,31 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-instance resume-protection
+ - dataprotection backup-instance show
Connection:
- keep-alive
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiMDMzYWFjLTc0YzAtNDVhMS04MjFhLTg3NTk2ZDg5YjRmNQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-04-01
response:
body:
- string: '{"objectType":"OperationJobExtendedInfo"}'
+ string: '{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2"},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiMDMzYWFjLTc0YzAtNDVhMS04MjFhLTg3NTk2ZDg5YjRmNQ==?api-version=2022-03-01
cache-control:
- no-cache
content-length:
- - '41'
+ - '1876'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:52:26 GMT
+ - Tue, 24 May 2022 13:43:20 GMT
expires:
- '-1'
pragma:
@@ -1209,94 +1113,94 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - dataprotection backup-instance show
+ - dataprotection backup-instance suspend-backup
Connection:
- keep-alive
+ Content-Length:
+ - '0'
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-03-01
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/suspendBackups?api-version=2022-04-01
response:
body:
- string: '{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2"},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
+ string: ''
headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiZDc5ZWFhLWY5NTMtNDZhZi04ZDc5LTQ2OTc1NjIxMzQ2Yg==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- - '1876'
- content-type:
- - application/json
+ - '0'
date:
- - Thu, 21 Apr 2022 09:52:28 GMT
+ - Tue, 24 May 2022 13:43:26 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiZDc5ZWFhLWY5NTMtNDZhZi04ZDc5LTQ2OTc1NjIxMzQ2Yg==?api-version=2022-04-01
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 202
+ message: Accepted
- request:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- dataprotection backup-instance suspend-backup
Connection:
- keep-alive
- Content-Length:
- - '0'
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/suspendBackups?api-version=2022-03-01
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiZDc5ZWFhLWY5NTMtNDZhZi04ZDc5LTQ2OTc1NjIxMzQ2Yg==?api-version=2022-04-01
response:
body:
- string: ''
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiZDc5ZWFhLWY5NTMtNDZhZi04ZDc5LTQ2OTc1NjIxMzQ2Yg==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiZDc5ZWFhLWY5NTMtNDZhZi04ZDc5LTQ2OTc1NjIxMzQ2Yg==","status":"Inprogress","startTime":"2022-05-24T13:43:25.9633892Z","endTime":"0001-01-01T00:00:00Z"}'
headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzQzOTA0ZmNmLWVkMmEtNDJhZS1hNTBkLTU0MDdkMTM0ZDNhNA==?api-version=2022-03-01
cache-control:
- no-cache
content-length:
- - '0'
+ - '481'
+ content-type:
+ - application/json
date:
- - Thu, 21 Apr 2022 09:52:31 GMT
+ - Tue, 24 May 2022 13:43:41 GMT
expires:
- '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzQzOTA0ZmNmLWVkMmEtNDJhZS1hNTBkLTU0MDdkMTM0ZDNhNA==?api-version=2022-03-01
pragma:
- no-cache
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
x-powered-by:
- ASP.NET
status:
- code: 202
- message: Accepted
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -1311,12 +1215,12 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzQzOTA0ZmNmLWVkMmEtNDJhZS1hNTBkLTU0MDdkMTM0ZDNhNA==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiZDc5ZWFhLWY5NTMtNDZhZi04ZDc5LTQ2OTc1NjIxMzQ2Yg==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzQzOTA0ZmNmLWVkMmEtNDJhZS1hNTBkLTU0MDdkMTM0ZDNhNA==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzQzOTA0ZmNmLWVkMmEtNDJhZS1hNTBkLTU0MDdkMTM0ZDNhNA==","status":"Succeeded","startTime":"2022-04-21T09:52:31.8050537Z","endTime":"2022-04-21T09:52:43Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiZDc5ZWFhLWY5NTMtNDZhZi04ZDc5LTQ2OTc1NjIxMzQ2Yg==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiZDc5ZWFhLWY5NTMtNDZhZi04ZDc5LTQ2OTc1NjIxMzQ2Yg==","status":"Succeeded","startTime":"2022-05-24T13:43:25.9633892Z","endTime":"2022-05-24T13:43:49Z"}'
headers:
cache-control:
- no-cache
@@ -1325,7 +1229,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:52:46 GMT
+ - Tue, 24 May 2022 13:44:12 GMT
expires:
- '-1'
pragma:
@@ -1359,15 +1263,15 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzQzOTA0ZmNmLWVkMmEtNDJhZS1hNTBkLTU0MDdkMTM0ZDNhNA==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiZDc5ZWFhLWY5NTMtNDZhZi04ZDc5LTQ2OTc1NjIxMzQ2Yg==?api-version=2022-04-01
response:
body:
string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzQzOTA0ZmNmLWVkMmEtNDJhZS1hNTBkLTU0MDdkMTM0ZDNhNA==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiZDc5ZWFhLWY5NTMtNDZhZi04ZDc5LTQ2OTc1NjIxMzQ2Yg==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -1375,7 +1279,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:52:47 GMT
+ - Tue, 24 May 2022 13:44:12 GMT
expires:
- '-1'
pragma:
@@ -1409,9 +1313,9 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2"},"protectionStatus":{"status":"BackupsSuspended"},"currentProtectionState":"BackupsSuspended","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
@@ -1423,7 +1327,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:52:49 GMT
+ - Tue, 24 May 2022 13:44:17 GMT
expires:
- '-1'
pragma:
@@ -1459,25 +1363,25 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/resumeProtection?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/resumeProtection?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2UxZjlhOGE5LWU5NDktNDhlZC1hZjZhLWFmZTZjMjAwZTVkMA==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2JlY2YwMmViLTk1MGYtNDlhZC1iYzdlLTkxNzYzMjZjY2Q1Mg==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 09:52:52 GMT
+ - Tue, 24 May 2022 13:44:24 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2UxZjlhOGE5LWU5NDktNDhlZC1hZjZhLWFmZTZjMjAwZTVkMA==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2JlY2YwMmViLTk1MGYtNDlhZC1iYzdlLTkxNzYzMjZjY2Q1Mg==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -1505,12 +1409,12 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2UxZjlhOGE5LWU5NDktNDhlZC1hZjZhLWFmZTZjMjAwZTVkMA==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2JlY2YwMmViLTk1MGYtNDlhZC1iYzdlLTkxNzYzMjZjY2Q1Mg==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2UxZjlhOGE5LWU5NDktNDhlZC1hZjZhLWFmZTZjMjAwZTVkMA==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2UxZjlhOGE5LWU5NDktNDhlZC1hZjZhLWFmZTZjMjAwZTVkMA==","status":"Succeeded","startTime":"2022-04-21T09:52:52.4429513Z","endTime":"2022-04-21T09:53:04Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2JlY2YwMmViLTk1MGYtNDlhZC1iYzdlLTkxNzYzMjZjY2Q1Mg==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2JlY2YwMmViLTk1MGYtNDlhZC1iYzdlLTkxNzYzMjZjY2Q1Mg==","status":"Succeeded","startTime":"2022-05-24T13:44:23.9459486Z","endTime":"2022-05-24T13:44:36Z"}'
headers:
cache-control:
- no-cache
@@ -1519,7 +1423,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:53:07 GMT
+ - Tue, 24 May 2022 13:44:40 GMT
expires:
- '-1'
pragma:
@@ -1553,15 +1457,15 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2UxZjlhOGE5LWU5NDktNDhlZC1hZjZhLWFmZTZjMjAwZTVkMA==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2JlY2YwMmViLTk1MGYtNDlhZC1iYzdlLTkxNzYzMjZjY2Q1Mg==?api-version=2022-04-01
response:
body:
string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2UxZjlhOGE5LWU5NDktNDhlZC1hZjZhLWFmZTZjMjAwZTVkMA==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2JlY2YwMmViLTk1MGYtNDlhZC1iYzdlLTkxNzYzMjZjY2Q1Mg==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -1569,7 +1473,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:53:07 GMT
+ - Tue, 24 May 2022 13:44:40 GMT
expires:
- '-1'
pragma:
@@ -1603,9 +1507,9 @@ interactions:
ParameterSetName:
- -n -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-04-01
response:
body:
string: '{"properties":{"friendlyName":"oss-clitest-server\\postgres","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"postgres","resourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceLocation":"centraluseuap","objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server","resourceUri":"","datasourceType":"Microsoft.DBforPostgreSQL/servers/databases","resourceName":"oss-clitest-server","resourceType":"Microsoft.DBforPostgreSQL/servers","resourceLocation":"centraluseuap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2"},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","datasourceAuthCredentials":{"objectType":"SecretStoreBasedAuthCredentials","secretStoreResource":{"uri":"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret","secretStoreType":"AzureKeyVault","value":null}},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","name":"oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","type":"Microsoft.DataProtection/backupVaults/backupInstances"}'
@@ -1617,7 +1521,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:53:10 GMT
+ - Tue, 24 May 2022 13:44:41 GMT
expires:
- '-1'
pragma:
@@ -1656,25 +1560,25 @@ interactions:
ParameterSetName:
- -n -g --vault-name --rule-name --retention-tag-override
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/backup?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/backup?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhmZDFmMWIwLWQzZjktNDFjMS05MTY3LWQ4NGFjMjViZjU3Zg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzVhNzUzNmI4LTI1ODUtNDNjYS04NzdiLTNhZDY4ZTcxZjIxZQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 09:53:12 GMT
+ - Tue, 24 May 2022 13:44:42 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhmZDFmMWIwLWQzZjktNDFjMS05MTY3LWQ4NGFjMjViZjU3Zg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzVhNzUzNmI4LTI1ODUtNDNjYS04NzdiLTNhZDY4ZTcxZjIxZQ==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -1682,7 +1586,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -1702,12 +1606,12 @@ interactions:
ParameterSetName:
- -n -g --vault-name --rule-name --retention-tag-override
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhmZDFmMWIwLWQzZjktNDFjMS05MTY3LWQ4NGFjMjViZjU3Zg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzVhNzUzNmI4LTI1ODUtNDNjYS04NzdiLTNhZDY4ZTcxZjIxZQ==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhmZDFmMWIwLWQzZjktNDFjMS05MTY3LWQ4NGFjMjViZjU3Zg==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhmZDFmMWIwLWQzZjktNDFjMS05MTY3LWQ4NGFjMjViZjU3Zg==","status":"Succeeded","startTime":"2022-04-21T09:53:12.7057481Z","endTime":"2022-04-21T09:53:14Z","properties":{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/oss-clitest-rg/providers/Microsoft.DataProtection/BackupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0","objectType":"OperationJobExtendedInfo"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzVhNzUzNmI4LTI1ODUtNDNjYS04NzdiLTNhZDY4ZTcxZjIxZQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzVhNzUzNmI4LTI1ODUtNDNjYS04NzdiLTNhZDY4ZTcxZjIxZQ==","status":"Succeeded","startTime":"2022-05-24T13:44:43.4794799Z","endTime":"2022-05-24T13:44:45Z","properties":{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/oss-clitest-rg/providers/Microsoft.DataProtection/BackupVaults/oss-clitest-vault/backupJobs/67699a4b-9eeb-4ce6-933a-d7dab4edcb2d","objectType":"OperationJobExtendedInfo"}}'
headers:
cache-control:
- no-cache
@@ -1716,7 +1620,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:53:43 GMT
+ - Tue, 24 May 2022 13:45:13 GMT
expires:
- '-1'
pragma:
@@ -1750,15 +1654,15 @@ interactions:
ParameterSetName:
- -n -g --vault-name --rule-name --retention-tag-override
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhmZDFmMWIwLWQzZjktNDFjMS05MTY3LWQ4NGFjMjViZjU3Zg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzVhNzUzNmI4LTI1ODUtNDNjYS04NzdiLTNhZDY4ZTcxZjIxZQ==?api-version=2022-04-01
response:
body:
- string: '{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/oss-clitest-rg/providers/Microsoft.DataProtection/BackupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0","objectType":"OperationJobExtendedInfo"}'
+ string: '{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/oss-clitest-rg/providers/Microsoft.DataProtection/BackupVaults/oss-clitest-vault/backupJobs/67699a4b-9eeb-4ce6-933a-d7dab4edcb2d","objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhmZDFmMWIwLWQzZjktNDFjMS05MTY3LWQ4NGFjMjViZjU3Zg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzVhNzUzNmI4LTI1ODUtNDNjYS04NzdiLTNhZDY4ZTcxZjIxZQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -1766,7 +1670,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:53:43 GMT
+ - Tue, 24 May 2022 13:45:14 GMT
expires:
- '-1'
pragma:
@@ -1800,13 +1704,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/67699a4b-9eeb-4ce6-933a-d7dab4edcb2d?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"da6cadea-c158-11ec-8ae7-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A53%3A13.3683704Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:53:12.9002044Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Weekly"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0","name":"f43c6d09-98aa-4e16-b803-dfbca21808f0","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"aa1d3fce-db67-11ec-aba6-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A44%3A44.2285668Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:44:43.6758807Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Weekly"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/67699a4b-9eeb-4ce6-933a-d7dab4edcb2d","name":"67699a4b-9eeb-4ce6-933a-d7dab4edcb2d","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -1815,7 +1719,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:53:55 GMT
+ - Tue, 24 May 2022 13:45:26 GMT
expires:
- '-1'
pragma:
@@ -1850,13 +1754,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/67699a4b-9eeb-4ce6-933a-d7dab4edcb2d?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"da6cadea-c158-11ec-8ae7-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A53%3A13.3683704Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:53:12.9002044Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Weekly"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0","name":"f43c6d09-98aa-4e16-b803-dfbca21808f0","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"aa1d3fce-db67-11ec-aba6-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A44%3A44.2285668Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:44:43.6758807Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Weekly"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/67699a4b-9eeb-4ce6-933a-d7dab4edcb2d","name":"67699a4b-9eeb-4ce6-933a-d7dab4edcb2d","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -1865,7 +1769,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:54:08 GMT
+ - Tue, 24 May 2022 13:45:40 GMT
expires:
- '-1'
pragma:
@@ -1900,13 +1804,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/67699a4b-9eeb-4ce6-933a-d7dab4edcb2d?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"da6cadea-c158-11ec-8ae7-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A53%3A13.3683704Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:53:12.9002044Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Weekly"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0","name":"f43c6d09-98aa-4e16-b803-dfbca21808f0","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"aa1d3fce-db67-11ec-aba6-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A44%3A44.2285668Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:44:43.6758807Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Weekly"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/67699a4b-9eeb-4ce6-933a-d7dab4edcb2d","name":"67699a4b-9eeb-4ce6-933a-d7dab4edcb2d","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -1915,7 +1819,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:54:19 GMT
+ - Tue, 24 May 2022 13:45:52 GMT
expires:
- '-1'
pragma:
@@ -1950,13 +1854,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/67699a4b-9eeb-4ce6-933a-d7dab4edcb2d?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"da6cadea-c158-11ec-8ae7-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A53%3A13.3683704Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:53:12.9002044Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Weekly"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0","name":"f43c6d09-98aa-4e16-b803-dfbca21808f0","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"aa1d3fce-db67-11ec-aba6-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A44%3A44.2285668Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:44:43.6758807Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Weekly"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/67699a4b-9eeb-4ce6-933a-d7dab4edcb2d","name":"67699a4b-9eeb-4ce6-933a-d7dab4edcb2d","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -1965,7 +1869,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:54:31 GMT
+ - Tue, 24 May 2022 13:46:05 GMT
expires:
- '-1'
pragma:
@@ -2000,72 +1904,22 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/67699a4b-9eeb-4ce6-933a-d7dab4edcb2d?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"da6cadea-c158-11ec-8ae7-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A53%3A13.3683704Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:53:12.9002044Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Backup","operation":"Backup","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Weekly"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0","name":"f43c6d09-98aa-4e16-b803-dfbca21808f0","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"aa1d3fce-db67-11ec-aba6-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A46%3A18.0464324Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:44:43.6758807Z","endTime":"2022-05-24T13:46:17.835625Z","dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Backup","operation":"Backup","status":"Completed","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT1M34.1597443S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":{"recoveryPointID":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"0001-01-01T00:00:00Z"},"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
+ Backup","taskStatus":"Completed","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Weekly"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/67699a4b-9eeb-4ce6-933a-d7dab4edcb2d","name":"67699a4b-9eeb-4ce6-933a-d7dab4edcb2d","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '2199'
+ - '2326'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:54:42 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- - Kestrel
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - dataprotection job show
- Connection:
- - keep-alive
- ParameterSetName:
- - --ids
- User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0?api-version=2022-03-01
- response:
- body:
- string: '{"properties":{"activityID":"da6cadea-c158-11ec-8ae7-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A54%3A47.0008014Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:53:12.9002044Z","endTime":"2022-04-21T09:54:46.7957423Z","dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Backup","operation":"Backup","status":"Completed","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT1M33.8955379S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"0001-01-01T00:00:00Z"},"sourceRecoverPoint":null,"recoveryDestination":null,"subTasks":[{"taskId":1,"taskName":"Trigger
- Backup","taskStatus":"Completed","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"RetentionTag":"Weekly"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/f43c6d09-98aa-4e16-b803-dfbca21808f0","name":"f43c6d09-98aa-4e16-b803-dfbca21808f0","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2327'
- content-type:
- - application/json
- date:
- - Thu, 21 Apr 2022 09:54:54 GMT
+ - Tue, 24 May 2022 13:46:20 GMT
expires:
- '-1'
pragma:
@@ -2100,12 +1954,12 @@ interactions:
ParameterSetName:
- --backup-instance-name -g --vault-name
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/recoveryPoints?api-version=2022-03-01&$filter=
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/recoveryPoints?api-version=2022-04-01&$filter=
response:
body:
- string: '{"value":[{"properties":{"objectType":"AzureBackupDiscreteRecoveryPoint","recoveryPointId":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z","recoveryPointType":"Full","friendlyName":"e09ece5fd1db49988b9ca36a95496308","recoveryPointDataStoresDetails":[{"id":"beddea84-7b30-42a5-a752-7c75baf96a52","type":"VaultStore","creationTime":"2022-04-21T09:53:48.9801414Z","expiryTime":null,"metaData":null,"visible":true,"state":"COMMITTED","rehydrationExpiryTime":null,"rehydrationStatus":null}],"retentionTagName":"Weekly","retentionTagVersion":"637861313960590313","policyName":"oss-clitest-policy2","policyVersion":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/recoveryPoints/d1044cf281164b0e8086f459e9a38724","name":"d1044cf281164b0e8086f459e9a38724","type":"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints"}]}'
+ string: '{"value":[{"properties":{"objectType":"AzureBackupDiscreteRecoveryPoint","recoveryPointId":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"2022-05-24T13:45:19.8946738Z","recoveryPointType":"Full","friendlyName":"a6ee494186354a0295152b85844a0c3e","recoveryPointDataStoresDetails":[{"id":"beddea84-7b30-42a5-a752-7c75baf96a52","type":"VaultStore","creationTime":"2022-05-24T13:45:19.8946738Z","expiryTime":null,"metaData":null,"visible":true,"state":"COMMITTED","rehydrationExpiryTime":null,"rehydrationStatus":null}],"retentionTagName":"Weekly","retentionTagVersion":"637889964735303158","policyName":"oss-clitest-policy2","policyVersion":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/recoveryPoints/c89eb07c19904930952b5ff939bb6ac2","name":"c89eb07c19904930952b5ff939bb6ac2","type":"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints"}]}'
headers:
cache-control:
- no-cache
@@ -2114,7 +1968,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:54:55 GMT
+ - Tue, 24 May 2022 13:46:25 GMT
expires:
- '-1'
pragma:
@@ -2138,8 +1992,8 @@ interactions:
body: '{"restoreRequestObject": {"objectType": "AzureBackupRecoveryPointBasedRestoreRequest",
"restoreTargetInfo": {"objectType": "RestoreTargetInfo", "recoveryOption": "FailIfExists",
"restoreLocation": "centraluseuap", "datasourceInfo": {"datasourceType": "Microsoft.DBforPostgreSQL/servers/databases",
- "objectType": "Datasource", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_21042022_152455",
- "resourceLocation": "centraluseuap", "resourceName": "postgres_restore_21042022_152455",
+ "objectType": "Datasource", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_24052022_191625",
+ "resourceLocation": "centraluseuap", "resourceName": "postgres_restore_24052022_191625",
"resourceType": "Microsoft.DBforPostgreSQL/servers/databases", "resourceUri":
""}, "datasourceSetInfo": {"datasourceType": "Microsoft.DBforPostgreSQL/servers/databases",
"objectType": "DatasourceSet", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server",
@@ -2148,7 +2002,7 @@ interactions:
{"objectType": "SecretStoreBasedAuthCredentials", "secretStoreResource": {"uri":
"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret", "secretStoreType":
"AzureKeyVault"}}}, "sourceDataStoreType": "VaultStore", "recoveryPointId":
- "d1044cf281164b0e8086f459e9a38724"}}'
+ "c89eb07c19904930952b5ff939bb6ac2"}}'
headers:
Accept:
- application/json
@@ -2165,25 +2019,25 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/validateRestore?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/validateRestore?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzViODY2YTFkLWVjNWYtNGJjYi04ZmY1LWE3Y2U4ODExYmRlZA==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiM2JlMzIyLWE1NzUtNDJmZi04NTMxLWQxM2FkZjFiZjllZQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 09:54:57 GMT
+ - Tue, 24 May 2022 13:46:30 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzViODY2YTFkLWVjNWYtNGJjYi04ZmY1LWE3Y2U4ODExYmRlZA==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiM2JlMzIyLWE1NzUtNDJmZi04NTMxLWQxM2FkZjFiZjllZQ==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -2211,21 +2065,21 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzViODY2YTFkLWVjNWYtNGJjYi04ZmY1LWE3Y2U4ODExYmRlZA==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiM2JlMzIyLWE1NzUtNDJmZi04NTMxLWQxM2FkZjFiZjllZQ==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzViODY2YTFkLWVjNWYtNGJjYi04ZmY1LWE3Y2U4ODExYmRlZA==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzViODY2YTFkLWVjNWYtNGJjYi04ZmY1LWE3Y2U4ODExYmRlZA==","status":"Inprogress","startTime":"2022-04-21T09:54:57.711647Z","endTime":"0001-01-01T00:00:00Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiM2JlMzIyLWE1NzUtNDJmZi04NTMxLWQxM2FkZjFiZjllZQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiM2JlMzIyLWE1NzUtNDJmZi04NTMxLWQxM2FkZjFiZjllZQ==","status":"Inprogress","startTime":"2022-05-24T13:46:30.2467896Z","endTime":"0001-01-01T00:00:00Z"}'
headers:
cache-control:
- no-cache
content-length:
- - '480'
+ - '481'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:55:07 GMT
+ - Tue, 24 May 2022 13:46:41 GMT
expires:
- '-1'
pragma:
@@ -2259,21 +2113,21 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzViODY2YTFkLWVjNWYtNGJjYi04ZmY1LWE3Y2U4ODExYmRlZA==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiM2JlMzIyLWE1NzUtNDJmZi04NTMxLWQxM2FkZjFiZjllZQ==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzViODY2YTFkLWVjNWYtNGJjYi04ZmY1LWE3Y2U4ODExYmRlZA==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzViODY2YTFkLWVjNWYtNGJjYi04ZmY1LWE3Y2U4ODExYmRlZA==","status":"Succeeded","startTime":"2022-04-21T09:54:57.711647Z","endTime":"2022-04-21T09:55:20Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiM2JlMzIyLWE1NzUtNDJmZi04NTMxLWQxM2FkZjFiZjllZQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiM2JlMzIyLWE1NzUtNDJmZi04NTMxLWQxM2FkZjFiZjllZQ==","status":"Succeeded","startTime":"2022-05-24T13:46:30.2467896Z","endTime":"2022-05-24T13:46:52Z"}'
headers:
cache-control:
- no-cache
content-length:
- - '479'
+ - '480'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:55:38 GMT
+ - Tue, 24 May 2022 13:47:11 GMT
expires:
- '-1'
pragma:
@@ -2307,15 +2161,15 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzViODY2YTFkLWVjNWYtNGJjYi04ZmY1LWE3Y2U4ODExYmRlZA==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiM2JlMzIyLWE1NzUtNDJmZi04NTMxLWQxM2FkZjFiZjllZQ==?api-version=2022-04-01
response:
body:
string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzViODY2YTFkLWVjNWYtNGJjYi04ZmY1LWE3Y2U4ODExYmRlZA==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzZiM2JlMzIyLWE1NzUtNDJmZi04NTMxLWQxM2FkZjFiZjllZQ==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -2323,7 +2177,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:55:39 GMT
+ - Tue, 24 May 2022 13:47:12 GMT
expires:
- '-1'
pragma:
@@ -2347,8 +2201,8 @@ interactions:
body: '{"objectType": "AzureBackupRecoveryPointBasedRestoreRequest", "restoreTargetInfo":
{"objectType": "RestoreTargetInfo", "recoveryOption": "FailIfExists", "restoreLocation":
"centraluseuap", "datasourceInfo": {"datasourceType": "Microsoft.DBforPostgreSQL/servers/databases",
- "objectType": "Datasource", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_21042022_152455",
- "resourceLocation": "centraluseuap", "resourceName": "postgres_restore_21042022_152455",
+ "objectType": "Datasource", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_24052022_191625",
+ "resourceLocation": "centraluseuap", "resourceName": "postgres_restore_24052022_191625",
"resourceType": "Microsoft.DBforPostgreSQL/servers/databases", "resourceUri":
""}, "datasourceSetInfo": {"datasourceType": "Microsoft.DBforPostgreSQL/servers/databases",
"objectType": "DatasourceSet", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server",
@@ -2357,7 +2211,7 @@ interactions:
{"objectType": "SecretStoreBasedAuthCredentials", "secretStoreResource": {"uri":
"https://oss-clitest-keyvault.vault.azure.net/secrets/oss-clitest-secret", "secretStoreType":
"AzureKeyVault"}}}, "sourceDataStoreType": "VaultStore", "recoveryPointId":
- "d1044cf281164b0e8086f459e9a38724"}'
+ "c89eb07c19904930952b5ff939bb6ac2"}'
headers:
Accept:
- application/json
@@ -2374,25 +2228,25 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/restore?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/restore?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2NjMTAxNDI3LTYzZWYtNDUyMi05ZDgxLTQ3Yzc1MTMxMTMzNg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2M1ZjBjYTkwLTg0ZWEtNDk0Ni04NTAyLWZkZWRhZWIyMDg1MA==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 09:55:41 GMT
+ - Tue, 24 May 2022 13:47:16 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2NjMTAxNDI3LTYzZWYtNDUyMi05ZDgxLTQ3Yzc1MTMxMTMzNg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2M1ZjBjYTkwLTg0ZWEtNDk0Ni04NTAyLWZkZWRhZWIyMDg1MA==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -2420,12 +2274,12 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2NjMTAxNDI3LTYzZWYtNDUyMi05ZDgxLTQ3Yzc1MTMxMTMzNg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2M1ZjBjYTkwLTg0ZWEtNDk0Ni04NTAyLWZkZWRhZWIyMDg1MA==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2NjMTAxNDI3LTYzZWYtNDUyMi05ZDgxLTQ3Yzc1MTMxMTMzNg==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2NjMTAxNDI3LTYzZWYtNDUyMi05ZDgxLTQ3Yzc1MTMxMTMzNg==","status":"Succeeded","startTime":"2022-04-21T09:55:41.3172791Z","endTime":"2022-04-21T09:55:43Z","properties":{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/oss-clitest-rg/providers/Microsoft.DataProtection/BackupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa","objectType":"OperationJobExtendedInfo"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2M1ZjBjYTkwLTg0ZWEtNDk0Ni04NTAyLWZkZWRhZWIyMDg1MA==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2M1ZjBjYTkwLTg0ZWEtNDk0Ni04NTAyLWZkZWRhZWIyMDg1MA==","status":"Succeeded","startTime":"2022-05-24T13:47:17.2233141Z","endTime":"2022-05-24T13:47:19Z","properties":{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/oss-clitest-rg/providers/Microsoft.DataProtection/BackupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23","objectType":"OperationJobExtendedInfo"}}'
headers:
cache-control:
- no-cache
@@ -2434,7 +2288,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:56:11 GMT
+ - Tue, 24 May 2022 13:47:47 GMT
expires:
- '-1'
pragma:
@@ -2468,15 +2322,15 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2NjMTAxNDI3LTYzZWYtNDUyMi05ZDgxLTQ3Yzc1MTMxMTMzNg==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2M1ZjBjYTkwLTg0ZWEtNDk0Ni04NTAyLWZkZWRhZWIyMDg1MA==?api-version=2022-04-01
response:
body:
- string: '{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/oss-clitest-rg/providers/Microsoft.DataProtection/BackupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa","objectType":"OperationJobExtendedInfo"}'
+ string: '{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/oss-clitest-rg/providers/Microsoft.DataProtection/BackupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23","objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2NjMTAxNDI3LTYzZWYtNDUyMi05ZDgxLTQ3Yzc1MTMxMTMzNg==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3O2M1ZjBjYTkwLTg0ZWEtNDk0Ni04NTAyLWZkZWRhZWIyMDg1MA==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -2484,7 +2338,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:56:11 GMT
+ - Tue, 24 May 2022 13:47:48 GMT
expires:
- '-1'
pragma:
@@ -2518,13 +2372,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"32f7b6a3-c159-11ec-9a8a-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A55%3A42.0573029Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:55:41.7144726Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_21042022_152455","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa","name":"c075a8ce-e7f9-4da7-a4d6-33325745b1fa","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"03882d8a-db68-11ec-ad27-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A47%3A18.1673697Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:47:17.6297301Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"2022-05-24T13:45:19.8946738Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_24052022_191625","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23","name":"12b0e954-5ee1-4f6f-a11b-49989888ee23","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -2533,7 +2387,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:56:24 GMT
+ - Tue, 24 May 2022 13:48:03 GMT
expires:
- '-1'
pragma:
@@ -2568,13 +2422,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"32f7b6a3-c159-11ec-9a8a-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A55%3A42.0573029Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:55:41.7144726Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_21042022_152455","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa","name":"c075a8ce-e7f9-4da7-a4d6-33325745b1fa","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"03882d8a-db68-11ec-ad27-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A47%3A18.1673697Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:47:17.6297301Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"2022-05-24T13:45:19.8946738Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_24052022_191625","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23","name":"12b0e954-5ee1-4f6f-a11b-49989888ee23","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -2583,7 +2437,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:56:36 GMT
+ - Tue, 24 May 2022 13:48:16 GMT
expires:
- '-1'
pragma:
@@ -2618,13 +2472,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"32f7b6a3-c159-11ec-9a8a-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A55%3A42.0573029Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:55:41.7144726Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_21042022_152455","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa","name":"c075a8ce-e7f9-4da7-a4d6-33325745b1fa","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"03882d8a-db68-11ec-ad27-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A47%3A18.1673697Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:47:17.6297301Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"2022-05-24T13:45:19.8946738Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_24052022_191625","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23","name":"12b0e954-5ee1-4f6f-a11b-49989888ee23","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -2633,7 +2487,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:56:48 GMT
+ - Tue, 24 May 2022 13:48:28 GMT
expires:
- '-1'
pragma:
@@ -2668,13 +2522,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"32f7b6a3-c159-11ec-9a8a-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A55%3A42.0573029Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:55:41.7144726Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_21042022_152455","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa","name":"c075a8ce-e7f9-4da7-a4d6-33325745b1fa","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"03882d8a-db68-11ec-ad27-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A47%3A18.1673697Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:47:17.6297301Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"2022-05-24T13:45:19.8946738Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_24052022_191625","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23","name":"12b0e954-5ee1-4f6f-a11b-49989888ee23","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -2683,7 +2537,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:57:00 GMT
+ - Tue, 24 May 2022 13:48:43 GMT
expires:
- '-1'
pragma:
@@ -2718,13 +2572,13 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"32f7b6a3-c159-11ec-9a8a-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A55%3A42.0573029Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:55:41.7144726Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_21042022_152455","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa","name":"c075a8ce-e7f9-4da7-a4d6-33325745b1fa","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"03882d8a-db68-11ec-ad27-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A47%3A18.1673697Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:47:17.6297301Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"2022-05-24T13:45:19.8946738Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_24052022_191625","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23","name":"12b0e954-5ee1-4f6f-a11b-49989888ee23","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
@@ -2733,7 +2587,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:57:12 GMT
+ - Tue, 24 May 2022 13:48:55 GMT
expires:
- '-1'
pragma:
@@ -2768,72 +2622,22 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"32f7b6a3-c159-11ec-9a8a-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A55%3A42.0573029Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:55:41.7144726Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_21042022_152455","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa","name":"c075a8ce-e7f9-4da7-a4d6-33325745b1fa","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ string: '{"properties":{"activityID":"03882d8a-db68-11ec-ad27-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A49%3A03.7465331Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:47:17.6297301Z","endTime":"2022-05-24T13:49:03.4331376Z","dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"Completed","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT1M45.8034075S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"2022-05-24T13:45:19.8946738Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_24052022_191625","subTasks":[{"taskId":1,"taskName":"Trigger
+ Restore","taskStatus":"Completed","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/12b0e954-5ee1-4f6f-a11b-49989888ee23","name":"12b0e954-5ee1-4f6f-a11b-49989888ee23","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '2467'
+ - '2502'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:57:24 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- - Kestrel
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - dataprotection job show
- Connection:
- - keep-alive
- ParameterSetName:
- - --ids
- User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa?api-version=2022-03-01
- response:
- body:
- string: '{"properties":{"activityID":"32f7b6a3-c159-11ec-9a8a-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A57%3A26.8123703Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:55:41.7144726Z","endTime":"2022-04-21T09:57:26.4907366Z","dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"Completed","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT1M44.776264S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres_restore_21042022_152455","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"Completed","taskProgress":null,"additionalDetails":null}],"additionalDetails":null}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/c075a8ce-e7f9-4da7-a4d6-33325745b1fa","name":"c075a8ce-e7f9-4da7-a4d6-33325745b1fa","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2501'
- content-type:
- - application/json
- date:
- - Thu, 21 Apr 2022 09:57:37 GMT
+ - Tue, 24 May 2022 13:49:10 GMT
expires:
- '-1'
pragma:
@@ -2858,9 +2662,9 @@ interactions:
body: '{"restoreRequestObject": {"objectType": "AzureBackupRecoveryPointBasedRestoreRequest",
"restoreTargetInfo": {"objectType": "RestoreFilesTargetInfo", "recoveryOption":
"FailIfExists", "restoreLocation": "centraluseuap", "targetDetails": {"filePrefix":
- "postgres_restore_21042022_152737", "restoreTargetLocationType": "AzureBlobs",
+ "postgres_restore_24052022_191910", "restoreTargetLocationType": "AzureBlobs",
"url": "https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container"}},
- "sourceDataStoreType": "VaultStore", "recoveryPointId": "d1044cf281164b0e8086f459e9a38724"}}'
+ "sourceDataStoreType": "VaultStore", "recoveryPointId": "c89eb07c19904930952b5ff939bb6ac2"}}'
headers:
Accept:
- application/json
@@ -2877,25 +2681,25 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/validateRestore?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/validateRestore?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzdkMWUwNDFlLTUzYjgtNDY1MS1iZDIxLTA4NDNmYjk1YTM2Nw==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhhNjMyYmY0LWQyM2EtNDVlYS1hMmJjLTIwNTIzYzY1OTM1Nw==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 09:57:39 GMT
+ - Tue, 24 May 2022 13:49:15 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzdkMWUwNDFlLTUzYjgtNDY1MS1iZDIxLTA4NDNmYjk1YTM2Nw==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhhNjMyYmY0LWQyM2EtNDVlYS1hMmJjLTIwNTIzYzY1OTM1Nw==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -2923,12 +2727,12 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzdkMWUwNDFlLTUzYjgtNDY1MS1iZDIxLTA4NDNmYjk1YTM2Nw==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhhNjMyYmY0LWQyM2EtNDVlYS1hMmJjLTIwNTIzYzY1OTM1Nw==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzdkMWUwNDFlLTUzYjgtNDY1MS1iZDIxLTA4NDNmYjk1YTM2Nw==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzdkMWUwNDFlLTUzYjgtNDY1MS1iZDIxLTA4NDNmYjk1YTM2Nw==","status":"Inprogress","startTime":"2022-04-21T09:57:39.3145393Z","endTime":"0001-01-01T00:00:00Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhhNjMyYmY0LWQyM2EtNDVlYS1hMmJjLTIwNTIzYzY1OTM1Nw==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhhNjMyYmY0LWQyM2EtNDVlYS1hMmJjLTIwNTIzYzY1OTM1Nw==","status":"Inprogress","startTime":"2022-05-24T13:49:15.9805826Z","endTime":"0001-01-01T00:00:00Z"}'
headers:
cache-control:
- no-cache
@@ -2937,7 +2741,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:57:49 GMT
+ - Tue, 24 May 2022 13:49:26 GMT
expires:
- '-1'
pragma:
@@ -2971,12 +2775,12 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzdkMWUwNDFlLTUzYjgtNDY1MS1iZDIxLTA4NDNmYjk1YTM2Nw==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhhNjMyYmY0LWQyM2EtNDVlYS1hMmJjLTIwNTIzYzY1OTM1Nw==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzdkMWUwNDFlLTUzYjgtNDY1MS1iZDIxLTA4NDNmYjk1YTM2Nw==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzdkMWUwNDFlLTUzYjgtNDY1MS1iZDIxLTA4NDNmYjk1YTM2Nw==","status":"Succeeded","startTime":"2022-04-21T09:57:39.3145393Z","endTime":"2022-04-21T09:58:02Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhhNjMyYmY0LWQyM2EtNDVlYS1hMmJjLTIwNTIzYzY1OTM1Nw==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhhNjMyYmY0LWQyM2EtNDVlYS1hMmJjLTIwNTIzYzY1OTM1Nw==","status":"Succeeded","startTime":"2022-05-24T13:49:15.9805826Z","endTime":"2022-05-24T13:49:39Z"}'
headers:
cache-control:
- no-cache
@@ -2985,7 +2789,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:58:19 GMT
+ - Tue, 24 May 2022 13:49:57 GMT
expires:
- '-1'
pragma:
@@ -3019,15 +2823,15 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzdkMWUwNDFlLTUzYjgtNDY1MS1iZDIxLTA4NDNmYjk1YTM2Nw==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhhNjMyYmY0LWQyM2EtNDVlYS1hMmJjLTIwNTIzYzY1OTM1Nw==?api-version=2022-04-01
response:
body:
string: '{"objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzdkMWUwNDFlLTUzYjgtNDY1MS1iZDIxLTA4NDNmYjk1YTM2Nw==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzhhNjMyYmY0LWQyM2EtNDVlYS1hMmJjLTIwNTIzYzY1OTM1Nw==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -3035,7 +2839,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:58:19 GMT
+ - Tue, 24 May 2022 13:49:57 GMT
expires:
- '-1'
pragma:
@@ -3058,9 +2862,9 @@ interactions:
- request:
body: '{"objectType": "AzureBackupRecoveryPointBasedRestoreRequest", "restoreTargetInfo":
{"objectType": "RestoreFilesTargetInfo", "recoveryOption": "FailIfExists", "restoreLocation":
- "centraluseuap", "targetDetails": {"filePrefix": "postgres_restore_21042022_152737",
+ "centraluseuap", "targetDetails": {"filePrefix": "postgres_restore_24052022_191910",
"restoreTargetLocationType": "AzureBlobs", "url": "https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container"}},
- "sourceDataStoreType": "VaultStore", "recoveryPointId": "d1044cf281164b0e8086f459e9a38724"}'
+ "sourceDataStoreType": "VaultStore", "recoveryPointId": "c89eb07c19904930952b5ff939bb6ac2"}'
headers:
Accept:
- application/json
@@ -3077,25 +2881,25 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/restore?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764/restore?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzA5NDA1YThhLWMxZDYtNDExOC1hYzE0LWYxNGM1NGVlNmUyZQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzJkY2Y1ZjZlLTQ5ZWQtNDE1My04NWY0LWVjODA1Y2Q3Mjc2Zg==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 09:58:22 GMT
+ - Tue, 24 May 2022 13:50:01 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzA5NDA1YThhLWMxZDYtNDExOC1hYzE0LWYxNGM1NGVlNmUyZQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzJkY2Y1ZjZlLTQ5ZWQtNDE1My04NWY0LWVjODA1Y2Q3Mjc2Zg==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -3103,7 +2907,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -3123,12 +2927,12 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzA5NDA1YThhLWMxZDYtNDExOC1hYzE0LWYxNGM1NGVlNmUyZQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzJkY2Y1ZjZlLTQ5ZWQtNDE1My04NWY0LWVjODA1Y2Q3Mjc2Zg==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzA5NDA1YThhLWMxZDYtNDExOC1hYzE0LWYxNGM1NGVlNmUyZQ==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzA5NDA1YThhLWMxZDYtNDExOC1hYzE0LWYxNGM1NGVlNmUyZQ==","status":"Succeeded","startTime":"2022-04-21T09:58:23.1326486Z","endTime":"2022-04-21T09:58:25Z","properties":{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/oss-clitest-rg/providers/Microsoft.DataProtection/BackupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a","objectType":"OperationJobExtendedInfo"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzJkY2Y1ZjZlLTQ5ZWQtNDE1My04NWY0LWVjODA1Y2Q3Mjc2Zg==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzJkY2Y1ZjZlLTQ5ZWQtNDE1My04NWY0LWVjODA1Y2Q3Mjc2Zg==","status":"Succeeded","startTime":"2022-05-24T13:50:01.7679576Z","endTime":"2022-05-24T13:50:04Z","properties":{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/oss-clitest-rg/providers/Microsoft.DataProtection/BackupVaults/oss-clitest-vault/backupJobs/9158d56e-dc97-4c49-b08a-43d284a51ef1","objectType":"OperationJobExtendedInfo"}}'
headers:
cache-control:
- no-cache
@@ -3137,7 +2941,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:58:53 GMT
+ - Tue, 24 May 2022 13:50:33 GMT
expires:
- '-1'
pragma:
@@ -3171,15 +2975,15 @@ interactions:
ParameterSetName:
- -g --vault-name -n --restore-request-object
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzA5NDA1YThhLWMxZDYtNDExOC1hYzE0LWYxNGM1NGVlNmUyZQ==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzJkY2Y1ZjZlLTQ5ZWQtNDE1My04NWY0LWVjODA1Y2Q3Mjc2Zg==?api-version=2022-04-01
response:
body:
- string: '{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/oss-clitest-rg/providers/Microsoft.DataProtection/BackupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a","objectType":"OperationJobExtendedInfo"}'
+ string: '{"jobId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/oss-clitest-rg/providers/Microsoft.DataProtection/BackupVaults/oss-clitest-vault/backupJobs/9158d56e-dc97-4c49-b08a-43d284a51ef1","objectType":"OperationJobExtendedInfo"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzA5NDA1YThhLWMxZDYtNDExOC1hYzE0LWYxNGM1NGVlNmUyZQ==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzJkY2Y1ZjZlLTQ5ZWQtNDE1My04NWY0LWVjODA1Y2Q3Mjc2Zg==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
@@ -3187,115 +2991,13 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:58:54 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - dataprotection job show
- Connection:
- - keep-alive
- ParameterSetName:
- - --ids
- User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a?api-version=2022-03-01
- response:
- body:
- string: '{"properties":{"activityID":"935fc833-c159-11ec-ae0b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A58%3A23.9157Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:58:23.4942406Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"Restore
- File Prefix":"postgres_restore_21042022_152737"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a","name":"7dfcf916-73ee-4e66-a1b0-83541785d31a","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2400'
- content-type:
- - application/json
- date:
- - Thu, 21 Apr 2022 09:59:05 GMT
+ - Tue, 24 May 2022 13:50:34 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-IIS/10.0
- - Kestrel
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - dataprotection job show
- Connection:
- - keep-alive
- ParameterSetName:
- - --ids
- User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a?api-version=2022-03-01
- response:
- body:
- string: '{"properties":{"activityID":"935fc833-c159-11ec-ae0b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A58%3A23.9157Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:58:23.4942406Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container","subTasks":[{"taskId":1,"taskName":"Trigger
- Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"Restore
- File Prefix":"postgres_restore_21042022_152737"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a","name":"7dfcf916-73ee-4e66-a1b0-83541785d31a","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2400'
- content-type:
- - application/json
- date:
- - Thu, 21 Apr 2022 09:59:16 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- - Kestrel
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -3323,23 +3025,23 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/9158d56e-dc97-4c49-b08a-43d284a51ef1?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"935fc833-c159-11ec-ae0b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A58%3A23.9157Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:58:23.4942406Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container","subTasks":[{"taskId":1,"taskName":"Trigger
+ string: '{"properties":{"activityID":"6643c613-db68-11ec-aba2-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A50%3A02.6541396Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:50:02.218729Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"2022-05-24T13:45:19.8946738Z"},"recoveryDestination":"https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container","subTasks":[{"taskId":1,"taskName":"Trigger
Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"Restore
- File Prefix":"postgres_restore_21042022_152737"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a","name":"7dfcf916-73ee-4e66-a1b0-83541785d31a","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ File Prefix":"postgres_restore_24052022_191910"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/9158d56e-dc97-4c49-b08a-43d284a51ef1","name":"9158d56e-dc97-4c49-b08a-43d284a51ef1","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '2400'
+ - '2402'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:59:28 GMT
+ - Tue, 24 May 2022 13:50:50 GMT
expires:
- '-1'
pragma:
@@ -3374,23 +3076,23 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/9158d56e-dc97-4c49-b08a-43d284a51ef1?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"935fc833-c159-11ec-ae0b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A58%3A23.9157Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:58:23.4942406Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container","subTasks":[{"taskId":1,"taskName":"Trigger
+ string: '{"properties":{"activityID":"6643c613-db68-11ec-aba2-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A50%3A02.6541396Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:50:02.218729Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"2022-05-24T13:45:19.8946738Z"},"recoveryDestination":"https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container","subTasks":[{"taskId":1,"taskName":"Trigger
Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"Restore
- File Prefix":"postgres_restore_21042022_152737"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a","name":"7dfcf916-73ee-4e66-a1b0-83541785d31a","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ File Prefix":"postgres_restore_24052022_191910"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/9158d56e-dc97-4c49-b08a-43d284a51ef1","name":"9158d56e-dc97-4c49-b08a-43d284a51ef1","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '2400'
+ - '2402'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:59:40 GMT
+ - Tue, 24 May 2022 13:51:03 GMT
expires:
- '-1'
pragma:
@@ -3425,23 +3127,23 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/9158d56e-dc97-4c49-b08a-43d284a51ef1?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"935fc833-c159-11ec-ae0b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A58%3A23.9157Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:58:23.4942406Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container","subTasks":[{"taskId":1,"taskName":"Trigger
+ string: '{"properties":{"activityID":"6643c613-db68-11ec-aba2-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A50%3A02.6541396Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:50:02.218729Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"2022-05-24T13:45:19.8946738Z"},"recoveryDestination":"https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container","subTasks":[{"taskId":1,"taskName":"Trigger
Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"Restore
- File Prefix":"postgres_restore_21042022_152737"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a","name":"7dfcf916-73ee-4e66-a1b0-83541785d31a","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ File Prefix":"postgres_restore_24052022_191910"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/9158d56e-dc97-4c49-b08a-43d284a51ef1","name":"9158d56e-dc97-4c49-b08a-43d284a51ef1","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '2400'
+ - '2402'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 09:59:51 GMT
+ - Tue, 24 May 2022 13:51:25 GMT
expires:
- '-1'
pragma:
@@ -3476,23 +3178,23 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/9158d56e-dc97-4c49-b08a-43d284a51ef1?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"935fc833-c159-11ec-ae0b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T09%3A58%3A23.9157Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:58:23.4942406Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container","subTasks":[{"taskId":1,"taskName":"Trigger
+ string: '{"properties":{"activityID":"6643c613-db68-11ec-aba2-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A50%3A02.6541396Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:50:02.218729Z","endTime":null,"dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"InProgress","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT0S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"2022-05-24T13:45:19.8946738Z"},"recoveryDestination":"https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container","subTasks":[{"taskId":1,"taskName":"Trigger
Restore","taskStatus":"InProgress","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"Restore
- File Prefix":"postgres_restore_21042022_152737"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a","name":"7dfcf916-73ee-4e66-a1b0-83541785d31a","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ File Prefix":"postgres_restore_24052022_191910"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/9158d56e-dc97-4c49-b08a-43d284a51ef1","name":"9158d56e-dc97-4c49-b08a-43d284a51ef1","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '2400'
+ - '2402'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 10:00:03 GMT
+ - Tue, 24 May 2022 13:51:38 GMT
expires:
- '-1'
pragma:
@@ -3527,23 +3229,23 @@ interactions:
ParameterSetName:
- --ids
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/9158d56e-dc97-4c49-b08a-43d284a51ef1?api-version=2022-04-01
response:
body:
- string: '{"properties":{"activityID":"935fc833-c159-11ec-ae0b-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-04-21T10%3A00%3A09.3134Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-04-21T09:58:23.4942406Z","endTime":"2022-04-21T10:00:09.0971514Z","dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"Completed","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT1M45.6029108S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"d1044cf281164b0e8086f459e9a38724","recoveryPointTime":"2022-04-21T09:53:48.9801414Z"},"recoveryDestination":"https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container","subTasks":[{"taskId":1,"taskName":"Trigger
+ string: '{"properties":{"activityID":"6643c613-db68-11ec-aba2-c8f750f92764","subscriptionId":"38304e13-357e-405e-9e9a-220351dcce8c","backupInstanceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupPolicies/oss-clitest-policy2","dataSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DBforPostgreSQL/servers/oss-clitest-server/databases/postgres","vaultName":"oss-clitest-vault","backupInstanceFriendlyName":"oss-clitest-server\\postgres","policyName":"oss-clitest-policy2","sourceResourceGroup":"oss-clitest-rg","dataSourceSetName":"oss-clitest-server","dataSourceName":"postgres","sourceDataStoreName":null,"destinationDataStoreName":null,"progressEnabled":false,"etag":"W/\"datetime''2022-05-24T13%3A51%3A48.1243411Z''\"","sourceSubscriptionID":"38304e13-357e-405e-9e9a-220351dcce8c","dataSourceLocation":"centraluseuap","startTime":"2022-05-24T13:50:02.218729Z","endTime":"2022-05-24T13:51:47.9533029Z","dataSourceType":"Microsoft.DBforPostgreSQL/servers/databases","operationCategory":"Restore","operation":"Restore","status":"Completed","restoreType":null,"isUserTriggered":true,"rehydrationPriority":null,"supportedActions":[""],"duration":"PT1M45.7345739S","progressUrl":null,"errorDetails":null,"extendedInfo":{"backupInstanceState":null,"dataTransferedInBytes":null,"targetRecoverPoint":null,"sourceRecoverPoint":{"recoveryPointID":"c89eb07c19904930952b5ff939bb6ac2","recoveryPointTime":"2022-05-24T13:45:19.8946738Z"},"recoveryDestination":"https://ossclitestsa.blob.core.windows.net/oss-clitest-blob-container","subTasks":[{"taskId":1,"taskName":"Trigger
Restore","taskStatus":"Completed","taskProgress":null,"additionalDetails":null}],"additionalDetails":{"Restore
- File Prefix":"postgres_restore_21042022_152737"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/7dfcf916-73ee-4e66-a1b0-83541785d31a","name":"7dfcf916-73ee-4e66-a1b0-83541785d31a","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
+ File Prefix":"postgres_restore_24052022_191910"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupJobs/9158d56e-dc97-4c49-b08a-43d284a51ef1","name":"9158d56e-dc97-4c49-b08a-43d284a51ef1","type":"Microsoft.DataProtection/backupVaults/backupJobs"}'
headers:
cache-control:
- no-cache
content-length:
- - '2435'
+ - '2437'
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 10:00:15 GMT
+ - Tue, 24 May 2022 13:51:52 GMT
expires:
- '-1'
pragma:
@@ -3580,25 +3282,25 @@ interactions:
ParameterSetName:
- -g --vault-name -n --yes
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/backupInstances/oss-clitest-server-postgres-faec6818-0720-11ec-bd1b-c8f750f92764?api-version=2022-04-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzlhNGMzZjI4LTQyMDUtNGMyNy04NTg0LTEyM2Y4NTk1NTkwYw==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzA3MjU0NTE3LWQ4NzQtNDRkYS1hNmMyLTlkNjU2Zjg4ZGM1Mg==?api-version=2022-04-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 21 Apr 2022 10:00:18 GMT
+ - Tue, 24 May 2022 13:51:54 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzlhNGMzZjI4LTQyMDUtNGMyNy04NTg0LTEyM2Y4NTk1NTkwYw==?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection/locations/centraluseuap/operationResults/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzA3MjU0NTE3LWQ4NzQtNDRkYS1hNmMyLTlkNjU2Zjg4ZGM1Mg==?api-version=2022-04-01
pragma:
- no-cache
strict-transport-security:
@@ -3626,12 +3328,12 @@ interactions:
ParameterSetName:
- -g --vault-name -n --yes
User-Agent:
- - AZURECLI/2.35.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
+ - AZURECLI/2.36.0 azsdk-python-mgmt-dataprotection/1.0.0b1 Python/3.8.5 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzlhNGMzZjI4LTQyMDUtNGMyNy04NTg0LTEyM2Y4NTk1NTkwYw==?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzA3MjU0NTE3LWQ4NzQtNDRkYS1hNmMyLTlkNjU2Zjg4ZGM1Mg==?api-version=2022-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzlhNGMzZjI4LTQyMDUtNGMyNy04NTg0LTEyM2Y4NTk1NTkwYw==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzlhNGMzZjI4LTQyMDUtNGMyNy04NTg0LTEyM2Y4NTk1NTkwYw==","status":"Succeeded","startTime":"2022-04-21T10:00:18.5469055Z","endTime":"2022-04-21T10:00:32Z"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.DataProtection/backupVaults/oss-clitest-vault/operationStatus/NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzA3MjU0NTE3LWQ4NzQtNDRkYS1hNmMyLTlkNjU2Zjg4ZGM1Mg==","name":"NTc5ZTVjYzItYTNmMC00OTM1LWFhN2QtOWQwNmE5NGVmMzE3OzA3MjU0NTE3LWQ4NzQtNDRkYS1hNmMyLTlkNjU2Zjg4ZGM1Mg==","status":"Succeeded","startTime":"2022-05-24T13:51:54.4857667Z","endTime":"2022-05-24T13:52:10Z"}'
headers:
cache-control:
- no-cache
@@ -3640,7 +3342,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 21 Apr 2022 10:00:48 GMT
+ - Tue, 24 May 2022 13:52:25 GMT
expires:
- '-1'
pragma:
diff --git a/src/dataprotection/azext_dataprotection/tests/latest/test_dataprotection_scenario.py b/src/dataprotection/azext_dataprotection/tests/latest/test_dataprotection_scenario.py
index 6c19f99ed1c..af2b86426a5 100644
--- a/src/dataprotection/azext_dataprotection/tests/latest/test_dataprotection_scenario.py
+++ b/src/dataprotection/azext_dataprotection/tests/latest/test_dataprotection_scenario.py
@@ -15,7 +15,6 @@
from .example_steps import step_backup_policy_show
from .example_steps import step_backup_policy_list
from .example_steps import step_backup_instance_create
-from .example_steps import step_backup_instance_stop_protection
from .example_steps import step_backup_instance_suspend_backup
from .example_steps import step_backup_instance_adhoc_backup
from .example_steps import step_backup_instance_restore_trigger
@@ -32,12 +31,16 @@
from .example_steps import step_backup_instance_show
from .example_steps import step_backup_instance_list
from .example_steps import step_backup_instance_resume_protection
+from .example_steps import step_backup_instance_stop_protection
from .example_steps import step_backup_instance_delete
from .example_steps import step_backup_vault_delete
from .example_steps import step_job_show
from .example_steps import step_job_list
from .example_steps import step_recovery_point_show
from .example_steps import step_recovery_point_list
+from .example_steps import step_resource_guard_create
+from .example_steps import step_resource_guard_show
+from .example_steps import step_resource_guard_delete
from .example_steps import step_restorable_time_range_find
from .. import (
try_manual,
@@ -87,7 +90,6 @@ def call_scenario(test):
"ataProtection/Backupvaults/{myBackupVault}/backupPolicies/{myBackupPolicy2}",
case_sensitive=False),
])
- step_backup_instance_stop_protection(test, checks=[])
step_backup_instance_suspend_backup(test, checks=[])
step_backup_instance_adhoc_backup(test, checks=[])
step_backup_instance_restore_trigger(test, checks=[])
@@ -106,12 +108,16 @@ def call_scenario(test):
test.check('length(@)', 1),
])
step_backup_instance_resume_protection(test, checks=[])
+ step_backup_instance_stop_protection(test, checks=[])
step_backup_instance_delete(test, checks=[])
step_backup_vault_delete(test, checks=[])
step_job_show(test, checks=[])
step_job_list(test, checks=[])
step_recovery_point_show(test, checks=[])
step_recovery_point_list(test, checks=[])
+ step_resource_guard_create(test, checks=[])
+ step_resource_guard_show(test, checks=[])
+ step_resource_guard_delete(test, checks=[])
step_restorable_time_range_find(test, checks=[])
cleanup_scenario(test)
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/_configuration.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/_configuration.py
index 2900d95027c..f10faa76a5a 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/_configuration.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/_configuration.py
@@ -48,7 +48,7 @@ def __init__(
self.credential = credential
self.subscription_id = subscription_id
- self.api_version = "2022-03-01"
+ self.api_version = "2022-04-01"
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
kwargs.setdefault('sdk_moniker', 'mgmt-dataprotection/{}'.format(VERSION))
self._configure(**kwargs)
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/_configuration.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/_configuration.py
index 4bd670eda51..b800dcf73bb 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/_configuration.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/_configuration.py
@@ -45,7 +45,7 @@ def __init__(
self.credential = credential
self.subscription_id = subscription_id
- self.api_version = "2022-03-01"
+ self.api_version = "2022-04-01"
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
kwargs.setdefault('sdk_moniker', 'mgmt-dataprotection/{}'.format(VERSION))
self._configure(**kwargs)
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_instances_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_instances_operations.py
index 73bb9ac6501..496310cd06d 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_instances_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_instances_operations.py
@@ -65,7 +65,7 @@ def list(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -142,7 +142,7 @@ async def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -192,7 +192,7 @@ async def _create_or_update_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -332,7 +332,7 @@ async def _delete_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -454,7 +454,7 @@ async def _adhoc_backup_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -592,7 +592,7 @@ async def _validate_for_backup_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -740,7 +740,7 @@ async def get_backup_instance_operation_result(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -793,7 +793,7 @@ async def _trigger_rehydrate_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -924,7 +924,7 @@ async def _trigger_restore_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -1062,7 +1062,7 @@ async def _resume_backups_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1183,7 +1183,7 @@ async def _resume_protection_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1304,7 +1304,7 @@ async def _stop_protection_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1425,7 +1425,7 @@ async def _suspend_backups_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1547,7 +1547,7 @@ async def _sync_backup_instance_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -1679,7 +1679,7 @@ async def _validate_for_restore_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_policies_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_policies_operations.py
index 5a5909ca180..219d71b9166 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_policies_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_policies_operations.py
@@ -63,7 +63,7 @@ def list(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -142,7 +142,7 @@ async def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -209,7 +209,7 @@ async def create_or_update(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -278,7 +278,7 @@ async def delete(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_vault_operation_results_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_vault_operation_results_operations.py
index 4b21c9fe945..5de682c126b 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_vault_operation_results_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_vault_operation_results_operations.py
@@ -65,7 +65,7 @@ async def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_vaults_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_vaults_operations.py
index a6c01d77522..ac630998ee7 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_vaults_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_backup_vaults_operations.py
@@ -59,7 +59,7 @@ def get_in_subscription(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -128,7 +128,7 @@ def get_in_resource_group(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -201,7 +201,7 @@ async def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -249,7 +249,7 @@ async def _create_or_update_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -387,7 +387,7 @@ async def delete(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -432,7 +432,7 @@ async def _update_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -574,7 +574,7 @@ async def check_name_availability(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_data_protection_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_data_protection_operations.py
index f4b3d127035..d7ee72827c6 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_data_protection_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_data_protection_operations.py
@@ -64,7 +64,7 @@ async def check_feature_support(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_data_protection_operations_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_data_protection_operations_operations.py
index e27e2b4f638..3f1807f8b1f 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_data_protection_operations_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_data_protection_operations_operations.py
@@ -57,7 +57,7 @@ def list(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_export_jobs_operation_result_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_export_jobs_operation_result_operations.py
index 2b1581d93c8..c112b65c892 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_export_jobs_operation_result_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_export_jobs_operation_result_operations.py
@@ -67,7 +67,7 @@ async def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_export_jobs_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_export_jobs_operations.py
index f2e45a1f665..a3e3c35706e 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_export_jobs_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_export_jobs_operations.py
@@ -53,7 +53,7 @@ async def _trigger_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_jobs_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_jobs_operations.py
index 923a75d7fb4..a8d8ec2eb86 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_jobs_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_jobs_operations.py
@@ -63,7 +63,7 @@ def list(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -141,7 +141,7 @@ async def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_result_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_result_operations.py
index b550be990e3..aada87bbe06 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_result_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_result_operations.py
@@ -64,7 +64,7 @@ async def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_status_backup_vault_context_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_status_backup_vault_context_operations.py
index a395e487db9..ab15b3609ff 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_status_backup_vault_context_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_status_backup_vault_context_operations.py
@@ -67,7 +67,7 @@ async def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_status_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_status_operations.py
index 30c498d8db0..e1fea09d1e4 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_status_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_status_operations.py
@@ -64,7 +64,7 @@ async def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_status_resource_group_context_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_status_resource_group_context_operations.py
index 6f3abf566a9..b59074984f4 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_status_resource_group_context_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_operation_status_resource_group_context_operations.py
@@ -64,7 +64,7 @@ async def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_recovery_points_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_recovery_points_operations.py
index d677d0a9d3a..be51235fba1 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_recovery_points_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_recovery_points_operations.py
@@ -72,7 +72,7 @@ def list(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -157,7 +157,7 @@ async def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_resource_guards_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_resource_guards_operations.py
index 954b1c7f92c..f7db64fc9ad 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_resource_guards_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_resource_guards_operations.py
@@ -59,7 +59,7 @@ def get_resources_in_subscription(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -130,7 +130,7 @@ def get_resources_in_resource_group(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -208,7 +208,7 @@ async def put(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -273,7 +273,7 @@ async def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -333,7 +333,7 @@ async def delete(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -394,7 +394,7 @@ async def patch(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -460,7 +460,7 @@ def get_disable_soft_delete_requests_objects(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -537,7 +537,7 @@ def get_delete_resource_guard_proxy_requests_objects(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -614,7 +614,7 @@ def get_backup_security_pin_requests_objects(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -691,7 +691,7 @@ def get_delete_protected_item_requests_objects(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -768,7 +768,7 @@ def get_update_protection_policy_requests_objects(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -845,7 +845,7 @@ def get_update_protected_item_requests_objects(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -925,7 +925,7 @@ async def get_default_disable_soft_delete_requests_object(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -990,7 +990,7 @@ async def get_default_delete_resource_guard_proxy_requests_object(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1055,7 +1055,7 @@ async def get_default_backup_security_pin_requests_object(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1120,7 +1120,7 @@ async def get_default_delete_protected_item_requests_object(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1185,7 +1185,7 @@ async def get_default_update_protection_policy_requests_object(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1250,7 +1250,7 @@ async def get_default_update_protected_item_requests_object(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_restorable_time_ranges_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_restorable_time_ranges_operations.py
index 0ce26d42242..ca0a434c418 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_restorable_time_ranges_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/aio/operations/_restorable_time_ranges_operations.py
@@ -68,7 +68,7 @@ async def find(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/__init__.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/__init__.py
index 8547178772d..8802c368cbd 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/__init__.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/__init__.py
@@ -31,6 +31,7 @@
from ._models_py3 import AzureBackupRestoreRequest
from ._models_py3 import AzureBackupRestoreWithRehydrationRequest
from ._models_py3 import AzureBackupRule
+ from ._models_py3 import AzureMonitorAlertSettings
from ._models_py3 import AzureOperationalStoreParameters
from ._models_py3 import AzureRetentionRule
from ._models_py3 import BackupCriteria
@@ -87,9 +88,11 @@
from ._models_py3 import JobSubTask
from ._models_py3 import KubernetesPvRestoreCriteria
from ._models_py3 import KubernetesStorageClassRestoreCriteria
+ from ._models_py3 import MonitoringSettings
from ._models_py3 import OperationExtendedInfo
from ._models_py3 import OperationJobExtendedInfo
from ._models_py3 import OperationResource
+ from ._models_py3 import PatchBackupVaultInput
from ._models_py3 import PatchResourceRequestInput
from ._models_py3 import PolicyInfo
from ._models_py3 import PolicyParameters
@@ -150,6 +153,7 @@
from ._models import AzureBackupRestoreRequest # type: ignore
from ._models import AzureBackupRestoreWithRehydrationRequest # type: ignore
from ._models import AzureBackupRule # type: ignore
+ from ._models import AzureMonitorAlertSettings # type: ignore
from ._models import AzureOperationalStoreParameters # type: ignore
from ._models import AzureRetentionRule # type: ignore
from ._models import BackupCriteria # type: ignore
@@ -206,9 +210,11 @@
from ._models import JobSubTask # type: ignore
from ._models import KubernetesPvRestoreCriteria # type: ignore
from ._models import KubernetesStorageClassRestoreCriteria # type: ignore
+ from ._models import MonitoringSettings # type: ignore
from ._models import OperationExtendedInfo # type: ignore
from ._models import OperationJobExtendedInfo # type: ignore
from ._models import OperationResource # type: ignore
+ from ._models import PatchBackupVaultInput # type: ignore
from ._models import PatchResourceRequestInput # type: ignore
from ._models import PolicyInfo # type: ignore
from ._models import PolicyParameters # type: ignore
@@ -247,6 +253,7 @@
from ._data_protection_client_enums import (
AbsoluteMarker,
+ AlertsState,
CreatedByType,
CurrentProtectionState,
DataStoreTypes,
@@ -296,6 +303,7 @@
'AzureBackupRestoreRequest',
'AzureBackupRestoreWithRehydrationRequest',
'AzureBackupRule',
+ 'AzureMonitorAlertSettings',
'AzureOperationalStoreParameters',
'AzureRetentionRule',
'BackupCriteria',
@@ -352,9 +360,11 @@
'JobSubTask',
'KubernetesPvRestoreCriteria',
'KubernetesStorageClassRestoreCriteria',
+ 'MonitoringSettings',
'OperationExtendedInfo',
'OperationJobExtendedInfo',
'OperationResource',
+ 'PatchBackupVaultInput',
'PatchResourceRequestInput',
'PolicyInfo',
'PolicyParameters',
@@ -391,6 +401,7 @@
'ValidateForBackupRequest',
'ValidateRestoreRequestObject',
'AbsoluteMarker',
+ 'AlertsState',
'CreatedByType',
'CurrentProtectionState',
'DataStoreTypes',
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/_data_protection_client_enums.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/_data_protection_client_enums.py
index de6298820a9..ebf0f07f4e2 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/_data_protection_client_enums.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/_data_protection_client_enums.py
@@ -34,6 +34,11 @@ class AbsoluteMarker(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
FIRST_OF_WEEK = "FirstOfWeek"
FIRST_OF_YEAR = "FirstOfYear"
+class AlertsState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
+
+ ENABLED = "Enabled"
+ DISABLED = "Disabled"
+
class CreatedByType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
"""The type of identity that created the resource.
"""
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/_models.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/_models.py
index 5e23356070d..553bf049749 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/_models.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/_models.py
@@ -1258,6 +1258,25 @@ def __init__(
self.trigger = kwargs['trigger']
+class AzureMonitorAlertSettings(msrest.serialization.Model):
+ """Settings for Azure Monitor based alerts.
+
+ :param alerts_for_all_job_failures: Possible values include: "Enabled", "Disabled".
+ :type alerts_for_all_job_failures: str or ~azure.mgmt.dataprotection.models.AlertsState
+ """
+
+ _attribute_map = {
+ 'alerts_for_all_job_failures': {'key': 'alertsForAllJobFailures', 'type': 'str'},
+ }
+
+ def __init__(
+ self,
+ **kwargs
+ ):
+ super(AzureMonitorAlertSettings, self).__init__(**kwargs)
+ self.alerts_for_all_job_failures = kwargs.get('alerts_for_all_job_failures', None)
+
+
class DataStoreParameters(msrest.serialization.Model):
"""Parameters for DataStore.
@@ -1657,6 +1676,8 @@ class BackupVault(msrest.serialization.Model):
All required parameters must be populated in order to send to Azure.
+ :param monitoring_settings: Monitoring Settings.
+ :type monitoring_settings: ~azure.mgmt.dataprotection.models.MonitoringSettings
:ivar provisioning_state: Provisioning state of the BackupVault resource. Possible values
include: "Failed", "Provisioning", "Succeeded", "Unknown", "Updating".
:vartype provisioning_state: str or ~azure.mgmt.dataprotection.models.ProvisioningState
@@ -1678,6 +1699,7 @@ class BackupVault(msrest.serialization.Model):
}
_attribute_map = {
+ 'monitoring_settings': {'key': 'monitoringSettings', 'type': 'MonitoringSettings'},
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'resource_move_state': {'key': 'resourceMoveState', 'type': 'str'},
'resource_move_details': {'key': 'resourceMoveDetails', 'type': 'ResourceMoveDetails'},
@@ -1689,6 +1711,7 @@ def __init__(
**kwargs
):
super(BackupVault, self).__init__(**kwargs)
+ self.monitoring_settings = kwargs.get('monitoring_settings', None)
self.provisioning_state = None
self.resource_move_state = None
self.resource_move_details = None
@@ -3062,6 +3085,25 @@ def __init__(
self.provisioner = kwargs.get('provisioner', None)
+class MonitoringSettings(msrest.serialization.Model):
+ """Monitoring Settings.
+
+ :param azure_monitor_alert_settings: Settings for Azure Monitor based alerts.
+ :type azure_monitor_alert_settings: ~azure.mgmt.dataprotection.models.AzureMonitorAlertSettings
+ """
+
+ _attribute_map = {
+ 'azure_monitor_alert_settings': {'key': 'azureMonitorAlertSettings', 'type': 'AzureMonitorAlertSettings'},
+ }
+
+ def __init__(
+ self,
+ **kwargs
+ ):
+ super(MonitoringSettings, self).__init__(**kwargs)
+ self.azure_monitor_alert_settings = kwargs.get('azure_monitor_alert_settings', None)
+
+
class OperationExtendedInfo(msrest.serialization.Model):
"""Operation Extended Info.
@@ -3172,17 +3214,39 @@ def __init__(
self.status = kwargs.get('status', None)
+class PatchBackupVaultInput(msrest.serialization.Model):
+ """Backup Vault Contract for Patch Backup Vault API.
+
+ :param monitoring_settings: Monitoring Settings.
+ :type monitoring_settings: ~azure.mgmt.dataprotection.models.MonitoringSettings
+ """
+
+ _attribute_map = {
+ 'monitoring_settings': {'key': 'monitoringSettings', 'type': 'MonitoringSettings'},
+ }
+
+ def __init__(
+ self,
+ **kwargs
+ ):
+ super(PatchBackupVaultInput, self).__init__(**kwargs)
+ self.monitoring_settings = kwargs.get('monitoring_settings', None)
+
+
class PatchResourceRequestInput(msrest.serialization.Model):
"""Patch Request content for Microsoft.DataProtection resources.
:param identity: Input Managed Identity Details.
:type identity: ~azure.mgmt.dataprotection.models.DppIdentityDetails
+ :param properties: Resource properties.
+ :type properties: ~azure.mgmt.dataprotection.models.PatchBackupVaultInput
:param tags: A set of tags. Resource tags.
:type tags: dict[str, str]
"""
_attribute_map = {
'identity': {'key': 'identity', 'type': 'DppIdentityDetails'},
+ 'properties': {'key': 'properties', 'type': 'PatchBackupVaultInput'},
'tags': {'key': 'tags', 'type': '{str}'},
}
@@ -3192,6 +3256,7 @@ def __init__(
):
super(PatchResourceRequestInput, self).__init__(**kwargs)
self.identity = kwargs.get('identity', None)
+ self.properties = kwargs.get('properties', None)
self.tags = kwargs.get('tags', None)
@@ -3421,9 +3486,9 @@ class ResourceGuard(msrest.serialization.Model):
the ResourceGuard resource.
:vartype resource_guard_operations:
list[~azure.mgmt.dataprotection.models.ResourceGuardOperation]
- :ivar vault_critical_operation_exclusion_list: List of critical operations which are not
+ :param vault_critical_operation_exclusion_list: List of critical operations which are not
protected by this resourceGuard.
- :vartype vault_critical_operation_exclusion_list: list[str]
+ :type vault_critical_operation_exclusion_list: list[str]
:ivar description: Description about the pre-req steps to perform all the critical operations.
:vartype description: str
"""
@@ -3432,7 +3497,6 @@ class ResourceGuard(msrest.serialization.Model):
'provisioning_state': {'readonly': True},
'allow_auto_approvals': {'readonly': True},
'resource_guard_operations': {'readonly': True},
- 'vault_critical_operation_exclusion_list': {'readonly': True},
'description': {'readonly': True},
}
@@ -3452,7 +3516,7 @@ def __init__(
self.provisioning_state = None
self.allow_auto_approvals = None
self.resource_guard_operations = None
- self.vault_critical_operation_exclusion_list = None
+ self.vault_critical_operation_exclusion_list = kwargs.get('vault_critical_operation_exclusion_list', None)
self.description = None
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/_models_py3.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/_models_py3.py
index b2967777ca4..987cdc5a363 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/_models_py3.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/models/_models_py3.py
@@ -1381,6 +1381,27 @@ def __init__(
self.trigger = trigger
+class AzureMonitorAlertSettings(msrest.serialization.Model):
+ """Settings for Azure Monitor based alerts.
+
+ :param alerts_for_all_job_failures: Possible values include: "Enabled", "Disabled".
+ :type alerts_for_all_job_failures: str or ~azure.mgmt.dataprotection.models.AlertsState
+ """
+
+ _attribute_map = {
+ 'alerts_for_all_job_failures': {'key': 'alertsForAllJobFailures', 'type': 'str'},
+ }
+
+ def __init__(
+ self,
+ *,
+ alerts_for_all_job_failures: Optional[Union[str, "AlertsState"]] = None,
+ **kwargs
+ ):
+ super(AzureMonitorAlertSettings, self).__init__(**kwargs)
+ self.alerts_for_all_job_failures = alerts_for_all_job_failures
+
+
class DataStoreParameters(msrest.serialization.Model):
"""Parameters for DataStore.
@@ -1810,6 +1831,8 @@ class BackupVault(msrest.serialization.Model):
All required parameters must be populated in order to send to Azure.
+ :param monitoring_settings: Monitoring Settings.
+ :type monitoring_settings: ~azure.mgmt.dataprotection.models.MonitoringSettings
:ivar provisioning_state: Provisioning state of the BackupVault resource. Possible values
include: "Failed", "Provisioning", "Succeeded", "Unknown", "Updating".
:vartype provisioning_state: str or ~azure.mgmt.dataprotection.models.ProvisioningState
@@ -1831,6 +1854,7 @@ class BackupVault(msrest.serialization.Model):
}
_attribute_map = {
+ 'monitoring_settings': {'key': 'monitoringSettings', 'type': 'MonitoringSettings'},
'provisioning_state': {'key': 'provisioningState', 'type': 'str'},
'resource_move_state': {'key': 'resourceMoveState', 'type': 'str'},
'resource_move_details': {'key': 'resourceMoveDetails', 'type': 'ResourceMoveDetails'},
@@ -1841,9 +1865,11 @@ def __init__(
self,
*,
storage_settings: List["StorageSetting"],
+ monitoring_settings: Optional["MonitoringSettings"] = None,
**kwargs
):
super(BackupVault, self).__init__(**kwargs)
+ self.monitoring_settings = monitoring_settings
self.provisioning_state = None
self.resource_move_state = None
self.resource_move_details = None
@@ -3329,6 +3355,27 @@ def __init__(
self.provisioner = provisioner
+class MonitoringSettings(msrest.serialization.Model):
+ """Monitoring Settings.
+
+ :param azure_monitor_alert_settings: Settings for Azure Monitor based alerts.
+ :type azure_monitor_alert_settings: ~azure.mgmt.dataprotection.models.AzureMonitorAlertSettings
+ """
+
+ _attribute_map = {
+ 'azure_monitor_alert_settings': {'key': 'azureMonitorAlertSettings', 'type': 'AzureMonitorAlertSettings'},
+ }
+
+ def __init__(
+ self,
+ *,
+ azure_monitor_alert_settings: Optional["AzureMonitorAlertSettings"] = None,
+ **kwargs
+ ):
+ super(MonitoringSettings, self).__init__(**kwargs)
+ self.azure_monitor_alert_settings = azure_monitor_alert_settings
+
+
class OperationExtendedInfo(msrest.serialization.Model):
"""Operation Extended Info.
@@ -3449,17 +3496,41 @@ def __init__(
self.status = status
+class PatchBackupVaultInput(msrest.serialization.Model):
+ """Backup Vault Contract for Patch Backup Vault API.
+
+ :param monitoring_settings: Monitoring Settings.
+ :type monitoring_settings: ~azure.mgmt.dataprotection.models.MonitoringSettings
+ """
+
+ _attribute_map = {
+ 'monitoring_settings': {'key': 'monitoringSettings', 'type': 'MonitoringSettings'},
+ }
+
+ def __init__(
+ self,
+ *,
+ monitoring_settings: Optional["MonitoringSettings"] = None,
+ **kwargs
+ ):
+ super(PatchBackupVaultInput, self).__init__(**kwargs)
+ self.monitoring_settings = monitoring_settings
+
+
class PatchResourceRequestInput(msrest.serialization.Model):
"""Patch Request content for Microsoft.DataProtection resources.
:param identity: Input Managed Identity Details.
:type identity: ~azure.mgmt.dataprotection.models.DppIdentityDetails
+ :param properties: Resource properties.
+ :type properties: ~azure.mgmt.dataprotection.models.PatchBackupVaultInput
:param tags: A set of tags. Resource tags.
:type tags: dict[str, str]
"""
_attribute_map = {
'identity': {'key': 'identity', 'type': 'DppIdentityDetails'},
+ 'properties': {'key': 'properties', 'type': 'PatchBackupVaultInput'},
'tags': {'key': 'tags', 'type': '{str}'},
}
@@ -3467,11 +3538,13 @@ def __init__(
self,
*,
identity: Optional["DppIdentityDetails"] = None,
+ properties: Optional["PatchBackupVaultInput"] = None,
tags: Optional[Dict[str, str]] = None,
**kwargs
):
super(PatchResourceRequestInput, self).__init__(**kwargs)
self.identity = identity
+ self.properties = properties
self.tags = tags
@@ -3727,9 +3800,9 @@ class ResourceGuard(msrest.serialization.Model):
the ResourceGuard resource.
:vartype resource_guard_operations:
list[~azure.mgmt.dataprotection.models.ResourceGuardOperation]
- :ivar vault_critical_operation_exclusion_list: List of critical operations which are not
+ :param vault_critical_operation_exclusion_list: List of critical operations which are not
protected by this resourceGuard.
- :vartype vault_critical_operation_exclusion_list: list[str]
+ :type vault_critical_operation_exclusion_list: list[str]
:ivar description: Description about the pre-req steps to perform all the critical operations.
:vartype description: str
"""
@@ -3738,7 +3811,6 @@ class ResourceGuard(msrest.serialization.Model):
'provisioning_state': {'readonly': True},
'allow_auto_approvals': {'readonly': True},
'resource_guard_operations': {'readonly': True},
- 'vault_critical_operation_exclusion_list': {'readonly': True},
'description': {'readonly': True},
}
@@ -3752,13 +3824,15 @@ class ResourceGuard(msrest.serialization.Model):
def __init__(
self,
+ *,
+ vault_critical_operation_exclusion_list: Optional[List[str]] = None,
**kwargs
):
super(ResourceGuard, self).__init__(**kwargs)
self.provisioning_state = None
self.allow_auto_approvals = None
self.resource_guard_operations = None
- self.vault_critical_operation_exclusion_list = None
+ self.vault_critical_operation_exclusion_list = vault_critical_operation_exclusion_list
self.description = None
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_instances_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_instances_operations.py
index b1c167028d4..5790270e345 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_instances_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_instances_operations.py
@@ -70,7 +70,7 @@ def list(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -148,7 +148,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -199,7 +199,7 @@ def _create_or_update_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -341,7 +341,7 @@ def _delete_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -465,7 +465,7 @@ def _adhoc_backup_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -605,7 +605,7 @@ def _validate_for_backup_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -755,7 +755,7 @@ def get_backup_instance_operation_result(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -809,7 +809,7 @@ def _trigger_rehydrate_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -942,7 +942,7 @@ def _trigger_restore_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -1082,7 +1082,7 @@ def _resume_backups_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1205,7 +1205,7 @@ def _resume_protection_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1328,7 +1328,7 @@ def _stop_protection_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1451,7 +1451,7 @@ def _suspend_backups_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1575,7 +1575,7 @@ def _sync_backup_instance_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -1709,7 +1709,7 @@ def _validate_for_restore_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_policies_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_policies_operations.py
index 18859c2d8fd..796e2344b86 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_policies_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_policies_operations.py
@@ -68,7 +68,7 @@ def list(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -148,7 +148,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -216,7 +216,7 @@ def create_or_update(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -286,7 +286,7 @@ def delete(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_vault_operation_results_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_vault_operation_results_operations.py
index c10c0647288..e5df8ecee84 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_vault_operation_results_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_vault_operation_results_operations.py
@@ -70,7 +70,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_vaults_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_vaults_operations.py
index 719df171ed2..9d3dd16525a 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_vaults_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_backup_vaults_operations.py
@@ -64,7 +64,7 @@ def get_in_subscription(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -134,7 +134,7 @@ def get_in_resource_group(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -208,7 +208,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -257,7 +257,7 @@ def _create_or_update_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -397,7 +397,7 @@ def delete(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -443,7 +443,7 @@ def _update_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -587,7 +587,7 @@ def check_name_availability(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_data_protection_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_data_protection_operations.py
index c59b8b8d991..5d088ff2d40 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_data_protection_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_data_protection_operations.py
@@ -69,7 +69,7 @@ def check_feature_support(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_data_protection_operations_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_data_protection_operations_operations.py
index 5ecfb6f532c..deabb325252 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_data_protection_operations_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_data_protection_operations_operations.py
@@ -62,7 +62,7 @@ def list(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_export_jobs_operation_result_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_export_jobs_operation_result_operations.py
index 9284d730236..3c76402ccd2 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_export_jobs_operation_result_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_export_jobs_operation_result_operations.py
@@ -72,7 +72,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_export_jobs_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_export_jobs_operations.py
index a1df341360f..8c2b647f40f 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_export_jobs_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_export_jobs_operations.py
@@ -58,7 +58,7 @@ def _trigger_initial(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_jobs_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_jobs_operations.py
index 18abba5e1ae..2f5306690bd 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_jobs_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_jobs_operations.py
@@ -68,7 +68,7 @@ def list(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -147,7 +147,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_result_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_result_operations.py
index fbfd5bb2952..74b2290adb1 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_result_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_result_operations.py
@@ -69,7 +69,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_status_backup_vault_context_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_status_backup_vault_context_operations.py
index d7269454aca..9740d1c9d71 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_status_backup_vault_context_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_status_backup_vault_context_operations.py
@@ -72,7 +72,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_status_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_status_operations.py
index ef2a7867c35..3d67c44ba39 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_status_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_status_operations.py
@@ -69,7 +69,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_status_resource_group_context_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_status_resource_group_context_operations.py
index 87d7a2aee7c..b4c1dee735c 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_status_resource_group_context_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_operation_status_resource_group_context_operations.py
@@ -69,7 +69,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_recovery_points_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_recovery_points_operations.py
index b23ed93cb8a..00c895d47d8 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_recovery_points_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_recovery_points_operations.py
@@ -77,7 +77,7 @@ def list(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -163,7 +163,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_resource_guards_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_resource_guards_operations.py
index a6b974aadf1..64989d18931 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_resource_guards_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_resource_guards_operations.py
@@ -64,7 +64,7 @@ def get_resources_in_subscription(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -136,7 +136,7 @@ def get_resources_in_resource_group(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -215,7 +215,7 @@ def put(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -281,7 +281,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -342,7 +342,7 @@ def delete(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -404,7 +404,7 @@ def patch(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
@@ -471,7 +471,7 @@ def get_disable_soft_delete_requests_objects(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -549,7 +549,7 @@ def get_delete_resource_guard_proxy_requests_objects(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -627,7 +627,7 @@ def get_backup_security_pin_requests_objects(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -705,7 +705,7 @@ def get_delete_protected_item_requests_objects(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -783,7 +783,7 @@ def get_update_protection_policy_requests_objects(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -861,7 +861,7 @@ def get_update_protected_item_requests_objects(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
def prepare_request(next_link=None):
@@ -942,7 +942,7 @@ def get_default_disable_soft_delete_requests_object(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1008,7 +1008,7 @@ def get_default_delete_resource_guard_proxy_requests_object(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1074,7 +1074,7 @@ def get_default_backup_security_pin_requests_object(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1140,7 +1140,7 @@ def get_default_delete_protected_item_requests_object(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1206,7 +1206,7 @@ def get_default_update_protection_policy_requests_object(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
@@ -1272,7 +1272,7 @@ def get_default_update_protected_item_requests_object(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
accept = "application/json"
# Construct URL
diff --git a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_restorable_time_ranges_operations.py b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_restorable_time_ranges_operations.py
index 111e9b87d23..d055cbe9b4a 100644
--- a/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_restorable_time_ranges_operations.py
+++ b/src/dataprotection/azext_dataprotection/vendored_sdks/dataprotection/operations/_restorable_time_ranges_operations.py
@@ -73,7 +73,7 @@ def find(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
- api_version = "2022-03-01"
+ api_version = "2022-04-01"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"
diff --git a/src/dataprotection/linter_exclusions.yml b/src/dataprotection/linter_exclusions.yml
deleted file mode 100644
index 56c16038cce..00000000000
--- a/src/dataprotection/linter_exclusions.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-dataprotection backup-instance restore initialize-for-data-recovery-as-files:
- parameters:
- target_blob_container_url:
- rule_exclusions:
- - option_length_too_long
diff --git a/src/dataprotection/report.md b/src/dataprotection/report.md
index fd59a0e312b..5327658b683 100644
--- a/src/dataprotection/report.md
+++ b/src/dataprotection/report.md
@@ -15,6 +15,7 @@
|az dataprotection recovery-point|RecoveryPoints|[commands](#CommandsInRecoveryPoints)|
|az dataprotection job|Jobs|[commands](#CommandsInJobs)|
|az dataprotection restorable-time-range|RestorableTimeRanges|[commands](#CommandsInRestorableTimeRanges)|
+|az dataprotection resource-guard|ResourceGuards|[commands](#CommandsInResourceGuards)|
## COMMANDS
### Commands in `az dataprotection backup-instance` group
@@ -60,6 +61,13 @@
|[az dataprotection recovery-point list](#RecoveryPointsList)|List|[Parameters](#ParametersRecoveryPointsList)|[Example](#ExamplesRecoveryPointsList)|
|[az dataprotection recovery-point show](#RecoveryPointsGet)|Get|[Parameters](#ParametersRecoveryPointsGet)|[Example](#ExamplesRecoveryPointsGet)|
+### Commands in `az dataprotection resource-guard` group
+|CLI Command|Operation Swagger name|Parameters|Examples|
+|---------|------------|--------|-----------|
+|[az dataprotection resource-guard show](#ResourceGuardsGet)|Get|[Parameters](#ParametersResourceGuardsGet)|[Example](#ExamplesResourceGuardsGet)|
+|[az dataprotection resource-guard create](#ResourceGuardsPut)|Put|[Parameters](#ParametersResourceGuardsPut)|[Example](#ExamplesResourceGuardsPut)|
+|[az dataprotection resource-guard delete](#ResourceGuardsDelete)|Delete|[Parameters](#ParametersResourceGuardsDelete)|[Example](#ExamplesResourceGuardsDelete)|
+
### Commands in `az dataprotection restorable-time-range` group
|CLI Command|Operation Swagger name|Parameters|Examples|
|---------|------------|--------|-----------|
@@ -405,14 +413,15 @@ az dataprotection backup-vault show --resource-group "SampleResourceGroup" --vau
##### Example
```
-az dataprotection backup-vault create --type "None" --location "WestUS" --storage-settings type="LocallyRedundant" \
-datastore-type="VaultStore" --tags key1="val1" --resource-group "SampleResourceGroup" --vault-name "swaggerExample"
+az dataprotection backup-vault create --type "None" --location "WestUS" --azure-monitor-alerts-for-job-failures \
+"Enabled" --storage-settings type="LocallyRedundant" datastore-type="VaultStore" --tags key1="val1" --resource-group \
+"SampleResourceGroup" --vault-name "swaggerExample"
```
##### Example
```
-az dataprotection backup-vault create --type "systemAssigned" --location "WestUS" --storage-settings \
-type="LocallyRedundant" datastore-type="VaultStore" --tags key1="val1" --resource-group "SampleResourceGroup" \
---vault-name "swaggerExample"
+az dataprotection backup-vault create --type "systemAssigned" --location "WestUS" --azure-monitor-alerts-for-job-failur\
+es "Enabled" --storage-settings type="LocallyRedundant" datastore-type="VaultStore" --tags key1="val1" \
+--resource-group "SampleResourceGroup" --vault-name "swaggerExample"
```
##### Parameters
|Option|Type|Description|Path (SDK)|Swagger name|
@@ -424,13 +433,14 @@ type="LocallyRedundant" datastore-type="VaultStore" --tags key1="val1" --resourc
|**--location**|string|Resource location.|location|location|
|**--tags**|dictionary|Resource tags.|tags|tags|
|**--type**|string|The identityType which can be either SystemAssigned or None|type|type|
+|**--alerts-for-all-job-failures**|choice||alerts_for_all_job_failures|alertsForAllJobFailures|
#### Command `az dataprotection backup-vault update`
##### Example
```
-az dataprotection backup-vault update --tags newKey="newVal" --resource-group "SampleResourceGroup" --vault-name \
-"swaggerExample"
+az dataprotection backup-vault update --azure-monitor-alerts-for-job-failures "Enabled" --tags newKey="newVal" \
+--resource-group "SampleResourceGroup" --vault-name "swaggerExample"
```
##### Parameters
|Option|Type|Description|Path (SDK)|Swagger name|
@@ -438,6 +448,7 @@ az dataprotection backup-vault update --tags newKey="newVal" --resource-group "S
|**--resource-group-name**|string|The name of the resource group where the backup vault is present.|resource_group_name|resourceGroupName|
|**--vault-name**|string|The name of the backup vault.|vault_name|vaultName|
|**--tags**|dictionary|Resource tags.|tags|tags|
+|**--alerts-for-all-job-failures**|choice||alerts_for_all_job_failures|alertsForAllJobFailures|
|**--type**|string|The identityType which can be either SystemAssigned or None|type|type|
#### Command `az dataprotection backup-vault delete`
@@ -511,6 +522,49 @@ az dataprotection recovery-point show --backup-instance-name "testInstance1" --r
|**--backup-instance-name**|string|The name of the backup instance|backup_instance_name|backupInstanceName|
|**--recovery-point-id**|string||recovery_point_id|recoveryPointId|
+### group `az dataprotection resource-guard`
+#### Command `az dataprotection resource-guard show`
+
+##### Example
+```
+az dataprotection resource-guard show --resource-group "SampleResourceGroup" --resource-guard-name "swaggerExample"
+```
+##### Parameters
+|Option|Type|Description|Path (SDK)|Swagger name|
+|------|----|-----------|----------|------------|
+|**--resource-group-name**|string|The name of the resource group where the backup vault is present.|resource_group_name|resourceGroupName|
+|**--resource-guards-name**|string|The name of ResourceGuard|resource_guards_name|resourceGuardsName|
+
+#### Command `az dataprotection resource-guard create`
+
+##### Example
+```
+az dataprotection resource-guard create --location "WestUS" --tags key1="val1" --resource-group "SampleResourceGroup" \
+--resource-guard-name "swaggerExample"
+```
+##### Parameters
+|Option|Type|Description|Path (SDK)|Swagger name|
+|------|----|-----------|----------|------------|
+|**--resource-group-name**|string|The name of the resource group where the backup vault is present.|resource_group_name|resourceGroupName|
+|**--resource-guards-name**|string|The name of ResourceGuard|resource_guards_name|resourceGuardsName|
+|**--e-tag**|string|Optional ETag.|e_tag|eTag|
+|**--location**|string|Resource location.|location|location|
+|**--tags**|dictionary|Resource tags.|tags|tags|
+|**--type**|string|The identityType which can be either SystemAssigned or None|type|type|
+|**--vault-critical-operation-exclusion-list**|array|List of critical operations which are not protected by this resourceGuard|vault_critical_operation_exclusion_list|vaultCriticalOperationExclusionList|
+
+#### Command `az dataprotection resource-guard delete`
+
+##### Example
+```
+az dataprotection resource-guard delete --resource-group "SampleResourceGroup" --resource-guard-name "swaggerExample"
+```
+##### Parameters
+|Option|Type|Description|Path (SDK)|Swagger name|
+|------|----|-----------|----------|------------|
+|**--resource-group-name**|string|The name of the resource group where the backup vault is present.|resource_group_name|resourceGroupName|
+|**--resource-guards-name**|string|The name of ResourceGuard|resource_guards_name|resourceGuardsName|
+
### group `az dataprotection restorable-time-range`
#### Command `az dataprotection restorable-time-range find`
diff --git a/src/dataprotection/setup.py b/src/dataprotection/setup.py
index c034e400fbb..e8569e3caa6 100644
--- a/src/dataprotection/setup.py
+++ b/src/dataprotection/setup.py
@@ -10,7 +10,7 @@
from setuptools import setup, find_packages
# HISTORY.rst entry.
-VERSION = '0.1.0'
+VERSION = '0.4.0'
try:
from azext_dataprotection.manual.version import VERSION
except ImportError: